us换钻石icon

This commit is contained in:
dragon
2024-11-15 18:42:25 +08:00
parent bee9f16782
commit 03b3d3a6ef
4 changed files with 11 additions and 4 deletions

View File

@@ -441,6 +441,10 @@ body {
font-weight: 600; font-weight: 600;
} }
.page2 .agentSalaryInfo .top b img {
float: right;
}
.page2 .agentSalaryInfo .bottom { .page2 .agentSalaryInfo .bottom {
width: 100%; width: 100%;
height: 1.76rem; height: 1.76rem;

View File

@@ -445,6 +445,9 @@ body {
color: #313131; color: #313131;
font-size: px2rem(36); font-size: px2rem(36);
font-weight: 600; font-weight: 600;
img{
float: right;
}
} }
} }

View File

@@ -98,7 +98,7 @@ function getAccount() {
var me = res.data.person.me; var me = res.data.person.me;
$('.page1 .my .tx').attr('src', me.avatar); $('.page1 .my .tx').attr('src', me.avatar);
$('.page1 .my .user p').text(me.nick); $('.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; var curCycle = res.data.person.curCycle;
$('.page1 .incomeTitle i').text(curCycle.cycleDate); $('.page1 .incomeTitle i').text(curCycle.cycleDate);
@@ -116,7 +116,7 @@ function getAccount() {
var agency = res.data.agency var agency = res.data.agency
$('.page2 .agentSalary i').text(agency.curCycleInterval); $('.page2 .agentSalary i').text(agency.curCycleInterval);
$('.page2 .agentSalary2 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} <img src="./images/diamondss.png"/>`);
$('.page2 .agentSalaryInfo .bottom div .p1').text(agency.diamondNum); $('.page2 .agentSalaryInfo .bottom div .p1').text(agency.diamondNum);
$('.page2 .agentSalaryInfo .bottom div .p2').text(agency.diamondRatio * 100 + '%'); $('.page2 .agentSalaryInfo .bottom div .p2').text(agency.diamondRatio * 100 + '%');
// 渲染列表 // 渲染列表

View File

@@ -7,7 +7,7 @@
<title class="text1">Personal</title> <title class="text1">Personal</title>
<!-- 公会首页 --> <!-- 公会首页 -->
<link rel="stylesheet" href="../../common/css/reset.css"> <link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./css/personal.css"> <link rel="stylesheet" href="./css/personal.css?v=1.0">
</head> </head>
<body> <body>
@@ -126,5 +126,5 @@
<script src="./local/en.js"></script> <script src="./local/en.js"></script>
<script src="./local/zh.js"></script> <script src="./local/zh.js"></script>
<script src="./local/ar.js"></script> <script src="./local/ar.js"></script>
<script src="./js/personal.js"></script> <script src="./js/personal.js?v=1.0"></script>
<script src="../../common/local/langHandler.js"></script> <script src="../../common/local/langHandler.js"></script>