|
@@ -53,9 +53,9 @@
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in statusOptions"
|
|
|
- :key="'status' + item.id"
|
|
|
+ :key="'status' + item.value"
|
|
|
:label="item.label"
|
|
|
- :value="item.id"
|
|
|
+ :value="item.value"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-col>
|
|
@@ -574,11 +574,12 @@ export default {
|
|
|
this.parmValue.apply_name = this.select === "apply_name" ? this.s_input : "";
|
|
|
this.parmValue.company_name = this.select === "company_name" ? this.s_input : "";
|
|
|
this.parmValue.good_code = this.select === "good_code" ? this.s_input : "";
|
|
|
-
|
|
|
this.parmValue.skuCode = this.select === "skuCode" ? this.s_input : "";
|
|
|
|
|
|
let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
|
|
|
|
+ console.log(model)
|
|
|
+
|
|
|
const res = await asyncRequest.list({
|
|
|
...model,
|
|
|
customer_code: Array.isArray(this.parmValue.customer_code)
|