Pārlūkot izejas kodu

签到管理 抽奖统计 收货信息修改

DESKTOP-O04BTUJ\muzen 2 gadi atpakaļ
vecāks
revīzija
5de06419ac
1 mainītis faili ar 3 papildinājumiem un 7 dzēšanām
  1. 3 7
      src/views/registration/lotteryStat/index.vue

+ 3 - 7
src/views/registration/lotteryStat/index.vue

@@ -33,10 +33,10 @@
       <el-table-column label="活动时间" prop="createTime" align="center" />
       <el-table-column label="奖品类型" prop="goodType" align="center" :formatter="goodFormatter" />
       <el-table-column label="奖品" prop="goodName" align="center" />
-      <el-table-column label="收货地址" align="center" show-overflow-tooltip>
+      <el-table-column label="收货信息" align="center" show-overflow-tooltip>
         <template slot-scope="scope">
-          <el-button type="text" v-clipboard:copy="getCope(scope.row)" v-clipboard:success="copeSuccess">
-            {{ scope.row.receiveLocation }}{{ scope.row.receiveAddress }}
+          <el-button type="text" v-clipboard:copy="scope.row.addressInfo" v-clipboard:success="copeSuccess">
+            {{ scope.row.addressInfo }}
           </el-button>
         </template>
       </el-table-column>
@@ -120,10 +120,6 @@ export default {
       this.getList()
     },
 
-    getCope(row) {
-      return row.receiveLocation + row.receiveAddress
-    },
-
     // 复制
     copeSuccess() {
       this.$message.success('复制成功!')