|
@@ -77,11 +77,15 @@
|
|
|
"
|
|
|
>
|
|
|
<template #prepend>
|
|
|
- <el-select v-model="parmValue.key" style="width:100px" @change="
|
|
|
+ <el-select
|
|
|
+ v-model="parmValue.key"
|
|
|
+ style="width:100px"
|
|
|
+ @change="
|
|
|
pageInfo.curr = 1;
|
|
|
parmValue.page = 1;
|
|
|
searchList();
|
|
|
- ">
|
|
|
+ "
|
|
|
+ >
|
|
|
<el-option label="商品名称" value="spuCode" />
|
|
|
<el-option label="商品编码" value="good_name" />
|
|
|
</el-select>
|
|
@@ -133,6 +137,15 @@
|
|
|
></el-tag>
|
|
|
</template>
|
|
|
|
|
|
+ <template #catinfo="{ scope }">{{scope.row.catInfo.map(({name}) => name).join("-")}}</template>
|
|
|
+
|
|
|
+ <template #specInfo="{ scope }">
|
|
|
+ <span
|
|
|
+ v-for="(si, sii) in scope.row.specInfo"
|
|
|
+ :key="sii + si.spec_value_id"
|
|
|
+ >{{ sii === 0 ? "" : "-" }}{{ si.spec_name }}[{{ si.spec_value }}]</span>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template #order_type="{ scope }">
|
|
|
<el-tag
|
|
|
:size="tablebtnSize"
|
|
@@ -169,7 +182,10 @@ import companyHelper from "@/mixins/companyHelper";
|
|
|
import { mapGetters } from "vuex";
|
|
|
import { columns } from "./columns";
|
|
|
|
|
|
-import { xs_order_source_options, xs_order_type_options } from "@/assets/js/statusList";
|
|
|
+import {
|
|
|
+ xs_order_source_options,
|
|
|
+ xs_order_type_options
|
|
|
+} from "@/assets/js/statusList";
|
|
|
|
|
|
export default {
|
|
|
name: "zxDiffOrder",
|
|
@@ -197,9 +213,9 @@ export default {
|
|
|
sitem: null,
|
|
|
// 状态
|
|
|
statusOptions: [
|
|
|
- { id: "0", label: "不限状态" },
|
|
|
- { id: "1", label: "在售中" },
|
|
|
- { id: "2", label: "已下架" }
|
|
|
+ { id: "1", label: "待审核" },
|
|
|
+ { id: "2", label: "审核通过" },
|
|
|
+ { id: "3", label: "审核驳回" }
|
|
|
],
|
|
|
statusList: [
|
|
|
"样品竞价单",
|
|
@@ -221,11 +237,11 @@ export default {
|
|
|
isDetail: false,
|
|
|
modelId: 0,
|
|
|
parmValue: {
|
|
|
- key:'spuCode',
|
|
|
- value:"",
|
|
|
+ key: "spuCode",
|
|
|
+ value: "",
|
|
|
status: "",
|
|
|
create_start: "",
|
|
|
- create_end:"",
|
|
|
+ create_end: "",
|
|
|
page: 1, // 页码
|
|
|
size: 15 // 每页显示条数
|
|
|
},
|
|
@@ -320,7 +336,10 @@ export default {
|
|
|
} else {
|
|
|
this.parmValue.create_end = "";
|
|
|
}
|
|
|
- if (this.parmValue.create_start !== "" && this.parmValue.create_end !== "") {
|
|
|
+ if (
|
|
|
+ this.parmValue.create_start !== "" &&
|
|
|
+ this.parmValue.create_end !== ""
|
|
|
+ ) {
|
|
|
this.parmValue.page = 1;
|
|
|
await this.searchList();
|
|
|
}
|
|
@@ -336,10 +355,10 @@ export default {
|
|
|
this.input = "";
|
|
|
this.parmValue = {
|
|
|
status: "",
|
|
|
- key:'spuCode',
|
|
|
- value:"",
|
|
|
+ key: "spuCode",
|
|
|
+ value: "",
|
|
|
create_start: "",
|
|
|
- create_end:"",
|
|
|
+ create_end: "",
|
|
|
page: 1, // 页码
|
|
|
size: 15 // 每页显示条数
|
|
|
};
|
|
@@ -396,7 +415,8 @@ export default {
|
|
|
},
|
|
|
async searchList() {
|
|
|
if (
|
|
|
- (this.parmValue.create_start !== "" && this.parmValue.create_end === "") ||
|
|
|
+ (this.parmValue.create_start !== "" &&
|
|
|
+ this.parmValue.create_end === "") ||
|
|
|
(this.parmValue.create_start == "" && this.parmValue.create_end != "")
|
|
|
) {
|
|
|
this.$message.warning("开始时间和结束时间不能为空");
|
|
@@ -404,12 +424,12 @@ export default {
|
|
|
}
|
|
|
this.loading = true;
|
|
|
|
|
|
- const { key, value, ...rest } = this.parmValue
|
|
|
+ const { key, value, ...rest } = this.parmValue;
|
|
|
|
|
|
const res = await asyncRequest.list({
|
|
|
needRela: true,
|
|
|
[key]: value,
|
|
|
- ...rest,
|
|
|
+ ...rest
|
|
|
});
|
|
|
|
|
|
if (res && res.code === 0 && res.data) {
|