|
@@ -11,7 +11,31 @@
|
|
|
:sitem="sitem"
|
|
|
:columns="sellshowColumns"
|
|
|
>
|
|
|
- <template slot="status">
|
|
|
+ <template slot="company">
|
|
|
+ <span>{{ sitem.companyName }}</span>
|
|
|
+ <el-popover placement="top" width="300" trigger="hover">
|
|
|
+ <ul>
|
|
|
+ <li>
|
|
|
+ <span>业务企业编号:</span><span>{{ sitem.companyNo }}</span>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <i slot="reference" class="el-icon-warning-outline fr" />
|
|
|
+ </el-popover>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template slot="supplier">
|
|
|
+ <span>{{ sitem.supplierName }}</span>
|
|
|
+ <el-popover placement="top" width="300" trigger="hover">
|
|
|
+ <ul>
|
|
|
+ <li>
|
|
|
+ <span>供应商编号:</span><span>{{ sitem.supplierName }}</span>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <i slot="reference" class="el-icon-warning-outline fr" />
|
|
|
+ </el-popover>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template slot="status">
|
|
|
<el-tag
|
|
|
:size="'mini'"
|
|
|
:type="sitem.status == '0' ? 'warning' : ''"
|
|
@@ -24,6 +48,20 @@
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
|
+
|
|
|
+ <template slot="is_stock">
|
|
|
+ <el-tag
|
|
|
+ :size="'mini'"
|
|
|
+ :type="sitem.status == '0' ? 'warning' : ''"
|
|
|
+ v-text="
|
|
|
+ ((stockOptions).find(
|
|
|
+ (item) => String(item.id) === String( sitem.is_stock)
|
|
|
+ ) || {}
|
|
|
+ ).name || '--'
|
|
|
+ "
|
|
|
+ ></el-tag>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template slot="order_type">
|
|
|
<el-tag
|
|
|
:size="'mini'"
|
|
@@ -36,6 +74,18 @@
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
|
+ <template slot="order_source">
|
|
|
+ <el-tag
|
|
|
+ :size="'mini'"
|
|
|
+ v-text="
|
|
|
+ (
|
|
|
+ xs_order_source_options.find(
|
|
|
+ (item) => item.id == sitem.order_source
|
|
|
+ ) || {}
|
|
|
+ ).label || '--'
|
|
|
+ "
|
|
|
+ ></el-tag>
|
|
|
+ </template>
|
|
|
<template slot="is_receive">
|
|
|
<el-tag :size="'mini'" :type="''">{{
|
|
|
sitem.is_receive + '' === "1"
|
|
@@ -155,7 +205,7 @@ import ExpressFeedback from "./components/express_feedback";
|
|
|
import { sellshowColumns } from "./columns";
|
|
|
import purchaseExam from "./components/purchase_exam";
|
|
|
import SupplierExam from "./components/supplier_exam.vue";
|
|
|
-import { xs_order_type_options } from "@/assets/js/statusList";
|
|
|
+import { xs_order_type_options ,xs_order_source_options} from "@/assets/js/statusList";
|
|
|
import WaitReturn from "./components/wait-return.vue";
|
|
|
import SupplierConfrim from "./components/supplier-confirm.vue";
|
|
|
import ApprovalResults from "./components/approval-results.vue";
|
|
@@ -191,6 +241,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
xs_order_type_options,
|
|
|
+ xs_order_source_options,
|
|
|
activeTabs: "1",
|
|
|
expect_options: [],
|
|
|
expect_options1: [
|
|
@@ -220,6 +271,10 @@ export default {
|
|
|
sitem: null,
|
|
|
newTime: "",
|
|
|
loading: false,
|
|
|
+ stockOptions:[
|
|
|
+ { id: "0", name: "非库存品" },
|
|
|
+ { id: "1", name: "库存品" },
|
|
|
+ ],
|
|
|
// 收到货状态
|
|
|
status1Options: [
|
|
|
{ value: "1", label: "待业务审核" },
|