|
@@ -1,6 +1,6 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="app-container calendar-list-container">
|
3
|
|
- <div class="app-container" v-show="visible">
|
|
3
|
+ <div class="app-container" v-show="visible.firstLayer">
|
4
|
4
|
<div class="app-container">
|
5
|
5
|
<el-input @keyup.enter.native="handleFilter" style="width: 200px;" class="filter-item" placeholder="莊家" v-model="listQuery.bookie">
|
6
|
6
|
</el-input>
|
|
@@ -124,7 +124,7 @@ export default {
|
124
|
124
|
},
|
125
|
125
|
created() {
|
126
|
126
|
this.getList()
|
127
|
|
- this.SetVisible(true)
|
|
127
|
+ this.SetVisible(1)
|
128
|
128
|
},
|
129
|
129
|
computed: {
|
130
|
130
|
...mapGetters([
|
|
@@ -148,7 +148,7 @@ export default {
|
148
|
148
|
fetchGameBid(row).then(response => {
|
149
|
149
|
this.temp.bidChips = response.data
|
150
|
150
|
})
|
151
|
|
- this.SetVisible(false)
|
|
151
|
+ this.SetVisible(2)
|
152
|
152
|
this.bucket = this.temp
|
153
|
153
|
// fetchMemberRecords(row).then(response => {
|
154
|
154
|
// console.log(response.data)
|