|
@@ -11,7 +11,7 @@ const BizUser = {
|
|
@change="handleChange"
|
|
@change="handleChange"
|
|
option-filter-prop="children"
|
|
option-filter-prop="children"
|
|
:filter-option="filterOption">
|
|
:filter-option="filterOption">
|
|
- <a-select-option v-for="item in list" :key="item.userSn" :value="item.userSn">
|
|
|
|
|
|
+ <a-select-option v-for="item in list" :key="item.bizUserSn" :value="item.bizUserSn">
|
|
{{ item.userName }}
|
|
{{ item.userName }}
|
|
</a-select-option>
|
|
</a-select-option>
|
|
</a-select>
|
|
</a-select>
|
|
@@ -56,7 +56,7 @@ const BizUser = {
|
|
},
|
|
},
|
|
handleChange (value) {
|
|
handleChange (value) {
|
|
this.defaultVal = value
|
|
this.defaultVal = value
|
|
- const item = this.list.find(item => item.userSn == value)
|
|
|
|
|
|
+ const item = this.list.find(item => item.bizUserSn == value)
|
|
this.$emit('input', value)
|
|
this.$emit('input', value)
|
|
this.$emit('change', value, item)
|
|
this.$emit('change', value, item)
|
|
},
|
|
},
|