|
@@ -165,6 +165,13 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
+
|
|
|
+ <template #invType="{ scope }">
|
|
|
+ <el-tag size="mini">
|
|
|
+ {{(openInvoiceTypeList.find(({value}) => value === scope.row.inv_type) || {}).label || '--'}}
|
|
|
+ </el-tag>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template #invoiceType="{ scope }">
|
|
|
<el-tag size="mini">
|
|
|
{{(invoiceTypeList.find(({value}) => value === scope.row.invoiceType) || {}).label || '--'}}
|
|
@@ -210,7 +217,7 @@ import asyncRequest from "@/apis/service/platformService/invoice";
|
|
|
import companyHelper from "@/mixins/companyHelper"
|
|
|
import { listCol, statusList } from "./columns";
|
|
|
import { mapGetters } from "vuex";
|
|
|
-import { invoiceTypeList } from '@/assets/js/statusList';
|
|
|
+import { invoiceTypeList, openInvoiceTypeList } from '@/assets/js/statusList';
|
|
|
import InvoiceModal from "./components/invoice-modal.vue"
|
|
|
import urlConfig from "@/apis/url-config";
|
|
|
|
|
@@ -254,6 +261,7 @@ export default {
|
|
|
//全局url
|
|
|
fileUrl: urlConfig.baseURL,
|
|
|
invoiceTypeList,
|
|
|
+ openInvoiceTypeList,
|
|
|
customerCode: [], //客户公司code
|
|
|
statusList,
|
|
|
sitem: null,
|