优化细节

This commit is contained in:
mac
2026-03-17 11:27:10 +08:00
parent b1c772e962
commit fa57699ea6
+10
View File
@@ -581,8 +581,10 @@ export default {
this.getUserData() this.getUserData()
}, },
handleEditMovieTickets(index, row) { handleEditMovieTickets(index, row) {
setTimeout(() => {
this.editMovieTicketsVisible = true this.editMovieTicketsVisible = true
this.editMovieTicketsData = row this.editMovieTicketsData = row
}, 300)
}, },
// 编辑 // 编辑
handleEdit(index, row) { handleEdit(index, row) {
@@ -591,6 +593,7 @@ export default {
}, },
// 编辑VIP // 编辑VIP
handleEditVip(index, row) { handleEditVip(index, row) {
setTimeout(() => {
this.editVipVisible = true this.editVipVisible = true
if (index === 0) { if (index === 0) {
this.editData = { this.editData = {
@@ -617,16 +620,23 @@ export default {
cardCategory: index cardCategory: index
} }
} }
},300)
}, },
// 编辑金币 // 编辑金币
addIncCoin(index, row) { addIncCoin(index, row) {
setTimeout(() => {
this.addIncCoinVisible = true this.addIncCoinVisible = true
this.editData = row this.editData = row
}, 300)
}, },
// 编辑优惠券 // 编辑优惠券
addCoupon(index, row) { addCoupon(index, row) {
setTimeout(() => {
this.couponVisible = true this.couponVisible = true
this.editData = row this.editData = row
}, 300)
}, },
// 编辑游戏币 // 编辑游戏币
addGameCoin(index, row) { addGameCoin(index, row) {