Browse Source

Detail refactor

EthnaYeh 7 years ago
parent
commit
8b265a97b6
1 changed files with 14 additions and 11 deletions
  1. 14 11
      src/views/gambleGameBucket/detail/index.vue

+ 14 - 11
src/views/gambleGameBucket/detail/index.vue

@@ -1,17 +1,20 @@
1 1
 <template>
2 2
 <div class="app-container calendar-list-container">
3 3
   <div class="app-container">
4
-    <el-row :gutter="20">
5
-      <el-col :span="6">
6
-        <el-select @change='handleFilter' style="width: 120px" class="filter-item" v-model="listQuery.round" placeholder="輪">
7
-        <el-option v-for="item in roundOptions" :key="item.label" :label="item.label" :value="item.key">
8
-        </el-option>
9
-      </el-select>
10
-      </el-col >
11
-      <el-col :offset="10" :span="8">
12
-          <label>時間 : {{moment(this.bucket.createdAt)}}</label>
13
-      </el-col>
14
-    </el-row>
4
+     <div class="block">
5
+      <el-row :gutter="20">
6
+        <el-col :span="6">
7
+          <span class="demonstration">輪數選擇</span>
8
+          <el-select @change='handleFilter' style="width: 120px" class="filter-item" v-model="listQuery.round" placeholder="輪">
9
+          <el-option v-for="item in roundOptions" :key="item.label" :label="item.label" :value="item.key">
10
+          </el-option>
11
+        </el-select>
12
+        </el-col >
13
+        <el-col :offset="10" :span="8">
14
+            <span class="demonstration">時間 : {{moment(this.bucket.createdAt)}}</span>
15
+        </el-col>
16
+      </el-row>
17
+    </div>
15 18
   </div>
16 19
     <el-table :data="dealing" v-loading.body="listLoading" :summary-method="getSummaries" show-summary  element-loading-text="Loading" border fit highlight-current-row
17 20
       style="width: 100%">