diff --git a/src/views/activity/ActivityAwardAdminView.vue b/src/views/activity/ActivityAwardAdminView.vue index 4def8a0..58a1ad8 100644 --- a/src/views/activity/ActivityAwardAdminView.vue +++ b/src/views/activity/ActivityAwardAdminView.vue @@ -10,7 +10,7 @@
奖品类别: - + @@ -179,7 +179,7 @@ export default { field: 'prizeType', title: '奖品类别', align: 'center', valign: 'middle', width: '20%', formatter: function (val, row, index) { switch (val) { case 1: - return '金币'; + return '钻石'; case 2: return '在线礼物'; diff --git a/src/views/activity/ActivityPackAdminView.vue b/src/views/activity/ActivityPackAdminView.vue index 8147593..a7b780b 100644 --- a/src/views/activity/ActivityPackAdminView.vue +++ b/src/views/activity/ActivityPackAdminView.vue @@ -655,7 +655,7 @@ export default { field: 'type', title: '奖品类型', align: 'center', width: '5%', valign: 'middle', formatter: function (val, row, index) { switch (val) { case 1: - return '金币'; + return '钻石'; case 2: return '在线礼物'; diff --git a/src/views/activity/LuckySeaRecordAdminView.vue b/src/views/activity/LuckySeaRecordAdminView.vue index 85eb963..696d386 100644 --- a/src/views/activity/LuckySeaRecordAdminView.vue +++ b/src/views/activity/LuckySeaRecordAdminView.vue @@ -14,7 +14,7 @@ 查询
- 当前库存 钻石 + 当前库存 金币
@@ -58,7 +58,7 @@ @@ -58,7 +58,7 @@
- +
@@ -147,7 +147,7 @@
- 金币 + 钻石
@@ -155,7 +155,7 @@
- 金币 + 钻石
@@ -163,7 +163,7 @@
- 金币 + 钻石
@@ -469,7 +469,7 @@ export default { }, { field: 'goldSale', - title: '金币购买', + title: '钻石购买', align: 'center', width: '3%', formatter: function (val, row, index) { @@ -497,9 +497,9 @@ export default { } } }, - { field: 'originalPrice', title: '原价(金币)', align: 'center', width: '5%' }, - { field: 'price', title: '购买价格(金币)', align: 'center', width: '5%' }, - { field: 'renewPrice', title: '续费价格(金币)', align: 'center', width: '5%' }, + { field: 'originalPrice', title: '原价(钻石)', align: 'center', width: '5%' }, + { field: 'price', title: '购买价格(钻石)', align: 'center', width: '5%' }, + { field: 'renewPrice', title: '续费价格(钻石)', align: 'center', width: '5%' }, { field: 'radishOriginalPrice', title: '原价(萝卜)', align: 'center', width: '5%' }, { field: 'radishPrice', title: '购买价格(萝卜)', align: 'center', width: '5%' }, { field: 'radishRenewPrice', title: '续费价格(萝卜)', align: 'center', width: '5%' }, @@ -1033,7 +1033,7 @@ export default { return; } if (goldSale == 1 && (!price || !renewPrice || !originalPrice)) { - $("#tipMsg").text("请填写完整金币价格"); + $("#tipMsg").text("请填写完整钻石价格"); $("#tipModal").modal('show'); return; } else if (radishSale == 1 && (!radishPrice || !radishRenewPrice || !radishOriginalPrice)) { diff --git a/src/views/car/CarStatisticsView.vue b/src/views/car/CarStatisticsView.vue index f6aaa2f..82e31ea 100644 --- a/src/views/car/CarStatisticsView.vue +++ b/src/views/car/CarStatisticsView.vue @@ -59,7 +59,7 @@ export default { { field: 'createTime', title: '日期', align: 'center', width: '5%' }, { field: 'carId', title: '座驾ID', align: 'center', width: '5%' }, { field: 'carName', title: '座驾名称', align: 'center', width: '5%' }, - { field: 'carPrice', title: '座驾金额(金币)', align: 'center', width: '5%' }, + { field: 'carPrice', title: '座驾金额(钻石)', align: 'center', width: '5%' }, { field: 'carRadishPrice', title: '座驾金额(萝卜)', align: 'center', width: '5%' }, { field: 'carStatus', title: '座驾状态', align: 'center', width: '5%' }, { field: 'receivedCarNum', title: '用户收到数量', align: 'center', width: '5%' }, diff --git a/src/views/charge/ChargeRegionView.vue b/src/views/charge/ChargeRegionView.vue index ea4a017..606682e 100644 --- a/src/views/charge/ChargeRegionView.vue +++ b/src/views/charge/ChargeRegionView.vue @@ -372,7 +372,7 @@ export default { if (row.chargeProds) { for (let i = 0, len = row.chargeProds.length; i < len; i++) { var chargeProd = row.chargeProds[i]; - value += currency + ':' + (chargeProd.money / 100) + '手续费 ' + chargeProd.handlingRate + '% 到账钻石:' + chargeProd.chargeGoldNum + '
'; + value += currency + ':' + (chargeProd.money / 100) + '手续费 ' + chargeProd.handlingRate + '% 到账金币:' + chargeProd.chargeGoldNum + '
'; } } return value; @@ -549,9 +549,9 @@ export default { $select.append($option); } $div.append($select); - $div.append(' 手续费 % 到账钻石:' + chargeGoldNum + ' '); + $div.append(' 手续费 % 到账金币:' + chargeGoldNum + ' '); } else { - $div.html(currency + ' 手续费 % 到账钻石:' + chargeGoldNum + ' '); + $div.html(currency + ' 手续费 % 到账金币:' + chargeGoldNum + ' '); } $formGroup.append($div); $form.append($formGroup); @@ -586,9 +586,9 @@ export default { $select.append($option); } $div.append($select); - $div.append(' 手续费 % 到账钻石: '); + $div.append(' 手续费 % 到账金币: '); } else { - $div.html(currency + ' 手续费 % 到账钻石: '); + $div.html(currency + ' 手续费 % 到账金币: '); } $formGroup.append($div); $form.append($formGroup); diff --git a/src/views/charge/FirstChargeRewardConfigView.vue b/src/views/charge/FirstChargeRewardConfigView.vue index 097d34a..9fb1b87 100644 --- a/src/views/charge/FirstChargeRewardConfigView.vue +++ b/src/views/charge/FirstChargeRewardConfigView.vue @@ -73,7 +73,7 @@ - +
@@ -97,7 +97,7 @@
+ id="modal_rewardNum" placeholder="礼物、额外金币输入个数">
diff --git a/src/views/charge/RedeemcodeAdminView.vue b/src/views/charge/RedeemcodeAdminView.vue index fe0dca5..53037f9 100644 --- a/src/views/charge/RedeemcodeAdminView.vue +++ b/src/views/charge/RedeemcodeAdminView.vue @@ -41,7 +41,7 @@
- +
@@ -92,7 +92,7 @@ export default { { field: 'amount', title: '金额', align: 'center', width: '10%', formatter: function (val, row, index) { - return val + "金币"; + return val + "钻石"; } }, { diff --git a/src/views/finance/FinanceStatisticsView.vue b/src/views/finance/FinanceStatisticsView.vue index 32999b7..1b55eff 100644 --- a/src/views/finance/FinanceStatisticsView.vue +++ b/src/views/finance/FinanceStatisticsView.vue @@ -79,12 +79,12 @@ export default { } } }, - { field: 'goldIncreaseNum', title: '金币增加', align: 'center', width: '5%' }, - { field: 'goldDecreaseNum', title: '金币减少', align: 'center', width: '5%' }, - { field: 'goldNum', title: '金币余额', align: 'center', width: '5%' }, - { field: 'diamondIncreaseNum', title: '钻石增加', align: 'center', width: '5%' }, - { field: 'diamondDecreaseNum', title: '钻石减少', align: 'center', width: '5%' }, - { field: 'diamondNum', title: '钻石余额', align: 'center', width: '5%' }, + { field: 'goldIncreaseNum', title: '钻石增加', align: 'center', width: '5%' }, + { field: 'goldDecreaseNum', title: '钻石减少', align: 'center', width: '5%' }, + { field: 'goldNum', title: '钻石余额', align: 'center', width: '5%' }, + { field: 'diamondIncreaseNum', title: '金币增加', align: 'center', width: '5%' }, + { field: 'diamondDecreaseNum', title: '金币减少', align: 'center', width: '5%' }, + { field: 'diamondNum', title: '金币余额', align: 'center', width: '5%' }, { field: 'totalNum', title: '总额', align: 'center', width: '5%' }, ], cache: false, diff --git a/src/views/findlove/FindLovePlatformPrizeDataAdminView.vue b/src/views/findlove/FindLovePlatformPrizeDataAdminView.vue index 8d98064..b7d7201 100644 --- a/src/views/findlove/FindLovePlatformPrizeDataAdminView.vue +++ b/src/views/findlove/FindLovePlatformPrizeDataAdminView.vue @@ -36,7 +36,7 @@

- 用户投入钻石总数: + 用户投入金币总数:

@@ -193,7 +193,7 @@ export default { { field: 'date', title: '日期', align: 'center', valign: 'middle', width: '20%' }, { field: 'peopleNum', title: '抽奖人数', align: 'center', valign: 'middle', width: '10%' }, { field: 'countNum', title: '抽奖记录数', align: 'center', valign: 'middle', width: '10%' }, - { field: 'userInputDiamonds', title: '用户投入钻石数', align: 'center', valign: 'middle', width: '10%' }, + { field: 'userInputDiamonds', title: '用户投入金币数', align: 'center', valign: 'middle', width: '10%' }, { field: 'giftOutputDiamonds', title: '平台产出价值数', align: 'center', valign: 'middle', width: '10%' } ], cache: false, diff --git a/src/views/findlove/FindLovePrizeDrawRecordAdminView.vue b/src/views/findlove/FindLovePrizeDrawRecordAdminView.vue index 0f73f10..a7e486f 100644 --- a/src/views/findlove/FindLovePrizeDrawRecordAdminView.vue +++ b/src/views/findlove/FindLovePrizeDrawRecordAdminView.vue @@ -100,7 +100,7 @@ export default { } }, { field: 'level', title: '礼物等级', align: 'center', valign: 'middle', width: '10%' }, - { field: 'diamonds', title: '钻石单价', align: 'center', valign: 'middle', width: '10%' }, + { field: 'diamonds', title: '金币单价', align: 'center', valign: 'middle', width: '10%' }, { field: 'poolType', title: '礼物组类型', align: 'center', valign: 'middle', width: '10%', formatter: function (val, row, index) { switch (row.poolType) { diff --git a/src/views/flowteam/FlowTeamStatisticView.vue b/src/views/flowteam/FlowTeamStatisticView.vue index a502363..2594af3 100644 --- a/src/views/flowteam/FlowTeamStatisticView.vue +++ b/src/views/flowteam/FlowTeamStatisticView.vue @@ -358,7 +358,7 @@ export default { { field: 'chargeRate', title: '付费转化', align: 'center', width: '5%', }, { field: 'chargeCount', title: '充值次数', align: 'center', width: '5%', }, { field: 'chargeMoney', title: '充值金额(美元)', align: 'center', width: '5%', }, - { field: 'sendGiftMony', title: '送礼钻石数', align: 'center', width: '5%', }, + { field: 'sendGiftMony', title: '送礼金币数', align: 'center', width: '5%', }, { field: 'giveCount', title: '累计收到转赠次数', align: 'center', width: '5%', }, { field: 'giveMoney', title: '累计收到转赠金额', align: 'center', width: '5%', }, { field: 'arpu', title: 'Arpu', align: 'center', width: '5%', }, @@ -507,7 +507,7 @@ export default { { field: 'tchargeRate', title: '付费转化', align: 'center', width: '5%', }, { field: 'tchargeCount', title: '充值次数', align: 'center', width: '5%', }, { field: 'tchargeMoney', title: '充值金额(美元)', align: 'center', width: '5%', }, - { field: 'tsendGiftMony', title: '送礼钻石数', align: 'center', width: '5%', }, + { field: 'tsendGiftMony', title: '送礼金币数', align: 'center', width: '5%', }, { field: 'tgiveCount', title: '累计收到转赠次数', align: 'center', width: '5%', }, { field: 'tgiveMoney', title: '累计收到转赠金额', align: 'center', width: '5%', }, { field: 'tarpu', title: 'Arpu', align: 'center', width: '5%', }, @@ -666,7 +666,7 @@ export default { { field: 'chargeRate', title: '付费转化', align: 'center', width: '5%', }, { field: 'chargeCount', title: '充值次数', align: 'center', width: '5%', }, { field: 'chargeMoney', title: '充值金额(美元)', align: 'center', width: '5%', }, - { field: 'sendGiftMony', title: '送礼钻石数', align: 'center', width: '5%', }, + { field: 'sendGiftMony', title: '送礼金币数', align: 'center', width: '5%', }, { field: 'arpu', title: 'Arpu', align: 'center', width: '5%', }, { field: 'memberId', @@ -726,9 +726,9 @@ export default { { field: 'signUpTime', title: '新增日期', align: 'center', width: '5%' }, { field: 'chargeCount', title: '充值次数', align: 'center', width: '5%' }, { field: 'chargeMoney', title: '充值金额(美元)', align: 'center', width: '5%' }, - { field: 'totalSendGiftMoney', title: '送礼钻石数', align: 'center', width: '5%' }, - { field: 'totalBackbagSendGiftMoney', title: '送礼背包钻石数', align: 'center', width: '5%' }, - { field: 'totalNoBackbagSendGiftMoney', title: '送礼非背包钻石数', align: 'center', width: '5%' }, + { field: 'totalSendGiftMoney', title: '送礼金币数', align: 'center', width: '5%' }, + { field: 'totalBackbagSendGiftMoney', title: '送礼背包金币数', align: 'center', width: '5%' }, + { field: 'totalNoBackbagSendGiftMoney', title: '送礼非背包金币数', align: 'center', width: '5%' }, ], undefinedText: 0, cache: false, diff --git a/src/views/hall/ClanGoldFlowAdminView.vue b/src/views/hall/ClanGoldFlowAdminView.vue index e653327..8581c1d 100644 --- a/src/views/hall/ClanGoldFlowAdminView.vue +++ b/src/views/hall/ClanGoldFlowAdminView.vue @@ -128,14 +128,14 @@ export default { { field: 'clanElderErbanNo', title: '会长平台号', align: 'center', width: '5%' }, { field: 'clanElderNick', title: '会长昵称', align: 'center', width: '5%' }, { field: 'hallCount', title: '房间数', align: 'center', width: '10%' }, - { field: 'giftDiamonds', title: '公会收礼钻石数', align: 'center', width: '10%' }, - { field: 'hallDiamonds', title: '签约房钻石数', align: 'center', width: '10%' }, - { field: 'clanDiamonds', title: '非签约房钻石数', align: 'center', width: '10%' }, - { field: 'otherDiamonds', title: '其他钻石数', align: 'center', width: '10%' }, - { field: 'earnGolds', title: '公会收益金币数', align: 'center', width: '10%' }, - { field: 'receiveGolds', title: '成员收益金币数', align: 'center', width: '10%' }, - { field: 'exchangeGolds', title: '兑换金币数', align: 'center', width: '10%' }, - { field: 'remainGolds', title: '可结算金币数', align: 'center', width: '10%' }, + { field: 'giftDiamonds', title: '公会收礼金币数', align: 'center', width: '10%' }, + { field: 'hallDiamonds', title: '签约房金币数', align: 'center', width: '10%' }, + { field: 'clanDiamonds', title: '非签约房金币数', align: 'center', width: '10%' }, + { field: 'otherDiamonds', title: '其他金币数', align: 'center', width: '10%' }, + { field: 'earnGolds', title: '公会收益钻石数', align: 'center', width: '10%' }, + { field: 'receiveGolds', title: '成员收益钻石数', align: 'center', width: '10%' }, + { field: 'exchangeGolds', title: '兑换钻石数', align: 'center', width: '10%' }, + { field: 'remainGolds', title: '可结算钻石数', align: 'center', width: '10%' }, { field: 'tmp', title: '操作', diff --git a/src/views/headwear/HeadwearAdminView.vue b/src/views/headwear/HeadwearAdminView.vue index 03e22ef..a14d021 100644 --- a/src/views/headwear/HeadwearAdminView.vue +++ b/src/views/headwear/HeadwearAdminView.vue @@ -127,7 +127,7 @@

- +
@@ -138,7 +138,7 @@
- 金币 + 钻石
@@ -146,7 +146,7 @@
- 金币 + 钻石
@@ -154,7 +154,7 @@
- 金币 + 钻石
@@ -396,7 +396,7 @@ export default { }, { field: 'goldSale', - title: '金币购买', + title: '钻石购买', align: 'center', width: '3%', formatter: function (val, row, index) { @@ -424,9 +424,9 @@ export default { } } }, - { field: 'originalPrice', title: '原价(金币)', align: 'center', width: '5%' }, - { field: 'price', title: '购买价格(金币)', align: 'center', width: '5%' }, - { field: 'renewPrice', title: '续费价格(金币)', align: 'center', width: '5%' }, + { field: 'originalPrice', title: '原价(钻石)', align: 'center', width: '5%' }, + { field: 'price', title: '购买价格(钻石)', align: 'center', width: '5%' }, + { field: 'renewPrice', title: '续费价格(钻石)', align: 'center', width: '5%' }, { field: 'radishOriginalPrice', title: '原价(萝卜)', align: 'center', width: '5%' }, { field: 'radishPrice', title: '购买价格(萝卜)', align: 'center', width: '5%' }, { field: 'radishRenewPrice', title: '续费价格(萝卜)', align: 'center', width: '5%' }, @@ -717,7 +717,7 @@ export default { return; } if (goldSale == 1 && (!price || !renewPrice || !originalPrice)) { - $("#tipMsg").text("请填写完整金币价格"); + $("#tipMsg").text("请填写完整钻石价格"); $("#tipModal").modal('show'); return; } else if (radishSale == 1 && (!radishPrice || !radishRenewPrice || !radishOriginalPrice)) { diff --git a/src/views/headwear/HeadwearStatisticsView.vue b/src/views/headwear/HeadwearStatisticsView.vue index ad7f90a..c0c9d85 100644 --- a/src/views/headwear/HeadwearStatisticsView.vue +++ b/src/views/headwear/HeadwearStatisticsView.vue @@ -62,7 +62,7 @@ export default { { field: 'createTime', title: '日期', align: 'center', width: '5%' }, { field: 'headwearId', title: '头饰ID', align: 'center', width: '5%' }, { field: 'headwearName', title: '头饰名称', align: 'center', width: '5%' }, - { field: 'headwearPrice', title: '价格(金币)', align: 'center', width: '5%' }, + { field: 'headwearPrice', title: '价格(钻石)', align: 'center', width: '5%' }, { field: 'headwearRadishPrice', title: '价格(萝卜)', align: 'center', width: '5%' }, { field: 'headwearStatus', title: '头饰状态', align: 'center', width: '5%' }, { field: 'receivedHeadwearNum', title: '用户收到数量', align: 'center', width: '5%' }, diff --git a/src/views/linearlypool/PlatformPrizeDataAdminDayView.vue b/src/views/linearlypool/PlatformPrizeDataAdminDayView.vue index e647d2d..4e3c3a2 100644 --- a/src/views/linearlypool/PlatformPrizeDataAdminDayView.vue +++ b/src/views/linearlypool/PlatformPrizeDataAdminDayView.vue @@ -29,7 +29,7 @@

- 用户投入金币总数: + 用户投入钻石总数:

@@ -41,11 +41,11 @@

- 用户获得礼物中金币数: + 用户获得礼物中钻石数:

- 用户获得非礼物总金币数: + 用户获得非礼物总钻石数:

@@ -214,11 +214,11 @@ export default { } }, { field: 'countNum', title: '抽奖记录数', align: 'center', valign: 'middle', width: '10%' }, - { field: 'userTotalPay', title: '用户投入金币数', align: 'center', valign: 'middle', width: '10%' }, + { field: 'userTotalPay', title: '用户投入钻石数', align: 'center', valign: 'middle', width: '10%' }, { field: 'totalPlatformValue', title: '总平台价值', align: 'center', valign: 'middle', width: '10%' }, { field: 'totalActualValue', title: '总实际价值', align: 'center', valign: 'middle', width: '10%' }, - { field: 'totalGiftActualValue', title: '用户获得礼物金币数', align: 'center', valign: 'middle', width: '10%' }, - { field: 'totalNotGiftActualValue', title: '用户获得非礼物金币数', align: 'center', valign: 'middle', width: '10%' }, + { field: 'totalGiftActualValue', title: '用户获得礼物钻石数', align: 'center', valign: 'middle', width: '10%' }, + { field: 'totalNotGiftActualValue', title: '用户获得非礼物钻石数', align: 'center', valign: 'middle', width: '10%' }, { field: 'totalRealGiftActualValue', title: '用户获得实物', align: 'center', valign: 'middle', width: '10%' }, // {field: '', title: '操作', align: 'center', valign: 'middle', width: '10%',formatter: function(val,row,index) { // var key = row.createTime; diff --git a/src/views/linearlypool/PlatformPrizeDataAdminView.vue b/src/views/linearlypool/PlatformPrizeDataAdminView.vue index e1adf1f..94c9689 100644 --- a/src/views/linearlypool/PlatformPrizeDataAdminView.vue +++ b/src/views/linearlypool/PlatformPrizeDataAdminView.vue @@ -29,7 +29,7 @@

- 用户投入金币总数: + 用户投入钻石总数:

@@ -41,11 +41,11 @@

- 用户获得礼物中金币数: + 用户获得礼物中钻石数:

- 用户获得非礼物总金币数: + 用户获得非礼物总钻石数:

@@ -214,11 +214,11 @@ export default { } }, { field: 'countNum', title: '抽奖记录数', align: 'center', valign: 'middle', width: '10%' }, - { field: 'userTotalPay', title: '用户投入金币数', align: 'center', valign: 'middle', width: '10%' }, + { field: 'userTotalPay', title: '用户投入钻石数', align: 'center', valign: 'middle', width: '10%' }, { field: 'totalPlatformValue', title: '总平台价值', align: 'center', valign: 'middle', width: '10%' }, { field: 'totalActualValue', title: '总实际价值', align: 'center', valign: 'middle', width: '10%' }, - { field: 'totalGiftActualValue', title: '用户获得礼物金币数', align: 'center', valign: 'middle', width: '10%' }, - { field: 'totalNotGiftActualValue', title: '用户获得非礼物金币数', align: 'center', valign: 'middle', width: '10%' }, + { field: 'totalGiftActualValue', title: '用户获得礼物钻石数', align: 'center', valign: 'middle', width: '10%' }, + { field: 'totalNotGiftActualValue', title: '用户获得非礼物钻石数', align: 'center', valign: 'middle', width: '10%' }, { field: 'totalRealGiftActualValue', title: '用户获得实物', align: 'center', valign: 'middle', width: '10%' }, // {field: '', title: '操作', align: 'center', valign: 'middle', width: '10%',formatter: function(val,row,index) { // var key = row.createTime; diff --git a/src/views/linearlypool/PoolItemAdminView.vue b/src/views/linearlypool/PoolItemAdminView.vue index be716c9..4ab95f1 100644 --- a/src/views/linearlypool/PoolItemAdminView.vue +++ b/src/views/linearlypool/PoolItemAdminView.vue @@ -652,7 +652,7 @@ export default { $prizeType = '谢谢参与'; break; case '1': - $prizeType = '金币'; + $prizeType = '钻石'; break; case '2': $prizeType = '礼物'; diff --git a/src/views/lucky/LuckyGiftRangeView.vue b/src/views/lucky/LuckyGiftRangeView.vue index 24634a6..bda3164 100644 --- a/src/views/lucky/LuckyGiftRangeView.vue +++ b/src/views/lucky/LuckyGiftRangeView.vue @@ -50,7 +50,7 @@ @@ -138,15 +138,15 @@

- 奖励钻石数 + 奖励金币数
@@ -242,7 +242,7 @@ export default { gifts: [ { value: "1", - label: "钻石", + label: "金币", }, { value: "2", @@ -394,7 +394,7 @@ export default { }, //编辑 edi(val) { - this.dialog.value1 = val.rewardType == 1 ? "钻石" : "礼物"; + this.dialog.value1 = val.rewardType == 1 ? "金币" : "礼物"; this.dialog.gitChance = val.rewardRate; this.dialog.showChance = val.showRate; this.dialog.inventory = val.stockNum; @@ -437,7 +437,7 @@ export default { if (this.dialogBool) { if (this.dialog.value1 == 1) { obj = { - rewardType: this.dialog.value1 == "钻石" || this.dialog.value1 == 1 ? 1 : 2, + rewardType: this.dialog.value1 == "金币" || this.dialog.value1 == 1 ? 1 : 2, rewardValue: this.dialog.diamond, rewardRate: this.dialog.gitChance, showRate: this.dialog.showChance, @@ -447,7 +447,7 @@ export default { }; } else { obj = { - rewardType: this.dialog.value1 == "钻石" || this.dialog.value1 == 1 ? 1 : 2, + rewardType: this.dialog.value1 == "金币" || this.dialog.value1 == 1 ? 1 : 2, rewardValue: this.dialog.gifts2[this.dialog.value2].giftId, rewardRate: this.dialog.gitChance, showRate: this.dialog.showChance, @@ -462,9 +462,9 @@ export default { this.dialog.diamond = ""; this.dialog.value2 = 0; } else { - if (this.dialog.value1 == 1 || this.dialog.value1 == "钻石") { + if (this.dialog.value1 == 1 || this.dialog.value1 == "金币") { obj = { - rewardType: this.dialog.value1 == "钻石" ? 1 : 2, + rewardType: this.dialog.value1 == "金币" ? 1 : 2, rewardValue: this.dialog.diamond, rewardRate: this.dialog.gitChance, showRate: this.dialog.showChance, @@ -475,7 +475,7 @@ export default { }; } else { obj = { - rewardType: this.dialog.value1 == "钻石" ? 1 : 2, + rewardType: this.dialog.value1 == "金币" ? 1 : 2, rewardValue: this.dialog.gifts2[this.dialog.value2].giftId, rewardRate: this.dialog.gitChance, showRate: this.dialog.showChance, diff --git a/src/views/luckybag/LuckyBagStatsView.vue b/src/views/luckybag/LuckyBagStatsView.vue index 8b8a978..fada5b7 100644 --- a/src/views/luckybag/LuckyBagStatsView.vue +++ b/src/views/luckybag/LuckyBagStatsView.vue @@ -49,13 +49,13 @@
- 用户投入钻石总数: + 用户投入金币总数:
- 平台支出钻石总数: + 平台支出金币总数:
@@ -107,8 +107,8 @@ export default { { field: 'nick', title: '昵称', align: 'center', width: '5%' }, { field: 'partitionDesc', title: '地区', align: 'center', valign: 'middle' }, { field: 'num', title: '福袋购买数量', align: 'center', width: '5%' }, - { field: 'inputValue', title: '用户投入钻石数', align: 'center', width: '5%' }, - { field: 'outputValue', title: '平台支出钻石数', align: 'center', width: '5%' }, + { field: 'inputValue', title: '用户投入金币数', align: 'center', width: '5%' }, + { field: 'outputValue', title: '平台支出金币数', align: 'center', width: '5%' }, { field: 'ratio', title: '偏差比率', align: 'center', width: '5%', formatter: function (val, row, index) { diff --git a/src/views/match/HpjyGameManageView.vue b/src/views/match/HpjyGameManageView.vue index c568913..e1a5821 100644 --- a/src/views/match/HpjyGameManageView.vue +++ b/src/views/match/HpjyGameManageView.vue @@ -87,7 +87,7 @@ :
+ placeholder="报名需要支付的金币数">
diff --git a/src/views/newLuckyBag/NewLuckyBagDeviateRangeView.vue b/src/views/newLuckyBag/NewLuckyBagDeviateRangeView.vue index 99eef31..0d1c8ad 100644 --- a/src/views/newLuckyBag/NewLuckyBagDeviateRangeView.vue +++ b/src/views/newLuckyBag/NewLuckyBagDeviateRangeView.vue @@ -112,7 +112,7 @@ export default { if (giftName.startsWith('{') && giftName.endsWith('}')) { giftName = JSON.parse(giftName).zh; } - str += ''; + str += ''; } $('#luckyBag').html(str); //初始化table @@ -195,7 +195,7 @@ export default { selectGiftName = $("#luckyBag").find("option:selected").text(); console.info("selectGiftName: ", selectGiftName) console.info("selectGiftId: ", selectGiftId) - const str = ''; + const str = ''; $('#giftId').html(str); // 打开编辑弹窗 $('#deviateRangeId').val(''); @@ -235,7 +235,7 @@ export default { $("#deviateLowerLimit").val(data.lowerLimit); $("#deviateUpperLimit").val(data.upperLimit); $("#creator").val(data.creator); - const str = ''; + const str = ''; $('#giftId').html(str); // 打开编辑弹窗 $("#deviateRangeModal").modal('show'); diff --git a/src/views/newLuckyBag/NewLuckyBagDeviateView.vue b/src/views/newLuckyBag/NewLuckyBagDeviateView.vue index 90d8f67..7acd7e9 100644 --- a/src/views/newLuckyBag/NewLuckyBagDeviateView.vue +++ b/src/views/newLuckyBag/NewLuckyBagDeviateView.vue @@ -175,7 +175,7 @@ export default { if (giftName.startsWith('{') && giftName.endsWith('}')) { giftName = JSON.parse(giftName).zh; } - str += ''; + str += ''; } $('#luckyBag').html(str); $('#luckyBagId').html(str); @@ -311,7 +311,7 @@ export default { selectGiftName = $("#luckyBag").find("option:selected").text(); console.info("selectGiftName: ", selectGiftName) console.info("selectGiftId: ", selectGiftId) - const str = ''; + const str = ''; // $('#luckyBagId').html(str); $('#luckyBagId').html(str); selectRangeName = $("#deviateRange").find("option:selected").text() @@ -335,7 +335,7 @@ export default { selectGiftName = $("#luckyBag").find("option:selected").text(); console.info("selectGiftName: ", selectGiftName) console.info("selectGiftId: ", selectGiftId) - const str = ''; + const str = ''; $('#luckyBagId').html(str); selectRangeName = $("#deviateRange").find("option:selected").text() selectRangeId = $("#deviateRange").find("option:selected").val() diff --git a/src/views/noble/NobleAdminView.vue b/src/views/noble/NobleAdminView.vue index 16a5bc2..cc9c2b7 100644 --- a/src/views/noble/NobleAdminView.vue +++ b/src/views/noble/NobleAdminView.vue @@ -92,7 +92,7 @@ - 开通会打公帐而且会返金币 + 开通会打公帐而且会返钻石
@@ -124,9 +124,9 @@ import TableHelper from '@/utils/bootstrap-table-helper'; var tipsArr = [ - '开通会打公帐而且会返金币', - '续费会打公帐而且会返金币', - '体验不会打公帐也不会返还金币' + '开通会打公帐而且会返钻石', + '续费会打公帐而且会返钻石', + '体验不会打公帐也不会返还钻石' ]; export default { name: "NobleAdminView", @@ -222,7 +222,7 @@ export default { } }, { field: 'nobleName', title: '贵族名称', align: 'center', valign: 'middle', width: '10%' }, - { field: 'goldNum', title: '金币数', align: 'center', valign: 'middle', width: '10%' }, + { field: 'goldNum', title: '钻石数', align: 'center', valign: 'middle', width: '10%' }, { field: 'nobleDays', title: '贵族选择时间', align: 'center', valign: 'middle', width: '10%', formatter: function (val, row, index) { if (val) { @@ -234,7 +234,7 @@ export default { field: 'payType', title: '支付类型', align: 'center', valign: 'middle', formatter: function (val, row, index) { switch (val) { case 1: - return '金币开通'; + return '钻石开通'; case 2: return '用户付款开通'; diff --git a/src/views/prize/PrizeAdminView.vue b/src/views/prize/PrizeAdminView.vue index 17310c9..9c71988 100644 --- a/src/views/prize/PrizeAdminView.vue +++ b/src/views/prize/PrizeAdminView.vue @@ -54,7 +54,7 @@
- - - - + + + +
@@ -52,7 +52,7 @@ - + @@ -126,10 +126,10 @@ export default { { field: 'activityType', title: '活动类型', align: 'center', valign: 'middle', width: '10%', formatter: function (val, row, index) { - if (val == 12) { return "官方赠送金币" } - if (val == 17) { return "活动奖励金币" } - if (val == 20) { return "公款充值金币" } - if (val == 51) { return "官方金币消除" } + if (val == 12) { return "官方赠送钻石" } + if (val == 17) { return "活动奖励钻石" } + if (val == 20) { return "公款充值钻石" } + if (val == 51) { return "官方钻石消除" } return val; } }, diff --git a/src/views/record/OfficialRadishView.vue b/src/views/record/OfficialRadishView.vue index e0127e0..7ff667c 100644 --- a/src/views/record/OfficialRadishView.vue +++ b/src/views/record/OfficialRadishView.vue @@ -44,7 +44,7 @@
-
(每个用户赠送次数不能大于3,并且被赠送用户的金币余额不能大于250)
+
(每个用户赠送次数不能大于3,并且被赠送用户的钻石余额不能大于250)
@@ -66,14 +66,14 @@ 头像 平台号 昵称 - 金币 + 钻石 -->
- + @@ -184,7 +184,7 @@ function initUserInfoTable() { }, { field: 'erbanNo', title: '平台号', align: 'center', width: '5%', valign: 'middle' }, { field: 'nick', title: '昵称', align: 'center', width: '5%', valign: 'middle' }, - { field: 'goldNum', title: '金币', align: 'center', width: '5%', valign: 'middle' }, + { field: 'goldNum', title: '钻石', align: 'center', width: '5%', valign: 'middle' }, { field: 'radishNum', title: '萝卜', align: 'center', width: '5%', valign: 'middle' }, ], cache: false, diff --git a/src/views/record/OfficicalGoldRecordView.vue b/src/views/record/OfficicalGoldRecordView.vue index dc4be62..8d6722a 100644 --- a/src/views/record/OfficicalGoldRecordView.vue +++ b/src/views/record/OfficicalGoldRecordView.vue @@ -23,8 +23,8 @@ diff --git a/src/views/record/OfficicalGoldView.vue b/src/views/record/OfficicalGoldView.vue index 79b3480..091e9fa 100644 --- a/src/views/record/OfficicalGoldView.vue +++ b/src/views/record/OfficicalGoldView.vue @@ -45,13 +45,13 @@
@@ -85,14 +85,14 @@ 头像 耳伴号 昵称 - 钻石 + 金币 -->
- + @@ -212,7 +212,7 @@ export default { return; } if (actualGold != parseInt(actualAmount * 1000)) { - $("#tipMsg").text("赠送钻石与充值金额兑换比例不正确!"); + $("#tipMsg").text("赠送金币与充值金额兑换比例不正确!"); $("#tipModal").modal('show'); return; } @@ -302,12 +302,12 @@ export default { var maxGold = parseInt(actualAmount * 1200); var actualGold = parseInt(num); if (actualGold < minGold || actualGold > maxGold) { - $("#tipMsg").text("赠送钻石与充值金额兑换比例不正确!"); + $("#tipMsg").text("赠送金币与充值金额兑换比例不正确!"); $("#tipModal").modal('show'); return; } if (actualGold != parseInt(actualAmount * 1000)) { - $("#tipMsg").text("赠送钻石与充值金额兑换比例不正确!"); + $("#tipMsg").text("赠送金币与充值金额兑换比例不正确!"); $("#tipModal").modal('show'); return; } @@ -371,9 +371,9 @@ function initUserInfoTable() { }, { field: 'erbanNo', title: '耳伴号', align: 'center', width: '5%', valign: 'middle' }, { field: 'nick', title: '昵称', align: 'center', width: '5%', valign: 'middle' }, - { field: 'goldNum', title: '金币', align: 'center', width: '5%', valign: 'middle' }, + { field: 'goldNum', title: '钻石', align: 'center', width: '5%', valign: 'middle' }, { field: 'radishNum', title: '水晶', align: 'center', width: '5%', valign: 'middle' }, - { field: 'diamondsNum', title: '钻石', align: 'center', width: '5%', valign: 'middle' } + { field: 'diamondsNum', title: '金币', align: 'center', width: '5%', valign: 'middle' } ], cache: false, striped: true, diff --git a/src/views/record/OfficicalKeyView.vue b/src/views/record/OfficicalKeyView.vue index 7782b78..5d1fcfa 100644 --- a/src/views/record/OfficicalKeyView.vue +++ b/src/views/record/OfficicalKeyView.vue @@ -64,14 +64,14 @@ 头像 平台号 昵称 - 金币 + 钻石 --> - + diff --git a/src/views/redenvelope/RedEnvelopeView.vue b/src/views/redenvelope/RedEnvelopeView.vue index a7924b1..010aaf0 100644 --- a/src/views/redenvelope/RedEnvelopeView.vue +++ b/src/views/redenvelope/RedEnvelopeView.vue @@ -125,11 +125,11 @@ export default { return redEnvelopeStatusMap[val] } }, - { field: 'originalAmount', title: '钻石数量', align: 'center', width: '5%' }, + { field: 'originalAmount', title: '金币数量', align: 'center', width: '5%' }, { field: 'commissionAmount', title: '手续费', align: 'center', width: '5%' }, - { field: 'getAmount', title: '领取钻石', align: 'center', width: '5%' }, + { field: 'getAmount', title: '领取金币', align: 'center', width: '5%' }, { field: 'getNumDesc', title: '领取数量', align: 'center', width: '5%' }, - { field: 'backAmount', title: '退还钻石', align: 'center', width: '5%' }, + { field: 'backAmount', title: '退还金币', align: 'center', width: '5%' }, { field: 'roomTitle', title: '房间标题', align: 'center', width: '10%' }, { field: 'roomErbanNo', title: '房间平台号', align: 'center', width: '5%' }, { diff --git a/src/views/room/HomePermitView.vue b/src/views/room/HomePermitView.vue index 2938301..560f2fe 100644 --- a/src/views/room/HomePermitView.vue +++ b/src/views/room/HomePermitView.vue @@ -84,15 +84,15 @@ export default { dataType: "json", success: function (json) { if (json.code == 200) { - $("#tipMsg").text("赠送金币成功"); + $("#tipMsg").text("赠送钻石成功"); $("#tipModal").modal('show'); } else { - $("#tipMsg").text("赠送金币出错,errorCode: " + json.code); + $("#tipMsg").text("赠送钻石出错,errorCode: " + json.code); $("#tipModal").modal('show'); } }, error: function (json) { - $("#tipMsg").text("赠送金币出错,网络出错"); + $("#tipMsg").text("赠送钻石出错,网络出错"); $("#tipModal").modal('show'); } }); diff --git a/src/views/room/HomeRecommView.vue b/src/views/room/HomeRecommView.vue index b4ef49b..2b82e28 100644 --- a/src/views/room/HomeRecommView.vue +++ b/src/views/room/HomeRecommView.vue @@ -149,15 +149,15 @@ export default { dataType: "json", success: function (json) { if (json.code == 200) { - $("#tipMsg").text("赠送金币成功"); + $("#tipMsg").text("赠送钻石成功"); $("#tipModal").modal('show'); } else { - $("#tipMsg").text("赠送金币出错,errorCode: " + json.code); + $("#tipMsg").text("赠送钻石出错,errorCode: " + json.code); $("#tipModal").modal('show'); } }, error: function (json) { - $("#tipMsg").text("赠送金币出错,网络出错"); + $("#tipMsg").text("赠送钻石出错,网络出错"); $("#tipModal").modal('show'); } }); diff --git a/src/views/room/RoomSerialView.vue b/src/views/room/RoomSerialView.vue index c066f3d..b1b09ef 100644 --- a/src/views/room/RoomSerialView.vue +++ b/src/views/room/RoomSerialView.vue @@ -83,11 +83,11 @@
- 收礼总钻石: + 收礼总金币:
- 房间抽成钻石数: + 房间抽成金币数:
@@ -262,10 +262,10 @@ export default { { field: "num", title: "序号", align: "center", width: "5%" }, { field: "erbanNo", title: "平台号", align: "center", width: "5%" }, { field: "nick", title: "昵称", align: "center", width: "5%" }, - { field: "amount", title: "收礼总钻石", align: "center", width: "5%" }, + { field: "amount", title: "收礼总金币", align: "center", width: "5%" }, { field: "cutDiamonds", - title: "房间抽成钻石", + title: "房间抽成金币", align: "center", width: "5%", }, diff --git a/src/views/seekelfin/SeekElfinUserRecordAdminView.vue b/src/views/seekelfin/SeekElfinUserRecordAdminView.vue index 2804fa3..4d54a25 100644 --- a/src/views/seekelfin/SeekElfinUserRecordAdminView.vue +++ b/src/views/seekelfin/SeekElfinUserRecordAdminView.vue @@ -16,7 +16,7 @@
- 当前库存 钻石 + 当前库存 金币
@@ -58,7 +58,7 @@ - +
-- @@ -62,10 +62,10 @@ export default { { field: 'erbanNo', title: '用户ID', align: 'center', width: '5%', valign: 'middle' }, { field: 'nick', title: '用户昵称', align: 'center', width: '15%', valign: 'middle' }, { field: 'drawNum', title: '参与瓜分次数', align: 'center', valign: 'middle', width: '10%' }, - { field: 'drawGoldNum', title: '瓜分金币总额', align: 'center', valign: 'middle', width: '10%' }, + { field: 'drawGoldNum', title: '瓜分钻石总额', align: 'center', valign: 'middle', width: '10%' }, { field: 'signNum', title: '签到总天数', align: 'center', valign: 'middle', width: '10%' }, { field: 'shareNum', title: '签到分享总次数', align: 'center', width: '5%', valign: 'middle' }, - { field: 'chargeNum', title: '金币充值总额', align: 'center', valign: 'middle', width: '10%' }, + { field: 'chargeNum', title: '钻石充值总额', align: 'center', valign: 'middle', width: '10%' }, { field: 'whiteNum', title: '历史白名单次数', align: 'center', width: '5%', valign: 'middle' }, { field: 'whiteStatus', title: '白名单状态', align: 'center', width: '15%', valign: 'middle', diff --git a/src/views/sign/GoldPrizeAdminView.vue b/src/views/sign/GoldPrizeAdminView.vue index 0667a8c..c9580c2 100644 --- a/src/views/sign/GoldPrizeAdminView.vue +++ b/src/views/sign/GoldPrizeAdminView.vue @@ -94,7 +94,7 @@
金币 + style="float: left;width: 90%;" name="goldNum" id="goldNum" placeholder="请输入钻石数量">钻石
@@ -180,7 +180,7 @@ export default { { field: 'goldNum', title: '奖品', align: 'center', width: '5%', valign: 'middle', formatter: function (val, row, index) { - return val + "金币"; + return val + "钻石"; } }, diff --git a/src/views/sign/PrizeGoldPoolAdminView.vue b/src/views/sign/PrizeGoldPoolAdminView.vue index 37b1e9d..a3c1033 100644 --- a/src/views/sign/PrizeGoldPoolAdminView.vue +++ b/src/views/sign/PrizeGoldPoolAdminView.vue @@ -17,9 +17,9 @@ type="button" goldType="2" title="实际奖池默认金额">编辑
- 展示奖池累计金币值: + 展示奖池累计钻石值: 0 + type="button" goldType="3" title="展示奖池累计钻石值">编辑
@@ -51,7 +51,7 @@ 0
- 总期望值(金币): + 总期望值(钻石): 0
@@ -226,7 +226,7 @@ export default { { field: 'goldNum', title: '奖品', align: 'center', width: '5%', valign: 'middle', formatter: function (val, row, index) { - return val + "金币"; + return val + "钻石"; } }, @@ -365,7 +365,7 @@ export default { } $opt.attr('value', res.data[i].id); $opt.attr("class", res.data[i].level) - $opt.html(res.data[i].goldNum + "金币"); + $opt.html(res.data[i].goldNum + "钻石"); } if (j == 0) { $('#goldPrize').val(""); diff --git a/src/views/users/BillRecordAdminView.vue b/src/views/users/BillRecordAdminView.vue index fdf990c..12d8be7 100644 --- a/src/views/users/BillRecordAdminView.vue +++ b/src/views/users/BillRecordAdminView.vue @@ -92,7 +92,7 @@ export default { { field: 'roomErbanNo', title: '房主平台号', align: 'center', valign: 'middle', width: '10%' }, { field: 'giftName', title: '礼物名称', align: 'center', valign: 'middle', width: '5%' }, { field: 'giftNum', title: '礼物数量', align: 'center', valign: 'middle', width: '5%' }, - { field: 'amount', title: '钻石/水晶/金币', align: 'center', valign: 'middle', width: '5%' }, + { field: 'amount', title: '金币/水晶/钻石', align: 'center', valign: 'middle', width: '5%' }, { field: 'country', title: '国家/地区', align: 'center', valign: 'middle', width: '5%' }, { field: 'localCurrencyCode', title: '本地货币数', align: 'center', valign: 'middle', width: '5%' }, { field: 'localAmount', title: '货币数', align: 'center', valign: 'middle', width: '5%' }, diff --git a/src/views/users/ChargeRecordCountryStatisticsView.vue b/src/views/users/ChargeRecordCountryStatisticsView.vue index 520bbf5..0c7fafe 100644 --- a/src/views/users/ChargeRecordCountryStatisticsView.vue +++ b/src/views/users/ChargeRecordCountryStatisticsView.vue @@ -83,10 +83,10 @@ export default { $('#table').bootstrapTable({ columns: [ { field: 'country', title: '国家/地区', align: 'center', width: '25%' }, - { field: 'googleGold', title: 'google充值钻石', align: 'center', width: '25%' }, - { field: 'payermaxGold', title: 'payermax充值钻石', align: 'center', width: '25%' }, - { field: 'iosGold', title: 'ios充值钻石', align: 'center', width: '25%' }, - { field: 'totalGold', title: '总充值钻石', align: 'center', width: '25%' }, + { field: 'googleGold', title: 'google充值金币', align: 'center', width: '25%' }, + { field: 'payermaxGold', title: 'payermax充值金币', align: 'center', width: '25%' }, + { field: 'iosGold', title: 'ios充值金币', align: 'center', width: '25%' }, + { field: 'totalGold', title: '总充值金币', align: 'center', width: '25%' }, ], cache: false, striped: true, diff --git a/src/views/users/ChargeRecordManualAdminView.vue b/src/views/users/ChargeRecordManualAdminView.vue index 99ed55e..2a15017 100644 --- a/src/views/users/ChargeRecordManualAdminView.vue +++ b/src/views/users/ChargeRecordManualAdminView.vue @@ -106,7 +106,7 @@
-
- 总转增钻石: + 总转增金币:
@@ -94,7 +94,7 @@
- 总转增钻石: + 总转增金币:
@@ -162,14 +162,14 @@ export default { field: 'type', title: '转赠类型', align: 'center', width: '5%', formatter: function (val, row, index) { if (row.type == 0) { - return '钻石' + return '金币' } else { return '背包礼物'; } } }, { - field: 'diamondNum', title: '转赠钻石数', align: 'center', width: '5%', + field: 'diamondNum', title: '转赠金币数', align: 'center', width: '5%', formatter: function (val, row, index) { if (row.type == 1) { return '-' @@ -226,7 +226,7 @@ export default { // {field: 'erbanNo', title: '平台ID', align: 'center', width: '5%'}, // {field: 'nick', title: '昵称', align: 'center', width: '5%'}, - // {field: 'totalSendDiamondNum', title: '总转增钻石数', align: 'center', width: '5%'}, + // {field: 'totalSendDiamondNum', title: '总转增金币数', align: 'center', width: '5%'}, /*{ field: 'uid', title: '操作', @@ -323,7 +323,7 @@ export default { columns: [ { field: 'erbanNo', title: '转赠人ID', align: 'center', width: '5%' }, { field: 'nick', title: '转赠人昵称', align: 'center', width: '5%' }, - { field: 'diamondNum', title: '转赠钻石数', align: 'center', width: '5%' }, + { field: 'diamondNum', title: '转赠金币数', align: 'center', width: '5%' }, { field: 'rate', title: '手续费', align: 'center', width: '5%', formatter: function (val, row, index) { diff --git a/src/views/users/GiftAdminView.vue b/src/views/users/GiftAdminView.vue index 68a2b78..63bbdb4 100644 --- a/src/views/users/GiftAdminView.vue +++ b/src/views/users/GiftAdminView.vue @@ -30,8 +30,8 @@ 受赠人uid - 受赠人金币 受赠人钻石 + 受赠人金币 操作时间 diff --git a/src/views/users/GiftManageView.vue b/src/views/users/GiftManageView.vue index 8fee98b..f2c78e2 100644 --- a/src/views/users/GiftManageView.vue +++ b/src/views/users/GiftManageView.vue @@ -43,7 +43,7 @@
@@ -159,7 +159,7 @@
@@ -686,7 +686,7 @@ export default { width: '10%', formatter: function (val, row, index) { if (val == 1) { - return '金币礼物'; + return '钻石礼物'; } else if (val == 2) { return '萝卜礼物'; } else if (val == 3) { diff --git a/src/views/users/GiftStatisticsView.vue b/src/views/users/GiftStatisticsView.vue index 0c04109..dbe47e0 100644 --- a/src/views/users/GiftStatisticsView.vue +++ b/src/views/users/GiftStatisticsView.vue @@ -65,7 +65,7 @@ export default { { field: 'createTime', title: '日期', align: 'center', width: '5%' }, { field: 'giftId', title: '礼物ID', align: 'center', width: '5%' }, { field: 'giftName', title: '礼物名称', align: 'center', width: '5%' }, - { field: 'totalNum', title: '礼物金额(金币)', align: 'center', width: '5%' }, + { field: 'totalNum', title: '礼物金额(钻石)', align: 'center', width: '5%' }, { field: 'giftStatus', title: '礼物状态', align: 'center', width: '5%' }, { field: 'receivedGiftNum', title: '收到礼物数量', align: 'center', width: '5%' }, ], diff --git a/src/views/users/InviteCodeStatsView.vue b/src/views/users/InviteCodeStatsView.vue index 6ca19fa..465b070 100644 --- a/src/views/users/InviteCodeStatsView.vue +++ b/src/views/users/InviteCodeStatsView.vue @@ -64,7 +64,7 @@ export default { { field: 'inviteChargeTime', title: '邀请充值次数', align: 'center', width: '5%' }, { field: 'inviteChargeAmount', title: '邀请充值金额(美元)', align: 'center', valign: 'middle', width: '5%' }, { field: 'inviteGiftSendUserAmount', title: '邀请送礼人数', align: 'center', valign: 'middle', width: '5%' }, - { field: 'inviteGiftSendAmount', title: '邀请送礼钻石数', align: 'center', valign: 'middle', width: '5%' }, + { field: 'inviteGiftSendAmount', title: '邀请送礼金币数', align: 'center', valign: 'middle', width: '5%' }, ], undefinedText: "", cache: false, diff --git a/src/views/users/MagicManageView.vue b/src/views/users/MagicManageView.vue index c8a0868..511b948 100644 --- a/src/views/users/MagicManageView.vue +++ b/src/views/users/MagicManageView.vue @@ -88,7 +88,7 @@
- +
diff --git a/src/views/users/UserBackpackAdminView.vue b/src/views/users/UserBackpackAdminView.vue index 302f556..737a8ed 100644 --- a/src/views/users/UserBackpackAdminView.vue +++ b/src/views/users/UserBackpackAdminView.vue @@ -58,7 +58,7 @@ export default { return '特殊礼物'; } if (val == 1) { - return '金币礼物'; + return '钻石礼物'; } else if (val == 2) { return '萝卜礼物'; } else { diff --git a/src/views/users/UserCancelView.vue b/src/views/users/UserCancelView.vue index d7cd5b3..fefe2cb 100644 --- a/src/views/users/UserCancelView.vue +++ b/src/views/users/UserCancelView.vue @@ -175,8 +175,8 @@ export default { } },*/ - { field: 'userPurseVo.diamondNum', title: '钻石数', align: 'center', valign: 'middle' }, - { field: 'userPurseVo.goldNum', title: '金币数', align: 'center', valign: 'middle' }, + { field: 'userPurseVo.diamondNum', title: '金币数', align: 'center', valign: 'middle' }, + { field: 'userPurseVo.goldNum', title: '钻石数', align: 'center', valign: 'middle' }, // {field:'account.phone',title:'手机电话',align:'center',valign:'middle'}, { field: 'birth', diff --git a/src/views/users/UserCheckAdminBaseView.vue b/src/views/users/UserCheckAdminBaseView.vue index 6cac184..63deee4 100644 --- a/src/views/users/UserCheckAdminBaseView.vue +++ b/src/views/users/UserCheckAdminBaseView.vue @@ -222,8 +222,8 @@ export default { } }, - { field: 'userPurseVo.diamonds', title: '钻石数', align: 'center', valign: 'middle' }, - { field: 'userPurseVo.golds', title: '金币数', align: 'center', valign: 'middle' }, + { field: 'userPurseVo.diamonds', title: '金币数', align: 'center', valign: 'middle' }, + { field: 'userPurseVo.golds', title: '钻石数', align: 'center', valign: 'middle' }, // {field:'account.phone',title:'手机电话',align:'center',valign:'middle'}, { field: 'users.birth', diff --git a/src/views/users/UserCheckAdminView.vue b/src/views/users/UserCheckAdminView.vue index a68e861..f345424 100644 --- a/src/views/users/UserCheckAdminView.vue +++ b/src/views/users/UserCheckAdminView.vue @@ -54,9 +54,9 @@
自我描述:
-
钻石数:
+
金币数:
水晶数:
-
金币数:
+
钻石数:
关注数:
@@ -385,8 +385,8 @@ export default { } }, - { field: 'userPurseVo.diamonds', title: '钻石数', align: 'center', valign: 'middle' }, - { field: 'userPurseVo.golds', title: '金币数', align: 'center', valign: 'middle' }, + { field: 'userPurseVo.diamonds', title: '金币数', align: 'center', valign: 'middle' }, + { field: 'userPurseVo.golds', title: '钻石数', align: 'center', valign: 'middle' }, // {field:'account.phone',title:'手机电话',align:'center',valign:'middle'}, { field: 'users.birth', diff --git a/src/views/users/UserDrawProdAdminView.vue b/src/views/users/UserDrawProdAdminView.vue index fcdcabb..804ec87 100644 --- a/src/views/users/UserDrawProdAdminView.vue +++ b/src/views/users/UserDrawProdAdminView.vue @@ -62,7 +62,7 @@
@@ -169,7 +169,7 @@ export default { { field: 'prodType', title: '奖品类型', align: 'center', width: '10%', formatter: function (val, row, index) { if (val == 1) { - return "金币"; + return "钻石"; } else if (val == 2) { return "靓号"; } else if (val == 3) { diff --git a/src/views/users/UserPurseAdminView.vue b/src/views/users/UserPurseAdminView.vue index e22a4d7..1bf59c1 100644 --- a/src/views/users/UserPurseAdminView.vue +++ b/src/views/users/UserPurseAdminView.vue @@ -67,9 +67,9 @@ export default { { field: 'uid', title: '用户uid', align: 'center', valign: 'middle', width: '8%' }, { field: 'erbanNo', title: '平台号', align: 'center', valign: 'middle', width: '8%' }, { field: 'nick', title: '昵称', align: 'center', valign: 'middle', width: '10%' }, - { field: 'diamonds', title: '钻石', align: 'center', valign: 'middle', width: '8%' }, + { field: 'diamonds', title: '金币', align: 'center', valign: 'middle', width: '8%' }, { field: 'crystals', title: '水晶', align: 'center', valign: 'middle', width: '8%' }, - { field: 'golds', title: '金币', align: 'center', valign: 'middle', width: '8%' }, + { field: 'golds', title: '钻石', align: 'center', valign: 'middle', width: '8%' }, { field: 'firstCharge', title: '首充资格', align: 'center', valign: 'middle', width: '2%', formatter: function (val, row, index) { if (val) { diff --git a/src/views/vip/VipManageView.vue b/src/views/vip/VipManageView.vue index befd6ab..b536c50 100644 --- a/src/views/vip/VipManageView.vue +++ b/src/views/vip/VipManageView.vue @@ -395,7 +395,7 @@ export default { }, { field: 'returnProfits', - title: '返利日期+返利钻石数量', + title: '返利日期+返利金币数量', align: 'center', width: '5%', formatter: function (val, row) { @@ -619,7 +619,7 @@ export default { } else { html += '第 天,'; } - html += '返利 钻石
'; + html += '返利 金币
'; $span.append(html); $div.append($span); } @@ -640,7 +640,7 @@ export default { } else { html += '第 天,'; } - html += '返利 钻石
'; + html += '返利 金币
'; $span.html(html); $div.append($span); $('#addSize').val(++i); diff --git a/src/views/withdraw/ClanGoldSettlementRecordView.vue b/src/views/withdraw/ClanGoldSettlementRecordView.vue index 9e3b409..6ad3dc0 100644 --- a/src/views/withdraw/ClanGoldSettlementRecordView.vue +++ b/src/views/withdraw/ClanGoldSettlementRecordView.vue @@ -97,8 +97,8 @@ export default { columns: [ { field: 'erbanNo', title: '会长平台号', align: 'center', width: '5%' }, { field: 'nick', title: '公会名', align: 'center', width: '5%' }, - { field: 'exchangeGolds', title: '已累计兑换金币', align: 'center', width: '5%' }, - { field: 'settlementGolds', title: '公会成员结算金币', align: 'center', width: '5%' }, + { field: 'exchangeGolds', title: '已累计兑换钻石', align: 'center', width: '5%' }, + { field: 'settlementGolds', title: '公会成员结算钻石', align: 'center', width: '5%' }, { field: 'createTime', title: '申请时间', align: 'center', width: '5%' }, { field: 'handle', @@ -173,8 +173,8 @@ export default { columns: [ { field: 'erbanNo', title: '平台号', align: 'center', width: '5%' }, { field: 'nick', title: '昵称', align: 'center', width: '5%' }, - { field: 'exchangeGolds', title: '已累计兑换金币', align: 'center', width: '5%' }, - { field: 'settlementGolds', title: '结算金币', align: 'center', width: '5%' }, + { field: 'exchangeGolds', title: '已累计兑换钻石', align: 'center', width: '5%' }, + { field: 'settlementGolds', title: '结算钻石', align: 'center', width: '5%' }, { field: 'createTime', title: '结算时间', align: 'center', width: '5%' } ], cache: false, diff --git a/src/views/withdraw/WithdrawApplyView.vue b/src/views/withdraw/WithdrawApplyView.vue index 2b9cd68..61d9bb7 100644 --- a/src/views/withdraw/WithdrawApplyView.vue +++ b/src/views/withdraw/WithdrawApplyView.vue @@ -165,7 +165,7 @@
- +
@@ -310,7 +310,7 @@
- +
@@ -407,7 +407,7 @@
- +
@@ -441,10 +441,10 @@
@@ -512,7 +512,7 @@ export default { return value; } }, - { field: 'goldNum', title: '核销金币', align: 'center', width: '5%' }, + { field: 'goldNum', title: '核销钻石', align: 'center', width: '5%' }, { field: 'id', title: '操作', @@ -765,7 +765,7 @@ export default { var id = currentData.id; var erbanNo = currentData.erbanNo; var goldNum = currentData.goldNum; - var rejectContent = '驳回后将返回' + erbanNo + '用户' + goldNum + '金币
'; + var rejectContent = '驳回后将返回' + erbanNo + '用户' + goldNum + '钻石
'; $('#recordIdStr').val(id); $('#rejectContent').html(rejectContent); $("#rejectModal").modal('show'); @@ -824,7 +824,7 @@ export default { var erBanNo = rows[i]['erbanNo']; var goldNum = rows[i]['goldNum']; recordIdStr += id; - rejectContent += '驳回后将返回' + erBanNo + '用户' + goldNum + '金币
'; + rejectContent += '驳回后将返回' + erBanNo + '用户' + goldNum + '钻石
'; if (i != len - 1) { recordIdStr += ','; } @@ -834,7 +834,7 @@ export default { $("#rejectModal").modal('show'); }); - //驳回不返还金币 + //驳回不返还钻石 $("#rejectAndNoReturn").on('click', function () { var recordIdStr = $('#recordIdStr').val(); const isSecretary = confirm('是否发送小秘书通知') ? 1 : 0; @@ -860,7 +860,7 @@ export default { }); }); - //驳回且返还金币 + //驳回且返还钻石 $("#rejectAndReturn").on('click', function () { var recordIdStr = $('#recordIdStr').val(); const isSecretary = confirm('是否发送小秘书通知') ? 1 : 0; diff --git a/src/views/withdraw/WithdrawConfigView.vue b/src/views/withdraw/WithdrawConfigView.vue index c4b3664..9bb0900 100644 --- a/src/views/withdraw/WithdrawConfigView.vue +++ b/src/views/withdraw/WithdrawConfigView.vue @@ -27,7 +27,7 @@
- +
@@ -205,7 +205,7 @@ export default { $('#table').bootstrapTable('destroy'); $('#table').bootstrapTable({ columns: [ - { field: 'minValue', title: '最小提现金币', align: 'center', width: '5%' }, + { field: 'minValue', title: '最小提现钻石', align: 'center', width: '5%' }, { field: 'weekMaxValue', title: '周提现上限', align: 'center', width: '5%' }, { field: 'weekLimitCount', title: '周提现次数', align: 'center', width: '5%' }, { diff --git a/src/views/withdraw/WithdrawUserLimitView.vue b/src/views/withdraw/WithdrawUserLimitView.vue index 647639d..6462a13 100644 --- a/src/views/withdraw/WithdrawUserLimitView.vue +++ b/src/views/withdraw/WithdrawUserLimitView.vue @@ -20,8 +20,8 @@
@@ -77,7 +77,7 @@
提现
- 兑换钻石
+ 兑换金币
@@ -125,7 +125,7 @@ export default { { field: 'roomErBanNo', title: '所属房间ID', align: 'center', width: '5%' }, { field: 'hallRoomName', title: '所属公会', align: 'center', width: '5%' }, { field: 'hallErBanNo', title: '所属公会ID', align: 'center', width: '5%' }, - { field: 'golds', title: '当前账户金币余额', align: 'center', width: '5%' }, + { field: 'golds', title: '当前账户钻石余额', align: 'center', width: '5%' }, { field: 'limitContent', title: '限制内容', @@ -136,7 +136,7 @@ export default { var isDiamond = row.isDiamond; var isCash = row.isCash; if (isDiamond) { - value += '兑换钻石
'; + value += '兑换金币
'; } if (isCash) { value += '提现';