优化细节
This commit is contained in:
@@ -581,8 +581,10 @@ export default {
|
||||
this.getUserData()
|
||||
},
|
||||
handleEditMovieTickets(index, row) {
|
||||
this.editMovieTicketsVisible = true
|
||||
this.editMovieTicketsData = row
|
||||
setTimeout(() => {
|
||||
this.editMovieTicketsVisible = true
|
||||
this.editMovieTicketsData = row
|
||||
}, 300)
|
||||
},
|
||||
// 编辑
|
||||
handleEdit(index, row) {
|
||||
@@ -591,7 +593,8 @@ export default {
|
||||
},
|
||||
// 编辑VIP
|
||||
handleEditVip(index, row) {
|
||||
this.editVipVisible = true
|
||||
setTimeout(() => {
|
||||
this.editVipVisible = true
|
||||
if (index === 0) {
|
||||
this.editData = {
|
||||
...row.normalVip,
|
||||
@@ -617,16 +620,23 @@ export default {
|
||||
cardCategory: index
|
||||
}
|
||||
}
|
||||
},300)
|
||||
},
|
||||
// 编辑金币
|
||||
addIncCoin(index, row) {
|
||||
this.addIncCoinVisible = true
|
||||
this.editData = row
|
||||
setTimeout(() => {
|
||||
this.addIncCoinVisible = true
|
||||
this.editData = row
|
||||
}, 300)
|
||||
|
||||
},
|
||||
// 编辑优惠券
|
||||
addCoupon(index, row) {
|
||||
this.couponVisible = true
|
||||
this.editData = row
|
||||
setTimeout(() => {
|
||||
this.couponVisible = true
|
||||
this.editData = row
|
||||
}, 300)
|
||||
|
||||
},
|
||||
// 编辑游戏币
|
||||
addGameCoin(index, row) {
|
||||
|
||||
Reference in New Issue
Block a user