|
|
@@ -151,7 +151,13 @@
|
|
|
<span>{{formatDate(scope.row.pay_time)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="order_no" label="订单编号"></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop=""
|
|
|
+ label="订单编号">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <nuxt-link target="_blank" :to="{path:'/main/orders_detail?id='+scope.row.order_no}">{{scope.row.order_no}}</nuxt-link>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="out_order_id" label="支付编号"></el-table-column>
|
|
|
<el-table-column width="100" label="订单类型">
|
|
|
<template slot-scope="scope">
|
|
|
@@ -366,7 +372,7 @@ export default {
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
- timeRange: [],
|
|
|
+ timeRange: [(new Date()).setDate(1), new Date()],
|
|
|
arriveTime: "",
|
|
|
searchId: "",
|
|
|
tableData3: [
|