Commit c4c4f1d1 by 黑潮

update: 履约管理

parent d1969c1a
.empty_block[data-v-4690d4cb]:after{content:"\6682\65E0\7269\6D41\4FE1\606F"}.logistics-info[data-v-4690d4cb]{display:-webkit-box;display:-ms-flexbox;display:flex}.logistics-info>div[data-v-4690d4cb]{-webkit-box-flex:1;-ms-flex:1;flex:1}.logistics-info span[data-v-4690d4cb]{display:inline-block}.logistics-info span+span[data-v-4690d4cb]{margin-left:10px}.logistics-step[data-v-4690d4cb]{margin-top:24px;background:#fafafa;padding:15px 0}.logistics-step h3[data-v-4690d4cb]{color:#303133;font-size:16px;border-bottom:1px solid #dcdfe6;padding:0 20px 15px 20px}.logistics-step .logistics-list[data-v-4690d4cb]{height:328px;overflow-y:auto;padding:20px}.logistics-step .logistics-item[data-v-4690d4cb]{position:relative;padding-bottom:10px}.logistics-step .logistics-line-step[data-v-4690d4cb]{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:12px}.logistics-step .logistics-line-step .time[data-v-4690d4cb]{margin-right:20px;width:160px;line-height:22px;font-weight:500;color:#303133}.logistics-step .logistics-line-step .content[data-v-4690d4cb]{color:#303133;-webkit-box-flex:1;-ms-flex:1;flex:1;line-height:22px}
\ No newline at end of file
.empty_block[data-v-9c2d05ba]:after{content:"\6682\65E0\7269\6D41\4FE1\606F"}.logistics-info[data-v-9c2d05ba]{display:-webkit-box;display:-ms-flexbox;display:flex}.logistics-info>div[data-v-9c2d05ba]{-webkit-box-flex:1;-ms-flex:1;flex:1}.logistics-info span[data-v-9c2d05ba]{display:inline-block}.logistics-info span+span[data-v-9c2d05ba]{margin-left:10px}.logistics-step[data-v-9c2d05ba]{margin-top:24px;background:#fafafa;padding:15px 0}.logistics-step h3[data-v-9c2d05ba]{color:#303133;font-size:16px;border-bottom:1px solid #dcdfe6;padding:0 20px 15px 20px}.logistics-step .logistics-list[data-v-9c2d05ba]{height:328px;overflow-y:auto;padding:20px}.logistics-step .logistics-item[data-v-9c2d05ba]{position:relative;padding-bottom:10px}.logistics-step .logistics-line-step[data-v-9c2d05ba]{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:12px}.logistics-step .logistics-line-step .time[data-v-9c2d05ba]{margin-right:20px;width:160px;line-height:22px;font-weight:500;color:#303133}.logistics-step .logistics-line-step .content[data-v-9c2d05ba]{color:#303133;-webkit-box-flex:1;-ms-flex:1;flex:1;line-height:22px}
\ No newline at end of file
......@@ -120,7 +120,10 @@
</el-table-column>
<el-table-column label="操作" width="200">
<template slot-scope="{ row }">
<template v-if="row.refundFlag == 0 && row.refundLogisticsNo">
<template v-if="row.refundFlag == 3 ">
<span>已关闭</span>
</template>
<template v-else-if="row.refundFlag == 0 && row.refundLogisticsNo">
<div>
<dm-delete @confirm="handleReceive(row, 1)" tips="确认同意收货?">
<el-button type="text">同意收货</el-button>
......@@ -128,7 +131,7 @@
<el-button type="text" @click="openDialog('refuseDialog', row)">拒绝收货</el-button>
</div>
</template>
<template v-if="row.refundFlag != 0 && row.refundLogisticsNo">
<template v-else-if="row.refundFlag != 0 && row.refundLogisticsNo">
<span>{{ refundStatus[row.refundFlag] }}</span>
</template>
</template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment