diff --git a/view/molistar/modules/guild-ar/css/personal.css b/view/molistar/modules/guild-ar/css/personal.css index 71beacf..61f238b 100644 --- a/view/molistar/modules/guild-ar/css/personal.css +++ b/view/molistar/modules/guild-ar/css/personal.css @@ -441,6 +441,10 @@ body { font-weight: 600; } +.page2 .agentSalaryInfo .top b img { + float: right; +} + .page2 .agentSalaryInfo .bottom { width: 100%; height: 1.76rem; diff --git a/view/molistar/modules/guild-ar/css/personal.scss b/view/molistar/modules/guild-ar/css/personal.scss index 54ff087..46f7f03 100644 --- a/view/molistar/modules/guild-ar/css/personal.scss +++ b/view/molistar/modules/guild-ar/css/personal.scss @@ -445,6 +445,9 @@ body { color: #313131; font-size: px2rem(36); font-weight: 600; + img{ + float: right; + } } } diff --git a/view/molistar/modules/guild-ar/js/personal.js b/view/molistar/modules/guild-ar/js/personal.js index 53a85fd..42067ca 100644 --- a/view/molistar/modules/guild-ar/js/personal.js +++ b/view/molistar/modules/guild-ar/js/personal.js @@ -98,7 +98,7 @@ function getAccount() { var me = res.data.person.me; $('.page1 .my .tx').attr('src', me.avatar); $('.page1 .my .user p').text(me.nick); - $('.page1 .my .user b').text('ID:'+me.erbanNo); + $('.page1 .my .user b').text('ID:' + me.erbanNo); // 处理当前 var curCycle = res.data.person.curCycle; $('.page1 .incomeTitle i').text(curCycle.cycleDate); @@ -116,7 +116,7 @@ function getAccount() { var agency = res.data.agency $('.page2 .agentSalary i').text(agency.curCycleInterval); $('.page2 .agentSalary2 i').text(agency.curCycleInterval); - $('.page2 .agentSalaryInfo .top b').text(`${agency.usdWage} ÜS`); + $('.page2 .agentSalaryInfo .top b').html(`${agency.usdWage} `); $('.page2 .agentSalaryInfo .bottom div .p1').text(agency.diamondNum); $('.page2 .agentSalaryInfo .bottom div .p2').text(agency.diamondRatio * 100 + '%'); // 渲染列表 diff --git a/view/molistar/modules/guild-ar/personal.html b/view/molistar/modules/guild-ar/personal.html index 8a1fc09..502437b 100644 --- a/view/molistar/modules/guild-ar/personal.html +++ b/view/molistar/modules/guild-ar/personal.html @@ -7,7 +7,7 @@ Personal - + @@ -126,5 +126,5 @@ - + \ No newline at end of file