Boom等级配置 - 配置金豆

This commit is contained in:
2025-08-13 15:32:09 +08:00
parent 0d0304a279
commit 53c42cff24
2 changed files with 8 additions and 0 deletions

View File

@@ -125,6 +125,8 @@
? "VIP" ? "VIP"
: scope.row.awardType == 11 : scope.row.awardType == 11
? "勋章" ? "勋章"
: scope.row.awardType == 13
? "金豆"
: "铭牌" : "铭牌"
}} }}
</template> </template>
@@ -200,6 +202,8 @@
? "VIP" ? "VIP"
: scope.row.awardType == 11 : scope.row.awardType == 11
? "勋章" ? "勋章"
: scope.row.awardType == 13
? "金豆"
: "铭牌" : "铭牌"
}} }}
</template> </template>
@@ -592,6 +596,7 @@ export default {
{ desc: "VIP", value: 10 }, { desc: "VIP", value: 10 },
{ desc: "勋章", value: 11 }, { desc: "勋章", value: 11 },
{ desc: "铭牌", value: 2 }, { desc: "铭牌", value: 2 },
{ desc: "金豆", value: 13 },
], ],
type: "", type: "",
typeArr: [ typeArr: [
@@ -623,6 +628,7 @@ export default {
{ desc: "VIP", value: 10 }, { desc: "VIP", value: 10 },
{ desc: "勋章", value: 11 }, { desc: "勋章", value: 11 },
{ desc: "铭牌", value: 2 }, { desc: "铭牌", value: 2 },
{ desc: "金豆", value: 13 },
], ],
type: "", type: "",
typeArr: [ typeArr: [

View File

@@ -170,6 +170,8 @@
? "VIP" ? "VIP"
: scope.row.awardType == 11 : scope.row.awardType == 11
? "勋章" ? "勋章"
: scope.row.awardType == 13
? "金豆"
: "铭牌" : "铭牌"
}} }}
</template> </template>