MrShi
10 小时以前 b806c4ad52a661a1e5f0695650ec1a7e42f01633
admin/src/components/business/OperaShopInfoWindow.vue
@@ -152,7 +152,7 @@
          </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>
@@ -180,6 +180,9 @@
          </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">
@@ -364,9 +367,12 @@
      storeInfo: {},
      visible: false,
      searchForm: {
        code: '',
        orderNo: '',
        goodsInfo: '',
        createTime1: '',
        createStartTime: '',
        createEndTime: '',
        startTime: '',
        endTime: '',
        orderStatus: '',
@@ -388,6 +394,12 @@
      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(() => {