| | |
| | | </el-table-column> |
| | | <el-table-column prop="goodsInfo" label="物品信息" min-width="180px" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="isUrgent" label="类型" min-width="80px"> |
| | | <template slot-scope="{row}"><span>{{ row.type === 1?'异地存取':'就地存取' }}</span></template> |
| | | <template slot-scope="{row}"><span>{{ row.type === 1?'同城寄送':'就地存取' }}</span></template> |
| | | </el-table-column> |
| | | <el-table-column prop="isUrgent" label="订单级别" min-width="80px"> |
| | | <template slot-scope="{row}"><span v-if="row.type ===1">{{ row.isUrgent === 1?'极速达':'标速达' }}</span></template> |
| | |
| | | </el-table-column> |
| | | <el-table-column label="退款金额(元)" min-width="120px"> |
| | | <template slot-scope="{row}">¥{{ (row.refundAmount / 100).toFixed(2) }}</template> |
| | | </el-table-column> |
| | | <el-table-column label="超时金额(元)" min-width="100px"> |
| | | <template slot-scope="{row}">¥{{ (row.overdueAmount / 100).toFixed(2) }}</template> |
| | | </el-table-column> |
| | | <el-table-column prop="createTime" label="创建时间" min-width="150px"> </el-table-column> |
| | | <!-- <el-table-column label="加急费(元)" min-width="120px"> |
| | |
| | | storeInfo: {}, |
| | | visible: false, |
| | | searchForm: { |
| | | code: '', |
| | | orderNo: '', |
| | | goodsInfo: '', |
| | | createTime1: '', |
| | | createStartTime: '', |
| | | createEndTime: '', |
| | | startTime: '', |
| | | endTime: '', |
| | | orderStatus: '', |
| | |
| | | this.searchForm.createEndTime = val ? val[1] : '' |
| | | this.search() |
| | | }, |
| | | reset () { |
| | | this.$refs.searchForm.resetFields() |
| | | this.searchForm.createStartTime = '' |
| | | this.searchForm.createEndTime = '' |
| | | this.search() |
| | | }, |
| | | open (title, row) { |
| | | this.searchForm.memberId = row.id |
| | | this.getStoreInfo(row.id).then(() => { |