|
@@ -60,7 +60,7 @@
|
|
|
v-for="dict in [
|
|
|
{ label: '小程序',value: 0 },
|
|
|
{ label: '团购H5',value: 1 },
|
|
|
- { label: '线下',value: 2 },
|
|
|
+ { label: '线下(诺诺系统)',value: 2 },
|
|
|
]"
|
|
|
:key="dict.value"
|
|
|
:label="dict.label"
|
|
@@ -100,6 +100,15 @@
|
|
|
<dict-tag :options="dict.type.Invoicing_type" :value="scope.row.status"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="开票来源" align="center">
|
|
|
+ <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"/>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="申请时间" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
@@ -129,7 +138,7 @@
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
style="margin-left: 10px;"
|
|
|
- v-if="scope.row.status == 6"
|
|
|
+ v-if="scope.row.invoiceSource == 2"
|
|
|
@click="openRelatedOrders(scope.row)"
|
|
|
>{{ scope.row.orderId ? '重新关联订单': '关联订单' }}</el-button>
|
|
|
</span>
|