|
@@ -899,9 +899,22 @@ onMounted(() => {
|
|
/>
|
|
/>
|
|
</template>
|
|
</template>
|
|
<template #operation_edit="{ row }">
|
|
<template #operation_edit="{ row }">
|
|
- <vxe-select v-model="row.user" multiple>
|
|
|
|
- <vxe-option v-for="item in operationList" :key="item.value" :label="item.label"
|
|
|
|
- :value="item.value"></vxe-option>
|
|
|
|
|
|
+ <!--<vxe-select v-model="row.user" multiple>-->
|
|
|
|
+ <!-- <vxe-option v-for="item in operationList" :key="item.value" :label="item.label"-->
|
|
|
|
+ <!-- :value="item.value"></vxe-option>-->
|
|
|
|
+ <!--</vxe-select>-->
|
|
|
|
+ <vxe-select
|
|
|
|
+ v-model="row.user"
|
|
|
|
+ multiple
|
|
|
|
+ filterable
|
|
|
|
+ clearable
|
|
|
|
+ >
|
|
|
|
+ <vxe-option
|
|
|
|
+ v-for="item in operationList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value"
|
|
|
|
+ ></vxe-option>
|
|
</vxe-select>
|
|
</vxe-select>
|
|
</template>
|
|
</template>
|
|
<template #operater_name_edit="{ row }">
|
|
<template #operater_name_edit="{ row }">
|
|
@@ -1039,7 +1052,7 @@ onMounted(() => {
|
|
</el-radio-group>
|
|
</el-radio-group>
|
|
</div>
|
|
</div>
|
|
<el-form-item align-center label="录入人员:" prop="operation" width="500">
|
|
<el-form-item align-center label="录入人员:" prop="operation" width="500">
|
|
- <el-select v-model="taskRuleForm.operation" collapse-tags collapse-tags-tooltip multiple
|
|
|
|
|
|
+ <el-select v-model="taskRuleForm.operation" collapse-tags collapse-tags-tooltip multiple filterable clearable
|
|
placeholder="请选择录入人员">
|
|
placeholder="请选择录入人员">
|
|
<el-option v-for="item in operationList" :key="item.value" :label="item.label"
|
|
<el-option v-for="item in operationList" :key="item.value" :label="item.label"
|
|
:value="item.value"></el-option>
|
|
:value="item.value"></el-option>
|