|
@@ -59,11 +59,7 @@
|
|
style="width: 150px"
|
|
style="width: 150px"
|
|
>
|
|
>
|
|
<el-option
|
|
<el-option
|
|
- v-for="dict in [
|
|
|
|
- { label: '小程序',value: 0 },
|
|
|
|
- { label: '团购H5',value: 1 },
|
|
|
|
- { label: '线下(诺诺系统)',value: 2 },
|
|
|
|
- ]"
|
|
|
|
|
|
+ v-for="dict in dict.type.Invoice_source"
|
|
:key="dict.value"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
:value="dict.value"
|
|
@@ -105,11 +101,7 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="开票来源" align="center">
|
|
<el-table-column label="开票来源" align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <dict-tag :options="[
|
|
|
|
- { label: '小程序',value: '0',raw: {listClass:'default'} },
|
|
|
|
- { label: '团购H5',value: '1',raw: {listClass:'default'} },
|
|
|
|
- { label: '线下(诺诺系统)',value: '2',raw: {listClass:'default'} },
|
|
|
|
- ]" :value="scope.row.invoiceSource"/>
|
|
|
|
|
|
+ <dict-tag :options="dict.type.Invoice_source" :value="scope.row.invoiceSource"/>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="申请时间" align="center">
|
|
<el-table-column label="申请时间" align="center">
|
|
@@ -175,7 +167,7 @@ import { myMixin } from "@/utils/mixin.js"
|
|
export default {
|
|
export default {
|
|
name: "InvoiceRecords",
|
|
name: "InvoiceRecords",
|
|
//mixins: [myMixin],
|
|
//mixins: [myMixin],
|
|
- dicts: ['Invoicing_type','lookup_type'],
|
|
|
|
|
|
+ dicts: ['Invoicing_type','lookup_type','Invoice_source'],
|
|
components: { detailsDia,relatedOrders },
|
|
components: { detailsDia,relatedOrders },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|