Browse Source

history person table delete count

EthnaYeh 7 years ago
parent
commit
9bb45d0fe9
1 changed files with 3 additions and 9 deletions
  1. 3 9
      src/views/gambleMember/history/index.vue

+ 3 - 9
src/views/gambleMember/history/index.vue

@@ -55,11 +55,6 @@
55 55
     <el-dialog title="個人詳細資料" :visible.sync="dialogFormVisible" width="75%" center>
56 56
       <el-table :data="dialogList" v-loading.body="listLoading" element-loading-text="Loading" border fit highlight-current-row
57 57
         style="width: 100%" :summary-method="getSummaries" show-summary>
58
-        <el-table-column align="center" label='數目' >
59
-          <template slot-scope="scope">
60
-            {{scope.$index + 1}}
61
-          </template>
62
-        </el-table-column>
63 58
         <el-table-column label="關" align="center">
64 59
           <template slot-scope="scope">
65 60
             {{scope.row.round}}
@@ -229,10 +224,9 @@ export default {
229 224
       }
230 225
       sums[0] = '合計'
231 226
       sums[1] = 'N/A'
232
-      sums[2] = 'N/A'
233
-      sums[3] = totalWager
234
-      sums[4] = totalEarned
235
-      sums[5] = totalServiceFees
227
+      sums[2] = totalWager
228
+      sums[3] = totalEarned
229
+      sums[4] = totalServiceFees
236 230
       return sums
237 231
     },
238 232
     moneyColor(money) {