|
@@ -231,13 +231,13 @@
|
|
<el-col
|
|
<el-col
|
|
:span="6"
|
|
:span="6"
|
|
><b>待收金额:</b> ¥{{
|
|
><b>待收金额:</b> ¥{{
|
|
- shopOrder.waitPayShop | toThousandFloatFilter
|
|
|
|
|
|
+ shopOrder.restAmount | toThousandFloatFilter
|
|
}}</el-col>
|
|
}}</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
<el-row :gutter="22" class="box-row">
|
|
<el-row :gutter="22" class="box-row">
|
|
<el-col
|
|
<el-col
|
|
:span="6"
|
|
:span="6"
|
|
- ><b>订单状态:</b>
|
|
|
|
|
|
+ ><b>子订单状态:</b>
|
|
<template v-if="shopOrder.shopStatus < 10">
|
|
<template v-if="shopOrder.shopStatus < 10">
|
|
<el-tag type="success" size="small">
|
|
<el-tag type="success" size="small">
|
|
{{ orderStatus(shopOrder.shopStatus) }}
|
|
{{ orderStatus(shopOrder.shopStatus) }}
|
|
@@ -254,17 +254,17 @@
|
|
v-if="shopOrder.receiptStatus * 1 === 1"
|
|
v-if="shopOrder.receiptStatus * 1 === 1"
|
|
type="danger"
|
|
type="danger"
|
|
size="small"
|
|
size="small"
|
|
- >待付款</el-tag>
|
|
|
|
|
|
+ >待收款</el-tag>
|
|
<el-tag
|
|
<el-tag
|
|
v-if="shopOrder.receiptStatus * 1 === 2"
|
|
v-if="shopOrder.receiptStatus * 1 === 2"
|
|
type="warning"
|
|
type="warning"
|
|
size="small"
|
|
size="small"
|
|
- >部分付款</el-tag>
|
|
|
|
|
|
+ >部分收款</el-tag>
|
|
<el-tag
|
|
<el-tag
|
|
v-if="shopOrder.receiptStatus * 1 === 3"
|
|
v-if="shopOrder.receiptStatus * 1 === 3"
|
|
type="success"
|
|
type="success"
|
|
size="small"
|
|
size="small"
|
|
- >已付款</el-tag>
|
|
|
|
|
|
+ >已收款</el-tag>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col
|
|
<el-col
|
|
:span="6"
|
|
:span="6"
|
|
@@ -392,6 +392,24 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
+ <div v-if="shopOrder.vouchers.length > 0">
|
|
|
|
+ <h1 style="font-size: 14px; color: #409eff">线下支付凭证:</h1>
|
|
|
|
+ <el-row v-for="(vouch, index) in shopOrder.vouchers" :key="index" style="padding: 5px 0">
|
|
|
|
+ <p class="refund-item-p">{{ vouch.addTime }}</p>
|
|
|
|
+ <div class="refund-item-imgs">
|
|
|
|
+ <div
|
|
|
|
+ v-for="(imgage, imgIndex) in vouch.images"
|
|
|
|
+ :key="imgIndex"
|
|
|
|
+ class="item-image"
|
|
|
|
+ >
|
|
|
|
+ <a :href="imgage" target="_blank" rel="noopener noreferrer">
|
|
|
|
+ <img :src="imgage" alt="">
|
|
|
|
+ </a>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <p v-if="vouch.remarks" class="refund-item-p">备注:{{ vouch.remarks }}</p>
|
|
|
|
+ </el-row>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="refund-item">
|
|
<div class="refund-item">
|
|
@@ -407,19 +425,21 @@
|
|
><b>发票抬头:</b>
|
|
><b>发票抬头:</b>
|
|
{{ orderInvoice.invoiceTitle ? orderInvoice.invoiceTitle : "无" }}</el-col>
|
|
{{ orderInvoice.invoiceTitle ? orderInvoice.invoiceTitle : "无" }}</el-col>
|
|
<el-col
|
|
<el-col
|
|
|
|
+ v-if="orderInvoice.invoiceTitleType*1 === 1"
|
|
:span="6"
|
|
:span="6"
|
|
><b>单位税号:</b>
|
|
><b>单位税号:</b>
|
|
{{
|
|
{{
|
|
orderInvoice.corporationTaxNum ? orderInvoice.corporationTaxNum : "无"
|
|
orderInvoice.corporationTaxNum ? orderInvoice.corporationTaxNum : "无"
|
|
}}</el-col>
|
|
}}</el-col>
|
|
<el-col
|
|
<el-col
|
|
|
|
+ v-if="orderInvoice.invoiceTitleType*1 === 1"
|
|
:span="8"
|
|
:span="8"
|
|
><b>注册地址:</b>
|
|
><b>注册地址:</b>
|
|
{{
|
|
{{
|
|
orderInvoice.registeredAddress ? orderInvoice.registeredAddress : "无"
|
|
orderInvoice.registeredAddress ? orderInvoice.registeredAddress : "无"
|
|
}}</el-col>
|
|
}}</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
- <el-row :gutter="24" class="box-row">
|
|
|
|
|
|
+ <el-row v-if="orderInvoice.invoiceTitleType*1 === 1" :gutter="24" class="box-row">
|
|
<el-col
|
|
<el-col
|
|
:span="6"
|
|
:span="6"
|
|
><b>注册电话:</b>
|
|
><b>注册电话:</b>
|
|
@@ -442,24 +462,7 @@
|
|
</el-row>
|
|
</el-row>
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
- <div v-if="voucher.length > 0" class="refund-item">
|
|
|
|
- <h1 style="font-size: 14px; color: #409eff">线下支付凭证:</h1>
|
|
|
|
- <el-row v-for="(vouch, index) in voucher" :key="index" style="padding: 5px 0">
|
|
|
|
- <p class="refund-item-p">{{ vouch.addTime }}</p>
|
|
|
|
- <div class="refund-item-imgs">
|
|
|
|
- <div
|
|
|
|
- v-for="(imgage, imgIndex) in vouch.images"
|
|
|
|
- :key="imgIndex"
|
|
|
|
- class="item-image"
|
|
|
|
- >
|
|
|
|
- <a :href="imgage" target="_blank" rel="noopener noreferrer">
|
|
|
|
- <img :src="imgage" alt="">
|
|
|
|
- </a>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <p v-if="vouch.remarks" class="refund-item-p">备注:{{ vouch.remarks }}</p>
|
|
|
|
- </el-row>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <!-- <div v-if="voucher.length > 0" class="refund-item"></div> -->
|
|
<el-dialog title="更改收款状态" :visible.sync="dialogFormVisible" width="600px">
|
|
<el-dialog title="更改收款状态" :visible.sync="dialogFormVisible" width="600px">
|
|
<el-form
|
|
<el-form
|
|
ref="dataForm"
|
|
ref="dataForm"
|