Browse Source

随访对象添加未参加队列人员

newMaster
1747191978@qq.com 4 months ago
parent
commit
81771c5f2f
  1. 13
      acupuncture-前台/src/views/followFile/subjects.vue

13
acupuncture-前台/src/views/followFile/subjects.vue

@ -8,6 +8,11 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="" prop="queueId">
<el-checkbox-group v-model="haveQueue">
<el-checkbox >未参加队列人员</el-checkbox>
</el-checkbox-group>
</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">
@ -146,8 +151,10 @@
queryParams: {
pageNum: 1,
pageSize: 10,
param: {},
param: {
},
},
haveQueue:'',
formDisabled: false,
importform: {},
//
@ -205,6 +212,10 @@
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.param.haveQueue = ''
if(this.haveQueue){
this.queryParams.param.haveQueue = 0
}
this.queryParams.pageNum = 1;
this.getList();
},

Loading…
Cancel
Save