|
|
@@ -20,7 +20,7 @@
|
|
|
|
|
|
<!-- 单号 -->
|
|
|
<template #table-column-orderSn="{scope}">
|
|
|
- <el type="text">{{ scope.row.orderSn}}</el>
|
|
|
+ <el-link :underline="false" @click="detailShowFn(scope.row)">{{ scope.row.orderSn}}</el-link>
|
|
|
</template>
|
|
|
|
|
|
<!-- 订花人 -->
|
|
|
@@ -92,9 +92,6 @@
|
|
|
<!-- 操作 -->
|
|
|
<!-- 发货 -->
|
|
|
<template #slot-column-option="{scope}">
|
|
|
- <template>
|
|
|
- <el-button type="text" size="small" @click="detailShowFn(scope.row)">详情</el-button>
|
|
|
- </template>
|
|
|
<template v-if="scope.row.status == 0">
|
|
|
<el-button type="text" size="small" disabled>自取</el-button>
|
|
|
<el-button type="text" size="small" disabled>发货</el-button>
|
|
|
@@ -232,7 +229,7 @@ export default {
|
|
|
prop: 'orderSn',
|
|
|
label: '单号',
|
|
|
align: 'center',
|
|
|
- width: '230'
|
|
|
+ width: '280'
|
|
|
},
|
|
|
{
|
|
|
prop: 'bookName',
|
|
|
@@ -275,11 +272,6 @@ export default {
|
|
|
label: '状态',
|
|
|
align: 'center'
|
|
|
},
|
|
|
- {
|
|
|
- prop: 'reachTime',
|
|
|
- label: '配送状态',
|
|
|
- align: 'center'
|
|
|
- },
|
|
|
{
|
|
|
prop: 'reachTime',
|
|
|
label: '送达时间',
|