|
@@ -29,9 +29,9 @@
|
|
|
<el-col :span="4" style="width: 130px">
|
|
|
<el-select
|
|
|
:size="searchSize"
|
|
|
- v-model="parmValue.except_code"
|
|
|
+ v-model="parmValue.status"
|
|
|
clearable
|
|
|
- placeholder="期望意愿"
|
|
|
+ placeholder="状态"
|
|
|
@change="
|
|
|
pageInfo.curr = 1;
|
|
|
parmValue.page = 1;
|
|
@@ -166,6 +166,20 @@
|
|
|
</el-row>
|
|
|
</div>
|
|
|
</template>
|
|
|
+ <template #good_img="{ scope }">
|
|
|
+ <div
|
|
|
+ v-if="scope.row.good_img"
|
|
|
+ style="width: 20px; height: 20px"
|
|
|
+ class="hover"
|
|
|
+ v-viewer
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ :src="scope.row.good_img"
|
|
|
+ style="display: inline-block; width: 100%; height: 100%"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
<template #status="{ scope }">
|
|
|
<el-tag
|
|
|
:size="tablebtnSize"
|
|
@@ -195,11 +209,8 @@
|
|
|
:size="tablebtnSize"
|
|
|
:type="scope.row.status == '0' ? 'warning' : ''"
|
|
|
v-text="
|
|
|
- (
|
|
|
- except_codeOptions.find(
|
|
|
- (item) => item.id == scope.row.except_code
|
|
|
- ) || {}
|
|
|
- ).label || '--'
|
|
|
+ (options.find((item) => item.id == scope.row.except_code) || {})
|
|
|
+ .label || '--'
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
@@ -230,7 +241,7 @@ import mixinPage from "@/mixins/elPaginationHandle";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import statusList from "@/assets/js/statusList";
|
|
|
import asyncRequest from "@/apis/service/sellOut/zixunOrder";
|
|
|
-import {listCol} from "./columns";
|
|
|
+import { listCol } from "./columns";
|
|
|
import { mapGetters } from "vuex";
|
|
|
|
|
|
export default {
|
|
@@ -255,10 +266,15 @@ export default {
|
|
|
select: "1",
|
|
|
s_input: "",
|
|
|
customerCode: [], //客户公司code
|
|
|
- except_codeOptions: [
|
|
|
- { id: "1", label: "退货" },
|
|
|
- { id: "2", label: "换货" },
|
|
|
- { id: "3", label: "改变售价" },
|
|
|
+ options: [
|
|
|
+ { id: "0", label: "待发布竞标" },
|
|
|
+ { id: "1", label: "招标进行中" },
|
|
|
+ { id: "2", label: "招标已结束" },
|
|
|
+ { id: "3", label: "等待议价结果" },
|
|
|
+ { id: "4", label: "待选择商品" },
|
|
|
+ { id: "5", label: "已成功转单" },
|
|
|
+ { id: "6", label: "已取消转单" },
|
|
|
+ { id: "7", label: "招标已暂停" },
|
|
|
],
|
|
|
post_ownOptions: [
|
|
|
{ id: "1", label: "客户承担" },
|