223
This commit is contained in:
@@ -52,7 +52,7 @@
|
|||||||
@onConfirm="onConfirm"
|
@onConfirm="onConfirm"
|
||||||
@closed="form={},chooseUserList=[]">
|
@closed="form={},chooseUserList=[]">
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||||
<el-form-item label="选择人员" prop="ids">
|
<el-form-item label="选择人员" prop="ids" v-if="!isEdit">
|
||||||
<ai-person-select :instance="instance" keys="openId" customRightText :customClicker="true" :chooseUserList="chooseUserList"
|
<ai-person-select :instance="instance" keys="openId" customRightText :customClicker="true" :chooseUserList="chooseUserList"
|
||||||
url="/app/appwechatuserqujing/listByFdAppletUser" headerTitle="用户列表"
|
url="/app/appwechatuserqujing/listByFdAppletUser" headerTitle="用户列表"
|
||||||
:isMultiple="true" dialogTitle="选择" @selectPerson="selectPerson" class="aipersonselect">
|
:isMultiple="true" dialogTitle="选择" @selectPerson="selectPerson" class="aipersonselect">
|
||||||
@@ -106,6 +106,7 @@
|
|||||||
dialog: false,
|
dialog: false,
|
||||||
chooseUserList: [],
|
chooseUserList: [],
|
||||||
total: 0,
|
total: 0,
|
||||||
|
isEdit: false,
|
||||||
colConfigs: [
|
colConfigs: [
|
||||||
{ prop: 'realName', label: '姓名', align: 'left', width: '200px' },
|
{ prop: 'realName', label: '姓名', align: 'left', width: '200px' },
|
||||||
{ prop: 'phone', label: '手机号', align: 'center' },
|
{ prop: 'phone', label: '手机号', align: 'center' },
|
||||||
@@ -173,9 +174,11 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
changeIntegral(row,type) {
|
changeIntegral(row,type) {
|
||||||
|
this.isEdit = false
|
||||||
if(type==0) {
|
if(type==0) {
|
||||||
this.dialog = true
|
this.dialog = true
|
||||||
} else if(type ==1) {
|
} else if(type ==1) {
|
||||||
|
this.isEdit = true
|
||||||
this.chooseUserList = [{
|
this.chooseUserList = [{
|
||||||
openId: row.openId,
|
openId: row.openId,
|
||||||
name: row.realName
|
name: row.realName
|
||||||
|
|||||||
Reference in New Issue
Block a user