|
@@ -172,15 +172,23 @@
|
|
stripe
|
|
stripe
|
|
>
|
|
>
|
|
<el-table-column align="center" type="index" min-width="160" show-overflow-tooltip />
|
|
<el-table-column align="center" type="index" min-width="160" show-overflow-tooltip />
|
|
- <el-table-column align="center" label="发货单" prop="id" min-width="160" show-overflow-tooltip />
|
|
|
|
|
|
+ <el-table-column align="center" label="发货单" prop="id" min-width="160" show-overflow-tooltip >
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-link type="primary" :underline="false" @click="handleJump(scope.row.id)">{{ scope.row.id }}</el-link>
|
|
|
|
+ <!-- <router-link :to="{path:'/exwarehouse/sum_list',query:{id:scope.row.id}}" exact></router-link> -->
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column align="center" label="内容" prop="orderTrackStatus" min-width="160" show-overflow-tooltip />
|
|
<el-table-column align="center" label="内容" prop="orderTrackStatus" min-width="160" show-overflow-tooltip />
|
|
<el-table-column align="center" label="时间" prop="orderTrackTime" min-width="160" show-overflow-tooltip />
|
|
<el-table-column align="center" label="时间" prop="orderTrackTime" min-width="160" show-overflow-tooltip />
|
|
|
|
+ <el-table-column align="center" label="收货地址" prop="address" min-width="160" show-overflow-tooltip />
|
|
|
|
+ <el-table-column align="center" label="收货客户" prop="receivingName" min-width="160" show-overflow-tooltip />
|
|
<el-table-column align="center" label="" min-width="160" show-overflow-tooltip fixed="right">
|
|
<el-table-column align="center" label="" min-width="160" show-overflow-tooltip fixed="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button type="text" class="textColor" @click="handLogistics(scope.row)">查看</el-button>
|
|
<el-button type="text" class="textColor" @click="handLogistics(scope.row)">查看</el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
|
|
+ <div v-else class="tip">暂无物流通知</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- 分页 -->
|
|
<!-- 分页 -->
|
|
@@ -291,6 +299,8 @@ import { getListInvoiceOrder } from '@/api/dashboard'
|
|
import { bindEngineAccount, checkEngineAccount } from '@/api/setting'
|
|
import { bindEngineAccount, checkEngineAccount } from '@/api/setting'
|
|
import mixin from '@/mixin'
|
|
import mixin from '@/mixin'
|
|
import ret from 'bluebird/js/release/util'
|
|
import ret from 'bluebird/js/release/util'
|
|
|
|
+import path from 'path'
|
|
|
|
+import { query } from 'quill'
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
Breadcrumb,
|
|
Breadcrumb,
|
|
@@ -660,6 +670,10 @@ export default {
|
|
this.logisticsDetail = []
|
|
this.logisticsDetail = []
|
|
this.orderId = ''
|
|
this.orderId = ''
|
|
this.visible = false
|
|
this.visible = false
|
|
|
|
+ },
|
|
|
|
+ handleJump(id){
|
|
|
|
+ this.$router.push({path:`/exwarehouse/sum_list?id=${id}`})
|
|
|
|
+ this.isLogistics = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|