|
|
@@ -71,18 +71,19 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="order_state_text" label="状态" width="100" />
|
|
|
- <el-table-column label="支付时间" width="160">
|
|
|
+ <el-table-column label="支付时间" width="150">
|
|
|
<template #default="{ row }">
|
|
|
<div>{{ formatPaymentTime(row.payment_time) }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="更新时间" prop="update_time" width="150" />
|
|
|
<el-table-column label="快递信息" min-width="250">
|
|
|
<template #default="{ row }">
|
|
|
<div class="express-info">
|
|
|
<div>快递公司:{{ row.express_name || '-' }}</div>
|
|
|
<div>快递单号:{{ row.express_number || '-' }}</div>
|
|
|
<div>快递公司编号: {{ row.express_company || '-' }}</div>
|
|
|
- <div v-if="!row.express_company && row.express_name" class="correct-button">
|
|
|
+ <div v-if="!row.express_company && row.express_company_name" class="correct-button">
|
|
|
<el-button type="primary" size="small" @click="handleCorrectExpress(row)">纠正</el-button>
|
|
|
</div>
|
|
|
</div>
|