|
|
@@ -116,6 +116,12 @@
|
|
|
placeholder="选择删除时间">
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="手机绑定状态" prop="bindStatus">
|
|
|
+ <el-select v-model="queryParams.bindStatus" placeholder="状态" clearable size="small">
|
|
|
+ <el-option label="否" :value="0" />
|
|
|
+ <el-option label="是" :value="1" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
@@ -1397,6 +1403,7 @@ export default {
|
|
|
this.bindUserPhoneForm = {
|
|
|
fsUserId: null,
|
|
|
phone: null,
|
|
|
+ exId: null,
|
|
|
};
|
|
|
this.getList();
|
|
|
})
|
|
|
@@ -1408,12 +1415,14 @@ export default {
|
|
|
this.bindUserPhoneForm = {
|
|
|
fsUserId: null,
|
|
|
phone: null,
|
|
|
+ exId: null,
|
|
|
};
|
|
|
},
|
|
|
|
|
|
handleBindUserPhone(row) {
|
|
|
this.bindUserPhone.open = true;
|
|
|
this.bindUserPhoneForm.userId = row.fsUserId;
|
|
|
+ this.bindUserPhoneForm.exId = row.id;
|
|
|
},
|
|
|
pushMemberSubmit() {
|
|
|
this.$refs["pushMemberForm"].validate(valid => {
|