Commit cb6357ac authored by youjie's avatar youjie

激活

parent d927ed09
......@@ -8118,6 +8118,9 @@ export const obj = {
fafangzhangshu: '发放张数',
qingsrfafzshu: '请输入发放张数',
bianjiyouhuiquan: '编辑优惠券',
appjihuozhuant: 'App激活状态',
yijihuo: '已激活',
weijihuo: '未激活',
},
//#endregion
}
......
......@@ -482,6 +482,17 @@
:placeholder="$t('salesModule.enterPhone')"></el-input>
</span>
</li>
<li style="margin-left: 10px">
<span>
<em>{{$t('objFill.v102.appjihuozhuant')}}</em>
<el-select class="w120" :placeholder="$t('pub.pleaseSel')" filterable
v-model="msg.OpenIdStatus"
@change="reSearchPage">
<el-option v-for="item in OpenStatusList" :label="item.Name" :value="item.Id"
:key="item.Id"></el-option>
</el-select>
</span>
</li>
<li>
<button class="hollowFixedBtn" @click="reSearchPage">{{$t('pub.searchBtn')}}</button>
<button class="normalBtn" @click="clickAdd">{{$t('salesModule.addCustomer')}}</button>
......@@ -521,6 +532,7 @@
<th>{{$t('system.query_name')}}</th>
<th>{{$t('restaurant.res_ContactNumber')}}</th>
<th>{{$t('salesModule.storeName')}}</th>
<th>{{$t('objFill.v102.appjihuozhuant')}}</th>
<th v-if="currentUserInfo&&currentUserInfo.RB_Group_id==2">{{$t('salesModule.Yuefang')}}</th>
<th v-if="currentUserInfo&&currentUserInfo.RB_Group_id==2">{{$t('salesModule.Visit')}}</th>
<th v-if="currentUserInfo&&currentUserInfo.RB_Group_id==2">{{$t('salesModule.TotalVisit')}}</th>
......@@ -559,6 +571,11 @@
{{$t('objFill.dai')}}{{item.departmentManagerStr}}{{$t('fnc.shenhe')}}
</span>
</td>
<td>
<span :style="{'color':item.openIdStatus==1?'red':''}">
{{ item.openIdStatus==1?$t('objFill.v102.yijihuo'):$t('objFill.v102.weijihuo') }}
</span>
</td>
<td v-if="currentUserInfo&&currentUserInfo.RB_Group_id==2">
<p v-if="item.customerVisitList.length>0">
{{item.customerVisitList[0].visitDateTime}}
......@@ -1065,7 +1082,8 @@
Province: '-1',
City: '-1',
District: '-1',
SigningType: 0
SigningType: 0,
OpenIdStatus: 1,// 0-全部,1-已激活,2-未激活
},
addMsg: {
CustomerId: 0,
......@@ -1218,6 +1236,11 @@
inputVisible: false,
inputValue: '',
currentUserInfo: {}, //当前登录用户
OpenStatusList:[
{ Name: this.$t('objFill.v101.activity.col3.t4'),Id: 0 },
{ Name: this.$t('objFill.v102.yijihuo'),Id: 1 },
{ Name: this.$t('objFill.v102.weijihuo'),Id: 2 },
]
}
},
methods: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment