|
@@ -551,8 +551,8 @@
|
|
|
@change="colourNumberChangeHandler(scope.row)"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in colourNumberOptions"
|
|
|
- :key="item.colour"
|
|
|
+ v-for="(item,index) in colourNumberOptions"
|
|
|
+ :key="item.colour.index"
|
|
|
:label="item.colour"
|
|
|
:value="item.colour"
|
|
|
>
|
|
@@ -1618,7 +1618,6 @@ export default {
|
|
|
//审计新增
|
|
|
async addHandler() {
|
|
|
this.isEdit = false;
|
|
|
-
|
|
|
await this.getDropDownData();
|
|
|
// 判断是否是销售员
|
|
|
console.log(this.userInfo);
|