钻石流水显示时分秒+转赠类型新增web-api金币

This commit is contained in:
dragon
2024-10-30 17:46:48 +08:00
parent 31d6efd60e
commit ae0a3507a6
2 changed files with 7 additions and 3 deletions

View File

@@ -24,6 +24,7 @@
<option value="">请选择...</option>
<option value="0">金币</option>
<option value="1">背包礼物</option>
<option value="2">web-api金币</option>
</select>
</div>
@@ -163,6 +164,8 @@ export default {
formatter: function (val, row, index) {
if (row.type == 0) {
return '金币'
}else if(row.type == 2){
return 'web-api金币';
} else {
return '背包礼物';
}