修改金币总和字段-公会

This commit is contained in:
dragon
2024-08-01 20:18:03 +08:00
parent 5725eaa780
commit 261f25446c
3 changed files with 14 additions and 9 deletions

View File

@@ -127,13 +127,15 @@ function familyWage(month) {
// 处理头部数值
$('.totalWage').text(res.data.totalWage);
// $('.totalWage').text(unitProcessingAr(res.data.totalWage, 0));
$('.header .datas1 p b').text(unitProcessingAr(res.data.goldWage, 1))
$('.header .datas2 p b').text(unitProcessingAr(res.data.agentWage, 1))
// $('.header .datas1 p b').text(unitProcessingAr(res.data.goldWage, 1))
$('.header .datas1 p b').text(res.data.goldWage)
// $('.header .datas2 p b').text(unitProcessingAr(res.data.agentWage, 1))
$('.header .datas2 p b').text(res.data.agentWage)
$('.header .datas3 p b').text(unitProcessingAr(res.data.diamondRemain, 1))
$('.box .h3 b').text(res.data.totalMemberGoldWage)
var strLeft = '';
var strRight = '';
res.data.memberWageList.forEach((res, i) => {
console.log(res);
strLeft += `
<div class="fist ${i > 0 ? 'fistAct' : ''}">
<div class="title">${localLang.memberFlow2.text10}</div>

View File

@@ -126,9 +126,11 @@ function familyMemberWage(month) {
// 处理头部数值
$('.totalWage').text(res.data.goldWage);
// $('.totalWage').text(unitProcessingAr(res.data.goldIncome, 0));
$('.header .datas1 p b').text(unitProcessingAr(res.data.goldIncome, 1))
$('.header .datas2 p b').text(unitProcessingAr(res.data.micVaildDays, 1))
$('.header .datas3 p b').text(unitProcessingAr(res.data.diamondRemain, 1))
// $('.header .datas1 p b').text(unitProcessingAr(res.data.goldIncome, 1))
// $('.header .datas2 p b').text(unitProcessingAr(res.data.micVaildDays, 1))
$('.header .datas1 p b').text(res.data.goldIncome)
// $('.header .datas2 p b').text(unitProcessingAr(res.data.micVaildDays, 1))
$('.header .datas3 p b').text(res.data.diamondRemain)
$('.header .user img').attr('src', urlData.avatar)
$('.header .user p').text(urlData.nick)
$('.header .user b').text("ID:" + urlData.erbanNo)

View File

@@ -126,13 +126,14 @@ function familyMemberWage(month) {
// 处理头部数值
$('.totalWage').text(res.data.goldWage);
// $('.totalWage').text(unitProcessingAr(res.data.goldIncome, 0));
$('.header .datas1 p b').text(unitProcessingAr(res.data.goldIncome, 1))
$('.header .datas2 p b').text(unitProcessingAr(res.data.micVaildDays, 1))
// $('.header .datas1 p b').text(unitProcessingAr(res.data.goldIncome, 1))
$('.header .datas1 p b').text(res.data.goldIncome)
// $('.header .datas2 p b').text(unitProcessingAr(res.data.micVaildDays, 1))
$('.header .datas2 p b').text(res.data.micVaildDays)
$('.header .datas3 p b').text(unitProcessingAr(res.data.diamondRemain, 1))
$('.header .user img').attr('src', res.data.avatar)
$('.header .user p').text(res.data.nick)
$('.header .user b').text("ID:" + res.data.erbanNo)
$('.box .h3 b').text(res.data.totalGoldIncome)
var strLeft = '';
var strRight = '';
res.data.dayWageList.forEach((res, i) => {