优化页面

This commit is contained in:
pengxiaolong
2025-06-06 22:36:41 +08:00
parent f4901f1312
commit d30589fd05
99 changed files with 1091 additions and 1310 deletions

View File

@@ -0,0 +1,35 @@
"use strict";
const common_vendor = require("../../common/vendor.js");
const common_assets = require("../../common/assets.js");
const tabBar = () => "../../components/tabBar/tabBar.js";
const _sfc_main = {
data() {
return {
title: "Hello"
};
},
onLoad() {
},
methods: {
// 方法定义
},
components: {
tabBar
}
};
if (!Array) {
const _easycom_tabBar2 = common_vendor.resolveComponent("tabBar");
_easycom_tabBar2();
}
const _easycom_tabBar = () => "../../components/tabBar/tabBar.js";
if (!Math) {
_easycom_tabBar();
}
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {
a: common_assets._imports_0$1
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-21360a99"]]);
wx.createPage(MiniProgramPage);
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/Forum/Forum.js.map

View File

@@ -0,0 +1,6 @@
{
"navigationBarTitleText": "论坛",
"usingComponents": {
"tab-bar": "../../components/tabBar/tabBar"
}
}

View File

@@ -0,0 +1 @@
<view class="forum data-v-21360a99"><view class="bg data-v-21360a99"><image class="bgImg data-v-21360a99" src="{{a}}" mode="scaleToFill"/></view><view class="title data-v-21360a99">论坛</view></view><view class="tabBar data-v-21360a99"><tab-bar class="data-v-21360a99" u-i="21360a99-0" bind:__l="__l"></tab-bar></view>

View File

@@ -0,0 +1,21 @@
.bg.data-v-21360a99 {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}
.bgImg.data-v-21360a99 {
width: 100%;
height: 100%;
}
.title.data-v-21360a99 {
position: absolute;
top: 120rpx;
left: 345rpx;
font-size: 34rpx;
color: #100e0f;
font-weight: bold;
}

View File

@@ -24,12 +24,19 @@ const _sfc_main = {
// 列表数据
detailsdata: {},
//详情数据
triggered: false
triggered: false,
//下拉刷新标识
RealTimePklist: [],
// PK大厅列表数据
MakeAppointmentPKlist: [],
// 今日PK列表数据
listtype: 1
// 列表类型 1 当天 2 大于当天
};
},
mounted() {
this.pkList();
this.pkList({ type: 2 });
this.pkList({ type: 1 });
},
onLoad() {
common_vendor.index.getStorage({
@@ -54,11 +61,13 @@ const _sfc_main = {
});
},
methods: {
goRealTimePk() {
common_vendor.index.__f__("log", "at pages/Home/Home.vue:123", "goRealTimePk");
},
goMakeAppointmentPK() {
common_vendor.index.__f__("log", "at pages/Home/Home.vue:126", "goMakeAppointmentPK");
this.listtype = 1;
this.list = this.MakeAppointmentPKlist;
},
goRealTimePk() {
this.listtype = 2;
this.list = this.RealTimePklist;
},
goAdvertisement() {
common_vendor.index.navigateTo({ url: "/pages/pkDetail/pkDetail" });
@@ -66,15 +75,20 @@ const _sfc_main = {
onRefresherRefresh() {
this.page = 0;
this.list = [];
if (this.listtype === 1) {
this.MakeAppointmentPKlist = [];
} else {
this.RealTimePklist = [];
}
this.triggered = true;
this.pkList();
this.pkList({ type: this.listtype });
},
async goDetail(item) {
common_vendor.index.showLoading({
title: "加载中...",
mask: true
});
common_vendor.index.__f__("log", "at pages/Home/Home.vue:143", "id", item.id);
common_vendor.index.__f__("log", "at pages/Home/Home.vue:147", "id", item.id);
const res = await components_request.request({
url: "pk/pkInfoDetail",
method: "POST",
@@ -83,12 +97,12 @@ const _sfc_main = {
},
userInfo: true
});
common_vendor.index.__f__("log", "at pages/Home/Home.vue:152", "res", res);
common_vendor.index.__f__("log", "at pages/Home/Home.vue:156", "res", res);
this.detailsdata = res.data;
if (res.code === 200) {
if (res.data.length !== 0) {
common_vendor.index.hideLoading();
common_vendor.index.__f__("log", "at pages/Home/Home.vue:157", "res.data", res.data);
common_vendor.index.__f__("log", "at pages/Home/Home.vue:161", "res.data", res.data);
common_vendor.index.navigateTo({
url: "/pages/pkDetail/pkDetail",
success: (res2) => {
@@ -111,29 +125,35 @@ const _sfc_main = {
}
},
formatDate: components_formatDate.formatDate,
async pkList() {
async pkList(condition) {
const res = await components_request.request({
url: "pk/pkList",
method: "POST",
data: {
status: 0,
page: this.page,
size: this.size
size: this.size,
condition
},
userInfo: false
});
common_vendor.index.__f__("log", "at pages/Home/Home.vue:191", res);
common_vendor.index.__f__("log", "at pages/Home/Home.vue:197", res);
if (res.code === 200) {
this.list.push(...res.data);
common_vendor.index.__f__("log", "at pages/Home/Home.vue:194", this.list);
this.triggered = false;
if (condition.type === 1) {
this.MakeAppointmentPKlist.push(...res.data);
this.list = this.MakeAppointmentPKlist;
} else {
this.RealTimePklist.push(...res.data);
this.list = this.RealTimePklist;
}
}
},
onScrollToLower() {
this.page++;
this.pkList();
}
},
onScrollToLower() {
this.page++;
this.pkList({ type: this.listtype });
},
components: {
topNavigation,
Advertisement,
@@ -177,7 +197,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
});
}),
f: common_vendor.o$1((...args) => $options.onRefresherRefresh && $options.onRefresherRefresh(...args)),
g: common_vendor.o$1((...args) => $options.onScrollToLower && $options.onScrollToLower(...args)),
g: common_vendor.o$1((...args) => _ctx.onScrollToLower && _ctx.onScrollToLower(...args)),
h: $data.triggered
};
}

View File

@@ -2,6 +2,7 @@
const common_vendor = require("../../common/vendor.js");
const components_request = require("../../components/request.js");
const components_formatDate = require("../../components/formatDate.js");
const components_TimeFormatting = require("../../components/TimeFormatting.js");
const common_assets = require("../../common/assets.js");
const tabBar = () => "../../components/tabBar/tabBar.js";
const _sfc_main = {
@@ -17,7 +18,7 @@ const _sfc_main = {
key: "userinfo",
success: (res) => {
this.userinfo = res.data;
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:132", this.userinfo);
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:133", this.userinfo);
this.getpkInformation();
this.getmyPkRecord();
}
@@ -25,6 +26,7 @@ const _sfc_main = {
},
methods: {
formatDate: components_formatDate.formatDate,
TimeFormatting: components_TimeFormatting.TimeFormatting,
//获取pk信息
getpkInformation() {
components_request.request({
@@ -39,9 +41,9 @@ const _sfc_main = {
}).then((res) => {
if (res.code == 200) {
this.pkInformationdata = res.data;
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:154", this.pkInformationdata);
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:156", this.pkInformationdata);
} else {
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:156", res.msg);
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:158", res.msg);
}
});
},
@@ -60,9 +62,9 @@ const _sfc_main = {
}).then((res) => {
if (res.code == 200) {
this.myPkRecorddata = res.data;
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:175", this.myPkRecorddata);
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:177", this.myPkRecorddata);
} else {
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:177", res.msg);
common_vendor.index.__f__("log", "at pages/Mine/Mine.vue:179", res.msg);
}
});
},
@@ -90,20 +92,15 @@ const _sfc_main = {
url: "/pages/Setting/Setting"
});
},
// 跳转到服务协议页面
serviceProtocol() {
common_vendor.index.navigateTo({
url: "/pages/Mine/minecomponents/serviceProtocol"
});
},
// 退出登录
logout() {
common_vendor.index.removeStorage({
key: "chatInfo"
});
common_vendor.index.removeStorage({
key: "userinfo"
});
common_vendor.index.removeStorage({
key: "userSig"
});
common_vendor.index.removeStorage({
key: "lastPage"
});
common_vendor.index.clearStorage();
common_vendor.index.reLaunch({
url: "/pages/login/login"
});
@@ -140,11 +137,23 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
}),
i: common_assets._imports_2$1,
j: common_vendor.o$1((...args) => $options.pkRecord && $options.pkRecord(...args)),
k: common_assets._imports_3$1,
l: common_vendor.o$1((...args) => $options.contact && $options.contact(...args)),
m: common_assets._imports_4,
n: common_assets._imports_5,
o: common_vendor.o$1((...args) => $options.logout && $options.logout(...args))
k: common_vendor.f($data.myPkRecorddata, (item, index, i0) => {
return common_vendor.e({
a: item.anchorIconA,
b: item.winnerAnchorId !== item.anchorIdA
}, item.winnerAnchorId !== item.anchorIdA ? {} : item.winnerAnchorId === item.anchorIdA ? {} : {}, {
c: item.winnerAnchorId === item.anchorIdA,
d: common_vendor.t(item.pkNumber),
e: common_vendor.t($options.TimeFormatting(item.pkTime)),
f: index
});
}),
l: common_assets._imports_3$1,
m: common_vendor.o$1((...args) => $options.contact && $options.contact(...args)),
n: common_assets._imports_4,
o: common_vendor.o$1((...args) => $options.serviceProtocol && $options.serviceProtocol(...args)),
p: common_assets._imports_5,
q: common_vendor.o$1((...args) => $options.logout && $options.logout(...args))
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-402ad917"]]);

View File

@@ -1 +1 @@
<view class="container data-v-402ad917"><view class="bg data-v-402ad917"><image class="bgImg data-v-402ad917" src="{{a}}" mode="scaleToFill"/></view><view class="PersonalInformation data-v-402ad917"><view class="header data-v-402ad917"><image src="{{b}}" mode="scaleToFill" class="headerIcon data-v-402ad917"/></view><view class="data-v-402ad917"><view class="name data-v-402ad917">{{c}}</view></view><view class="Settings data-v-402ad917" bindtap="{{e}}"><image class="SettingsIcon data-v-402ad917" src="{{d}}" mode="scaleToFill"/></view></view><view class="content data-v-402ad917"><view class="PKInformation data-v-402ad917"><view class="title data-v-402ad917"><view class="titleText data-v-402ad917">PK信息</view><view class="titleLine data-v-402ad917"></view><view class="titleMore data-v-402ad917" bindtap="{{g}}">更多PK信息<image class="data-v-402ad917" style="width:10.5rpx;height:20.04rpx;margin-left:10rpx" src="{{f}}" mode="scaleToFill"/></view></view><view class="card data-v-402ad917"><view wx:for="{{h}}" wx:for-item="item" wx:key="d" class="cardContent data-v-402ad917"><view class="cardImg data-v-402ad917"><image class="data-v-402ad917" src="{{item.a}}" mode="scaleToFill"/></view><view class="Time data-v-402ad917">{{item.b}}</view><view class="gold data-v-402ad917">{{item.c}}K</view></view></view></view><view class="myPkRecord data-v-402ad917"><view class="title data-v-402ad917"><view class="titleText data-v-402ad917">我的PK记录</view><view class="titleLine data-v-402ad917"></view><view class="myPkRecordMore data-v-402ad917" bindtap="{{j}}">更多PK记录<image class="data-v-402ad917" style="width:10.5rpx;height:20.04rpx;margin-left:10rpx" src="{{i}}" mode="scaleToFill"/></view></view><view class="card data-v-402ad917"><view class="cardContent data-v-402ad917"><view class="cardImg data-v-402ad917"><image class="data-v-402ad917" src="{{''}}" mode="scaleToFill"/></view><view class="Result data-v-402ad917"> 胜利 </view><view class="Session data-v-402ad917"> 共场 </view><view class="Time data-v-402ad917"> 20:30 </view></view></view></view><view class="PKInformation data-v-402ad917"><view class="title data-v-402ad917"><view class="titleText data-v-402ad917">专属客服</view><view class="titleLine data-v-402ad917"></view></view></view><view class="card data-v-402ad917"><view class="service data-v-402ad917" bindtap="{{l}}"><image class="data-v-402ad917" style="width:48.28rpx;height:48.09rpx" src="{{k}}" mode="scaleToFill"/><view class="cardtext data-v-402ad917">联系客服</view></view><view class="service data-v-402ad917"><image class="data-v-402ad917" style="width:48.28rpx;height:48.09rpx" src="{{m}}" mode="scaleToFill"/><view class="cardtext data-v-402ad917">服务协议</view></view><view class="service data-v-402ad917" bindtap="{{o}}"><image class="data-v-402ad917" style="width:48.28rpx;height:48.09rpx" src="{{n}}" mode="scaleToFill"/><view class="cardtext data-v-402ad917">退出登录</view></view></view></view></view><view class="copyright data-v-402ad917">版权所有 © 2025 ...................</view><view class="tabBar data-v-402ad917"><tab-bar class="data-v-402ad917" u-i="402ad917-0" bind:__l="__l"></tab-bar></view>
<view class="container data-v-402ad917"><view class="bg data-v-402ad917"><image class="bgImg data-v-402ad917" src="{{a}}" mode="scaleToFill"/></view><view class="PersonalInformation data-v-402ad917"><view class="header data-v-402ad917"><image src="{{b}}" mode="scaleToFill" class="headerIcon data-v-402ad917"/></view><view class="data-v-402ad917"><view class="name data-v-402ad917">{{c}}</view></view><view class="Settings data-v-402ad917" bindtap="{{e}}"><image class="SettingsIcon data-v-402ad917" src="{{d}}" mode="scaleToFill"/></view></view><view class="content data-v-402ad917"><view class="PKInformation data-v-402ad917"><view class="title data-v-402ad917"><view class="titleText data-v-402ad917">PK信息</view><view class="titleLine data-v-402ad917"></view><view class="titleMore data-v-402ad917" bindtap="{{g}}">更多PK信息<image class="data-v-402ad917" style="width:10.5rpx;height:20.04rpx;margin-left:10rpx" src="{{f}}" mode="scaleToFill"/></view></view><view class="card data-v-402ad917"><view wx:for="{{h}}" wx:for-item="item" wx:key="d" class="cardContent data-v-402ad917"><view class="cardImg data-v-402ad917"><image class="data-v-402ad917" src="{{item.a}}" mode="scaleToFill"/></view><view class="Time data-v-402ad917">{{item.b}}</view><view class="gold data-v-402ad917">{{item.c}}K</view></view></view></view><view class="myPkRecord data-v-402ad917"><view class="title data-v-402ad917"><view class="titleText data-v-402ad917">我的PK记录</view><view class="titleLine data-v-402ad917"></view><view class="myPkRecordMore data-v-402ad917" bindtap="{{j}}">更多PK记录<image class="data-v-402ad917" style="width:10.5rpx;height:20.04rpx;margin-left:10rpx" src="{{i}}" mode="scaleToFill"/></view></view><view class="card data-v-402ad917"><view wx:for="{{k}}" wx:for-item="item" wx:key="f" class="cardContent data-v-402ad917"><view class="cardImg data-v-402ad917"><image class="data-v-402ad917" src="{{item.a}}" mode="scaleToFill"/></view><view wx:if="{{item.b}}" class="Failure data-v-402ad917"> 失败 </view><view wx:elif="{{item.c}}" class="Result data-v-402ad917"> 胜利 </view><view class="Session data-v-402ad917"> 共{{item.d}}场 </view><view class="Time data-v-402ad917">{{item.e}}</view></view></view></view><view class="PKInformation data-v-402ad917"><view class="title data-v-402ad917"><view class="titleText data-v-402ad917">专属客服</view><view class="titleLine data-v-402ad917"></view></view></view><view class="card data-v-402ad917"><view class="service data-v-402ad917" bindtap="{{m}}"><image class="data-v-402ad917" style="width:48.28rpx;height:48.09rpx" src="{{l}}" mode="scaleToFill"/><view class="cardtext data-v-402ad917">联系客服</view></view><view class="service data-v-402ad917" bindtap="{{o}}"><image class="data-v-402ad917" style="width:48.28rpx;height:48.09rpx" src="{{n}}" mode="scaleToFill"/><view class="cardtext data-v-402ad917">服务协议</view></view><view class="service data-v-402ad917" bindtap="{{q}}"><image class="data-v-402ad917" style="width:48.28rpx;height:48.09rpx" src="{{p}}" mode="scaleToFill"/><view class="cardtext data-v-402ad917">退出登录</view></view></view></view></view><view class="copyright data-v-402ad917">版权所有 © 2025 ...................</view><view class="tabBar data-v-402ad917"><tab-bar class="data-v-402ad917" u-i="402ad917-0" bind:__l="__l"></tab-bar></view>

View File

@@ -1,5 +1,6 @@
"use strict";
const common_vendor = require("../../../common/vendor.js");
const common_assets = require("../../../common/assets.js");
const _sfc_main = {
data() {
return {
@@ -9,11 +10,19 @@ const _sfc_main = {
onLoad() {
},
methods: {
// 方法定义
onBack() {
common_vendor.wx$1.navigateBack({
delta: 1
});
}
}
};
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {};
return {
a: common_assets._imports_0$1,
b: common_assets._imports_1,
c: common_vendor.o$1((...args) => $options.onBack && $options.onBack(...args))
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-2f1f017b"]]);
wx.createPage(MiniProgramPage);

View File

@@ -1 +1 @@
<view class="contact data-v-2f1f017b"><view class="data-v-2f1f017b">联系方式</view></view>
<view class="contact data-v-2f1f017b"><view class="bg data-v-2f1f017b"><image class="bgImg data-v-2f1f017b" src="{{a}}" mode="scaleToFill"/></view><view class="Return data-v-2f1f017b" bindtap="{{c}}"><image class="ReturnImg data-v-2f1f017b" src="{{b}}" mode="scaleToFill"/></view><view class="title data-v-2f1f017b">联系客服</view></view>

View File

@@ -1,8 +1,32 @@
.contact.data-v-2f1f017b{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
.bg.data-v-2f1f017b {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}
.bgImg.data-v-2f1f017b {
width: 100%;
height: 100%;
}
.Return.data-v-2f1f017b {
position: absolute;
top: 110rpx;
left: 35rpx;
width: 46rpx;
height: 46rpx;
}
.title.data-v-2f1f017b {
position: absolute;
top: 120rpx;
left: 315rpx;
font-size: 34rpx;
color: #100e0f;
font-weight: 500;
}
.ReturnImg.data-v-2f1f017b {
width: 100%;
height: 100%;
}

View File

@@ -20,32 +20,7 @@ const _sfc_main = {
// PK记录列表
pkInvitationRecordlist: [],
// PK记录列表
pkRecordlist: [
{
winnerId: "1",
pkTime: "1626211200",
anchorIdA: "123",
anchorIconA: "https://img.yzcdn.cn/vant/cat.jpeg",
userAcoin: "100",
anchorIdB: "456",
anchorIconB: "https://img.yzcdn.cn/vant/dog.jpeg",
userBcoin: "200",
senderA: "123",
senderB: "456"
},
{
winnerId: "2",
pkTime: "1626211200",
anchorIdA: "789",
anchorIconA: "https://img.yzcdn.cn/vant/cat.jpeg",
userAcoin: "100",
anchorIdB: "101",
anchorIconB: "https://img.yzcdn.cn/vant/dog.jpeg",
userBcoin: "200",
senderA: "789",
senderB: "101"
}
],
pkRecordlist: [],
// PK记录列表
userinfo: {},
// 用户信息
@@ -116,19 +91,19 @@ const _sfc_main = {
this.triggered = false;
if (type === 1) {
this.pkmyRecordlist.push(...res.data);
common_vendor.index.__f__("log", "at pages/Mine/minecomponents/pkRecord.vue:197", this.pkRecordlist);
common_vendor.index.__f__("log", "at pages/Mine/minecomponents/pkRecord.vue:173", this.pkRecordlist);
if (this.current === 1) {
this.pkRecordlist = this.pkmyRecordlist;
}
} else {
this.pkInvitationRecordlist.push(...res.data);
common_vendor.index.__f__("log", "at pages/Mine/minecomponents/pkRecord.vue:203", this.pkInvitationRecordlist);
common_vendor.index.__f__("log", "at pages/Mine/minecomponents/pkRecord.vue:179", this.pkInvitationRecordlist);
if (this.current === 2) {
this.pkRecordlist = this.pkInvitationRecordlist;
}
}
} else {
common_vendor.index.__f__("log", "at pages/Mine/minecomponents/pkRecord.vue:209", res.msg);
common_vendor.index.__f__("log", "at pages/Mine/minecomponents/pkRecord.vue:185", res.msg);
}
});
},

View File

@@ -0,0 +1,29 @@
"use strict";
const common_vendor = require("../../../common/vendor.js");
const common_assets = require("../../../common/assets.js");
const _sfc_main = {
data() {
return {
title: "Hello"
};
},
onLoad() {
},
methods: {
onBack() {
common_vendor.wx$1.navigateBack({
delta: 1
});
}
}
};
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {
a: common_assets._imports_0$1,
b: common_assets._imports_1,
c: common_vendor.o$1((...args) => $options.onBack && $options.onBack(...args))
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-38749331"]]);
wx.createPage(MiniProgramPage);
//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/Mine/minecomponents/serviceProtocol.js.map

View File

@@ -0,0 +1,4 @@
{
"navigationBarTitleText": "服务协议",
"usingComponents": {}
}

View File

@@ -0,0 +1 @@
<view class="service-protocol data-v-38749331"><view class="bg data-v-38749331"><image class="bgImg data-v-38749331" src="{{a}}" mode="scaleToFill"/></view><view class="Return data-v-38749331" bindtap="{{c}}"><image class="ReturnImg data-v-38749331" src="{{b}}" mode="scaleToFill"/></view><view class="title data-v-38749331">服务协议</view></view>

View File

@@ -0,0 +1,32 @@
.bg.data-v-38749331 {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}
.bgImg.data-v-38749331 {
width: 100%;
height: 100%;
}
.Return.data-v-38749331 {
position: absolute;
top: 110rpx;
left: 35rpx;
width: 46rpx;
height: 46rpx;
}
.title.data-v-38749331 {
position: absolute;
top: 120rpx;
left: 315rpx;
font-size: 34rpx;
color: #100e0f;
font-weight: 500;
}
.ReturnImg.data-v-38749331 {
width: 100%;
height: 100%;
}

View File

@@ -1 +1 @@
<view wx:if="{{a}}" class="{{['data-v-96d38e2b', F, 'Mask']}}" bindtap="{{G}}"><view catchtap="{{E}}" class="containers data-v-96d38e2b"><view class="container data-v-96d38e2b"><image class="Fork data-v-96d38e2b" bindtap="{{b}}" src="{{c}}" mode="scaleToFill"/><view class="Titlecss data-v-96d38e2b"><view class="Star data-v-96d38e2b"></view><view class="Title data-v-96d38e2b"></view><view class="Star data-v-96d38e2b"></view></view><view class="NameAnchor data-v-96d38e2b"><input class="NameAnchorcss data-v-96d38e2b" cursor-color="#666666" placeholder-style="color:#666666" bindinput="{{d}}" placeholder="主播名称"/><view wx:if="{{e}}" class="Hint data-v-96d38e2b">请填写主播名称</view></view><view class="Accountnumber data-v-96d38e2b"><view class="Coins country data-v-96d38e2b"><wht-select wx:if="{{g}}" class="data-v-96d38e2b" style="width:350rpx" bindchange="{{f}}" u-i="96d38e2b-0" bind:__l="__l" u-p="{{g}}"/><view wx:if="{{h}}" class="Hint data-v-96d38e2b">请选择国家</view></view><view class="Gender data-v-96d38e2b"><view class="Gendercs data-v-96d38e2b"><view class="Gendercss data-v-96d38e2b"><wht-select wx:if="{{j}}" class="data-v-96d38e2b" style="width:300rpx" bindchange="{{i}}" u-i="96d38e2b-1" bind:__l="__l" u-p="{{j}}"/></view><view class="Gendericoncss data-v-96d38e2b"><image wx:if="{{k}}" class="Gendericon data-v-96d38e2b" src="{{l}}" mode="scaleToFill"/><image wx:if="{{m}}" class="Gendericon data-v-96d38e2b" src="{{n}}" mode="scaleToFill"/><image wx:if="{{o}}" class="Gendericon data-v-96d38e2b" src="{{p}}" mode="scaleToFill"/></view></view><view wx:if="{{q}}" class="Hintcss data-v-96d38e2b">请选择性别</view></view></view><view class="goldCoin data-v-96d38e2b"><view class="number-box data-v-96d38e2b"><view class="number-box-title data-v-96d38e2b">金币数量:</view><uni-number-box wx:if="{{s}}" class="data-v-96d38e2b" u-i="96d38e2b-2" bind:__l="__l" bindupdateModelValue="{{r}}" u-p="{{s}}"></uni-number-box><view class="number-box-title data-v-96d38e2b">单位:</view><view class="number-box-unit data-v-96d38e2b">K</view></view><view wx:if="{{t}}" class="Hint data-v-96d38e2b">请填写金币数量</view></view><view class="time data-v-96d38e2b"><uni-datetime-picker wx:if="{{w}}" class="data-v-96d38e2b" u-i="96d38e2b-3" bind:__l="__l" bindupdateModelValue="{{v}}" u-p="{{w}}"/><view wx:if="{{x}}" class="Hint data-v-96d38e2b">请选择日期</view></view><view class="goldCoin data-v-96d38e2b"><view class="number-box data-v-96d38e2b"><view class="number-box-title data-v-96d38e2b">选择场数:</view><uni-number-box wx:if="{{z}}" class="data-v-96d38e2b" u-i="96d38e2b-4" bind:__l="__l" bindupdateModelValue="{{y}}" u-p="{{z}}"></uni-number-box><view class="number-box-title data-v-96d38e2b">次</view></view><view wx:if="{{A}}" class="Hint data-v-96d38e2b">请填写场数</view></view><view class="Remarkscss data-v-96d38e2b"><uni-easyinput wx:if="{{C}}" class="data-v-96d38e2b" u-i="96d38e2b-5" bind:__l="__l" bindupdateModelValue="{{B}}" u-p="{{C}}"></uni-easyinput></view><view class="Publish data-v-96d38e2b"><button bindtap="{{D}}" class="Publishcss data-v-96d38e2b">发布</button></view></view></view></view>
<view wx:if="{{a}}" class="{{['data-v-96d38e2b', G, 'Mask']}}" bindtap="{{H}}"><view catchtap="{{F}}" class="containers data-v-96d38e2b"><view class="container data-v-96d38e2b"><image class="Fork data-v-96d38e2b" bindtap="{{b}}" src="{{c}}" mode="scaleToFill"/><view class="Titlecss data-v-96d38e2b"><view class="Star data-v-96d38e2b"></view><view class="Title data-v-96d38e2b"></view><view class="Star data-v-96d38e2b"></view></view><view class="NameAnchor data-v-96d38e2b"><input class="NameAnchorcss data-v-96d38e2b" cursor-color="#666666" placeholder-style="color:#666666" bindinput="{{d}}" placeholder="主播名称" bindblur="{{e}}"/><view wx:if="{{f}}" class="Hint data-v-96d38e2b">请填写主播名称</view></view><view class="Accountnumber data-v-96d38e2b"><view class="Coins country data-v-96d38e2b"><wht-select wx:if="{{h}}" class="data-v-96d38e2b" style="width:350rpx" bindchange="{{g}}" u-i="96d38e2b-0" bind:__l="__l" u-p="{{h}}"/><view wx:if="{{i}}" class="Hint data-v-96d38e2b">请选择国家</view></view><view class="Gender data-v-96d38e2b"><view class="Gendercs data-v-96d38e2b"><view class="Gendercss data-v-96d38e2b"><wht-select wx:if="{{k}}" class="data-v-96d38e2b" style="width:300rpx" bindchange="{{j}}" u-i="96d38e2b-1" bind:__l="__l" u-p="{{k}}"/></view><view class="Gendericoncss data-v-96d38e2b"><image wx:if="{{l}}" class="Gendericon data-v-96d38e2b" src="{{m}}" mode="scaleToFill"/><image wx:if="{{n}}" class="Gendericon data-v-96d38e2b" src="{{o}}" mode="scaleToFill"/><image wx:if="{{p}}" class="Gendericon data-v-96d38e2b" src="{{q}}" mode="scaleToFill"/></view></view><view wx:if="{{r}}" class="Hintcss data-v-96d38e2b">请选择性别</view></view></view><view class="goldCoin data-v-96d38e2b"><view class="number-box data-v-96d38e2b"><view class="number-box-title data-v-96d38e2b">金币数量:</view><uni-number-box wx:if="{{t}}" class="data-v-96d38e2b" u-i="96d38e2b-2" bind:__l="__l" bindupdateModelValue="{{s}}" u-p="{{t}}"></uni-number-box><view class="number-box-title data-v-96d38e2b">单位:</view><view class="number-box-unit data-v-96d38e2b">K</view></view><view wx:if="{{v}}" class="Hint data-v-96d38e2b">请填写金币数量</view></view><view class="time data-v-96d38e2b"><uni-datetime-picker wx:if="{{x}}" class="data-v-96d38e2b" u-i="96d38e2b-3" bind:__l="__l" bindupdateModelValue="{{w}}" u-p="{{x}}"/><view wx:if="{{y}}" class="Hint data-v-96d38e2b">请选择日期</view></view><view class="goldCoin data-v-96d38e2b"><view class="number-box data-v-96d38e2b"><view class="number-box-title data-v-96d38e2b">选择场数:</view><uni-number-box wx:if="{{A}}" class="data-v-96d38e2b" u-i="96d38e2b-4" bind:__l="__l" bindupdateModelValue="{{z}}" u-p="{{A}}"></uni-number-box><view class="number-box-title data-v-96d38e2b">次</view></view><view wx:if="{{B}}" class="Hint data-v-96d38e2b">请填写场数</view></view><view class="Remarkscss data-v-96d38e2b"><uni-easyinput wx:if="{{D}}" class="data-v-96d38e2b" u-i="96d38e2b-5" bind:__l="__l" bindupdateModelValue="{{C}}" u-p="{{D}}"></uni-easyinput></view><view class="Publish data-v-96d38e2b"><button bindtap="{{E}}" class="Publishcss data-v-96d38e2b">发布</button></view></view></view></view>

View File

@@ -2,17 +2,25 @@
/* 定义动画 */
/* 原始进入动画 */
@keyframes slide-in-96d38e2b {
from { transform: translateY(100%); opacity: 0;
from {
transform: translateY(100%);
opacity: 0;
}
to { transform: translateY(0); opacity: 1;
to {
transform: translateY(0);
opacity: 1;
}
}
/* 新增关闭动画 */
@keyframes slide-out-96d38e2b {
from { transform: translateY(0); opacity: 1;
from {
transform: translateY(0);
opacity: 1;
}
to { transform: translateY(-100%); opacity: 0;
to {
transform: translateY(-100%);
opacity: 0;
}
}
@@ -38,7 +46,7 @@ to { transform: translateY(-100%); opacity: 0;
margin-left: 30rpx;
margin-top: 10rpx;
}
.Hintcss.data-v-96d38e2b{
.Hintcss.data-v-96d38e2b {
color: rgb(255, 0, 0);
font-size: 20rpx;
margin-left: 30rpx;
@@ -65,14 +73,14 @@ to { transform: translateY(-100%); opacity: 0;
/* margin-bottom: 40rpx; */
margin-left: 90%;
}
.Titlecss.data-v-96d38e2b{
.Titlecss.data-v-96d38e2b {
width: 100%;
height: 70rpx;
display: flex;
justify-content: center;
align-items: center;
}
.Star.data-v-96d38e2b{
.Star.data-v-96d38e2b {
width: 50rpx;
height: 50rpx;
background-image: url(data:image/png;base64,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);
@@ -104,7 +112,7 @@ to { transform: translateY(-100%); opacity: 0;
width: 99%;
height: 85rpx;
background-color: #ffffff;
border: 1rpx solid #BFBFBF;
border: 1rpx solid #bfbfbf;
border-radius: 10rpx;
text-align: center;
}
@@ -114,16 +122,16 @@ to { transform: translateY(-100%); opacity: 0;
flex-direction: column;
justify-content: center;
}
.Gendercs.data-v-96d38e2b{
.Gendercs.data-v-96d38e2b {
display: flex;
justify-content: center;
/* align-items: center; */
}
.Gendercss.data-v-96d38e2b{
.Gendercss.data-v-96d38e2b {
width: 200rpx;
height: 60rpx;
}
.Gendericoncss.data-v-96d38e2b{
.Gendericoncss.data-v-96d38e2b {
display: flex;
justify-content: center;
align-items: center;
@@ -134,7 +142,7 @@ to { transform: translateY(-100%); opacity: 0;
margin-left: 20rpx;
margin-top: 10rpx;
}
.Gendericon.data-v-96d38e2b{
.Gendericon.data-v-96d38e2b {
width: 40rpx;
height: 40rpx;
/* margin-top: 10rpx;
@@ -154,7 +162,7 @@ to { transform: translateY(-100%); opacity: 0;
/* flex-direction: column; */
}
.country.data-v-96d38e2b {
margin-left:10rpx;
margin-left: 10rpx;
}
.goldCoin.data-v-96d38e2b {
width: 100%;
@@ -175,10 +183,10 @@ to { transform: translateY(-100%); opacity: 0;
margin-left: 17rpx;
}
.number-box-unit.data-v-96d38e2b {
color: #03ABA8;
color: #03aba8;
width: 48rpx;
height: 48rpx;
border: 1rpx solid #03ABA8;
border: 1rpx solid #03aba8;
border-radius: 50%;
line-height: 48rpx;
text-align: center;
@@ -198,7 +206,7 @@ to { transform: translateY(-100%); opacity: 0;
margin-left: 5%;
}
.Publishcss.data-v-96d38e2b {
background-image: linear-gradient(135deg, #4FCACD, #5FDBDE);
background-image: linear-gradient(135deg, #4fcacd, #5fdbde);
/* color: #33ff00; */
color: #ffffff;
font-weight: bold;

View File

@@ -55,7 +55,7 @@ const _sfc_main = {
common_vendor.index.__f__("log", "at pages/PKMessageprocessing/PKMessageprocessing.vue:198", "``````", this.customData);
common_vendor.index.__f__("log", "at pages/PKMessageprocessing/PKMessageprocessing.vue:199", status);
await components_request.request({
url: "pk/pkInfoDetail",
url: "pk/updatePkStatus",
method: "POST",
data: {
pkIdA: this.customData.pkIdA,
@@ -64,7 +64,7 @@ const _sfc_main = {
userIdB: this.customData.userIdB,
pkTime: this.customData.pkTime,
pkNumber: this.customData.pkNumber,
status
pkStatus: status
},
userInfo: false
}).then((res) => {
@@ -99,32 +99,36 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
e: common_vendor.t($data.SenderData.anchorId),
f: $data.SenderData.sex === "1"
}, $data.SenderData.sex === "1" ? {
g: common_assets._imports_2
g: common_assets._imports_2,
h: common_vendor.t($data.SenderData.sex == 1 ? "男" : "女")
} : {
h: common_assets._imports_3
i: common_assets._imports_3,
j: common_vendor.t($data.SenderData.sex == 1 ? "男" : "女")
}, {
i: common_vendor.t($data.SenderData.country),
j: common_vendor.t($options.formatDate($data.SenderData.pkTime)),
k: common_assets._imports_4$2,
l: common_vendor.t($data.SenderData.coin),
m: common_assets._imports_5$2,
n: common_vendor.t($data.SenderData.pkNumber),
o: $data.ReceiverData.anchorIcon,
p: common_vendor.t($data.ReceiverData.anchorId),
q: $data.ReceiverData.sex === "1"
k: common_vendor.t($data.SenderData.country),
l: common_vendor.t($options.formatDate($data.SenderData.pkTime)),
m: common_assets._imports_4$2,
n: common_vendor.t($data.SenderData.coin),
o: common_assets._imports_5$2,
p: common_vendor.t($data.SenderData.pkNumber),
q: $data.ReceiverData.anchorIcon,
r: common_vendor.t($data.ReceiverData.anchorId),
s: $data.ReceiverData.sex === "1"
}, $data.ReceiverData.sex === "1" ? {
r: common_assets._imports_2
t: common_assets._imports_2,
v: common_vendor.t($data.ReceiverData.sex == 1 ? "男" : "女")
} : {
s: common_assets._imports_3
w: common_assets._imports_3,
x: common_vendor.t($data.ReceiverData.sex == 1 ? "男" : "女")
}, {
t: common_vendor.t($data.ReceiverData.country),
v: common_vendor.t($options.formatDate($data.ReceiverData.pkTime)),
w: common_assets._imports_4$2,
x: common_vendor.t($data.ReceiverData.coin),
y: common_assets._imports_5$2,
z: common_vendor.t($data.ReceiverData.pkNumber),
A: common_vendor.o$1(($event) => $options.operation(1)),
B: common_vendor.o$1(($event) => $options.operation(2))
y: common_vendor.t($data.ReceiverData.country),
z: common_vendor.t($options.formatDate($data.ReceiverData.pkTime)),
A: common_assets._imports_4$2,
B: common_vendor.t($data.ReceiverData.coin),
C: common_assets._imports_5$2,
D: common_vendor.t($data.ReceiverData.pkNumber),
E: common_vendor.o$1(($event) => $options.operation(1)),
F: common_vendor.o$1(($event) => $options.operation(2))
});
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-cadadfe7"]]);

View File

@@ -1 +1 @@
<view class="container data-v-cadadfe7"><view class="background data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:100%;height:100%" src="{{a}}" mode="scaleToFill"/></view><view class="Navigation data-v-cadadfe7"><view class="Return data-v-cadadfe7" bindtap="{{c}}"><image class="Return data-v-cadadfe7" src="{{b}}" mode="scaleToFill"/></view></view><view class="Content data-v-cadadfe7"><view class="sender data-v-cadadfe7"><view class="sengderIcon data-v-cadadfe7"><image class="Icon data-v-cadadfe7" src="{{d}}" mode="scaleToFill"/></view><view class="Individual data-v-cadadfe7"><view class="name data-v-cadadfe7">{{e}}</view><view class="GenderAndAge data-v-cadadfe7"><view wx:if="{{f}}" class="male data-v-cadadfe7"><view class="data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:20rpx;height:20rpx" src="{{g}}" mode="scaleToFill"/></view><view class="age data-v-cadadfe7"> 21 </view></view><view wx:else class="female data-v-cadadfe7"><view class="data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:20rpx;height:20rpx" src="{{h}}" mode="scaleToFill"/></view><view class="age data-v-cadadfe7"> 21 </view></view></view><view class="nation data-v-cadadfe7">{{i}}</view></view><view class="Time data-v-cadadfe7">PK时间:{{j}}</view><view class="SessionAndGoldCoin data-v-cadadfe7"><view class="goldCoin data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{k}}" mode="scaleToFill"/><view class="goldcard data-v-cadadfe7"><view class="goldnumber data-v-cadadfe7">{{l}}</view><view class="goldtext data-v-cadadfe7">金币</view></view></view><view class="Session data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{m}}" mode="scaleToFill"/><view class="goldcard data-v-cadadfe7"><view class="goldnumber data-v-cadadfe7">{{n}}</view><view class="goldtext data-v-cadadfe7">PK场数</view></view></view></view></view><view class="sender data-v-cadadfe7"><view class="sengderIcon data-v-cadadfe7"><image class="Icon data-v-cadadfe7" src="{{o}}" mode="scaleToFill"/></view><view class="Individual data-v-cadadfe7"><view class="name data-v-cadadfe7">{{p}}</view><view class="GenderAndAge data-v-cadadfe7"><view wx:if="{{q}}" class="male data-v-cadadfe7"><view class="data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:20rpx;height:20rpx" src="{{r}}" mode="scaleToFill"/></view><view class="age data-v-cadadfe7"> 21 </view></view><view wx:else class="female data-v-cadadfe7"><view class="data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:20rpx;height:20rpx" src="{{s}}" mode="scaleToFill"/></view><view class="age data-v-cadadfe7"> 21 </view></view></view><view class="nation data-v-cadadfe7">{{t}}</view></view><view class="Time data-v-cadadfe7">PK时间:{{v}}</view><view class="SessionAndGoldCoin data-v-cadadfe7"><view class="goldCoin data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{w}}" mode="scaleToFill"/><view class="data-v-cadadfe7"><view class="goldnumber data-v-cadadfe7">{{x}}</view><view class="goldtext data-v-cadadfe7">金币</view></view></view><view class="Session data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{y}}" mode="scaleToFill"/><view class="data-v-cadadfe7"><view class="goldnumber data-v-cadadfe7">{{z}}</view><view class="goldtext data-v-cadadfe7">PK场数</view></view></view></view></view><view class="button data-v-cadadfe7"><button class="accept data-v-cadadfe7" bindtap="{{A}}">接受邀请</button><button class="reject data-v-cadadfe7" bindtap="{{B}}">拒绝邀请</button></view></view></view>
<view class="container data-v-cadadfe7"><view class="background data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:100%;height:100%" src="{{a}}" mode="scaleToFill"/></view><view class="Navigation data-v-cadadfe7"><view class="Return data-v-cadadfe7" bindtap="{{c}}"><image class="Return data-v-cadadfe7" src="{{b}}" mode="scaleToFill"/></view></view><view class="Content data-v-cadadfe7"><view class="sender data-v-cadadfe7"><view class="sengderIcon data-v-cadadfe7"><image class="Icon data-v-cadadfe7" src="{{d}}" mode="scaleToFill"/></view><view class="Individual data-v-cadadfe7"><view class="name data-v-cadadfe7">{{e}}</view><view class="GenderAndAge data-v-cadadfe7"><view wx:if="{{f}}" class="male data-v-cadadfe7"><view class="data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:20rpx;height:20rpx" src="{{g}}" mode="scaleToFill"/></view><view class="age data-v-cadadfe7">{{h}}</view></view><view wx:else class="female data-v-cadadfe7"><view class="data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:20rpx;height:20rpx" src="{{i}}" mode="scaleToFill"/></view><view class="age data-v-cadadfe7">{{j}}</view></view></view><view class="nation data-v-cadadfe7">{{k}}</view></view><view class="Time data-v-cadadfe7">PK时间:{{l}}</view><view class="SessionAndGoldCoin data-v-cadadfe7"><view class="goldCoin data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{m}}" mode="scaleToFill"/><view class="goldcard data-v-cadadfe7"><view class="goldnumber data-v-cadadfe7">{{n}}</view><view class="goldtext data-v-cadadfe7">金币</view></view></view><view class="Session data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{o}}" mode="scaleToFill"/><view class="goldcard data-v-cadadfe7"><view class="goldnumber data-v-cadadfe7">{{p}}</view><view class="goldtext data-v-cadadfe7">PK场数</view></view></view></view></view><view class="sender data-v-cadadfe7"><view class="sengderIcon data-v-cadadfe7"><image class="Icon data-v-cadadfe7" src="{{q}}" mode="scaleToFill"/></view><view class="Individual data-v-cadadfe7"><view class="name data-v-cadadfe7">{{r}}</view><view class="GenderAndAge data-v-cadadfe7"><view wx:if="{{s}}" class="male data-v-cadadfe7"><view class="data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:20rpx;height:20rpx" src="{{t}}" mode="scaleToFill"/></view><view class="age data-v-cadadfe7">{{v}}</view></view><view wx:else class="female data-v-cadadfe7"><view class="data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:20rpx;height:20rpx" src="{{w}}" mode="scaleToFill"/></view><view class="age data-v-cadadfe7">{{x}}</view></view></view><view class="nation data-v-cadadfe7">{{y}}</view></view><view class="Time data-v-cadadfe7">PK时间:{{z}}</view><view class="SessionAndGoldCoin data-v-cadadfe7"><view class="goldCoin data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{A}}" mode="scaleToFill"/><view class="data-v-cadadfe7"><view class="goldnumber data-v-cadadfe7">{{B}}</view><view class="goldtext data-v-cadadfe7">金币</view></view></view><view class="Session data-v-cadadfe7"><image class="data-v-cadadfe7" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{C}}" mode="scaleToFill"/><view class="data-v-cadadfe7"><view class="goldnumber data-v-cadadfe7">{{D}}</view><view class="goldtext data-v-cadadfe7">PK场数</view></view></view></view></view><view class="button data-v-cadadfe7"><button class="accept data-v-cadadfe7" bindtap="{{E}}">接受邀请</button><button class="reject data-v-cadadfe7" bindtap="{{F}}">拒绝邀请</button></view></view></view>

View File

@@ -55,9 +55,10 @@ const _sfc_main = {
path: this.userinfo,
name: components_generateFileName.generateFileName()
}).then((res) => {
common_vendor.index.__f__("log", "at pages/Setting/Setting.vue:75", "上传成功········", res);
this.userinfo = res;
}).catch((err) => {
common_vendor.index.__f__("log", "at pages/Setting/Setting.vue:77", err);
common_vendor.index.__f__("log", "at pages/Setting/Setting.vue:79", err);
});
if (this.userinfo) {
const res = await components_request.request({

View File

@@ -98,7 +98,7 @@ const _sfc_main = {
}
});
}).catch((err) => {
common_vendor.index.__f__("log", "at pages/UserInformation/UserInformation.vue:123", err);
common_vendor.index.__f__("log", "at pages/UserInformation/UserInformation.vue:122", err);
});
}
}

View File

@@ -16,13 +16,14 @@ const _sfc_main = {
InvitingPartyEventindex: null,
chatInfo: {},
currentConversation: null
// parentMessage: null,
};
},
onLoad(options) {
const eventChannel = this.getOpenerEventChannel();
eventChannel.on("itemDetail", (data) => {
this.item = data.item;
common_vendor.index.__f__("log", "at pages/pkDetail/pkDetail.vue:152", "接收到的数据:", this.item);
common_vendor.index.__f__("log", "at pages/pkDetail/pkDetail.vue:165", "接收到的数据:", this.item);
});
common_vendor.index.getStorage({
key: "userinfo",
@@ -38,6 +39,11 @@ const _sfc_main = {
});
},
methods: {
//修改信息
// onRecompose(item) {
// this.parentMessage = item;
// this.createModule.open();
// },
formatDate: components_formatDate.formatDate,
TimeFormatting: components_TimeFormatting.TimeFormatting,
Select(id, index) {
@@ -61,6 +67,13 @@ const _sfc_main = {
this.userlist();
},
invite() {
if (this.item.pkTime !== this.list[this.InvitingPartyEventindex].pkTime) {
common_vendor.index.showToast({
icon: "none",
title: "请保持时间一致"
});
return;
}
const conversationID = `C2C${this.item.senderId}`;
const myitem = JSON.stringify(this.list[this.InvitingPartyEventindex]);
const youritem = JSON.stringify(this.item);
@@ -93,7 +106,7 @@ const _sfc_main = {
if (res.code === 200) {
if (res.data.length !== 0) {
common_vendor.index.hideLoading();
common_vendor.index.__f__("log", "at pages/pkDetail/pkDetail.vue:235", "res.data", res.data);
common_vendor.index.__f__("log", "at pages/pkDetail/pkDetail.vue:253", "res.data", res.data);
this.list = res.data;
} else {
common_vendor.index.hideLoading();
@@ -117,9 +130,10 @@ const _sfc_main = {
}
};
if (!Array) {
const _component_viewm = common_vendor.resolveComponent("viewm");
const _easycom_uni_popup2 = common_vendor.resolveComponent("uni-popup");
const _component_NewAddedPk = common_vendor.resolveComponent("NewAddedPk");
(_easycom_uni_popup2 + _component_NewAddedPk)();
(_component_viewm + _easycom_uni_popup2 + _component_NewAddedPk)();
}
const _easycom_uni_popup = () => "../../uni_modules/uni-popup/components/uni-popup/uni-popup.js";
if (!Math) {
@@ -134,36 +148,42 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
e: common_vendor.t($data.item.anchorId),
f: $data.item.sex === "1"
}, $data.item.sex === "1" ? {
g: common_assets._imports_2
g: common_assets._imports_2,
h: common_vendor.t($data.item.sex === "1" ? "男" : "女")
} : {
h: common_assets._imports_3
i: common_assets._imports_3,
j: common_vendor.t($data.item.sex === "2" ? "男" : "女")
}, {
i: common_vendor.t($data.item.country),
j: common_vendor.t($options.formatDate($data.item.pkTime)),
k: common_assets._imports_4$2,
l: common_vendor.t($data.item.coin),
m: common_assets._imports_5$2,
n: common_vendor.t($data.item.pkNumber),
o: common_vendor.o$1(($event) => $options.openChat()),
p: common_vendor.o$1(($event) => $options.open()),
q: common_vendor.f($data.list, (item, index, i0) => {
k: common_vendor.t($data.item.country),
l: common_vendor.t($options.formatDate($data.item.pkTime)),
m: common_assets._imports_4$2,
n: common_vendor.t($data.item.coin),
o: common_assets._imports_5$2,
p: common_vendor.t($data.item.pkNumber),
q: $data.item.senderId !== $data.id
}, $data.item.senderId !== $data.id ? {
r: common_vendor.o$1(($event) => $options.openChat()),
s: common_vendor.o$1(($event) => $options.open())
} : {}, {
t: common_vendor.f($data.list, (item, index, i0) => {
return {
a: item.anchorIcon,
b: common_vendor.t(item.anchorId),
c: common_vendor.t($options.TimeFormatting(item.pkTime)),
d: common_vendor.t(item.coin),
e: common_vendor.o$1(($event) => $options.Select(item.id, index)),
f: $data.selectedId === item.id ? "2px solid red" : "2px solid #afafaf"
c: common_vendor.t(item.coin),
d: "9639f721-1-" + i0 + ",9639f721-0",
e: common_vendor.t($options.TimeFormatting(item.pkTime)),
f: common_vendor.o$1(($event) => $options.Select(item.id, index)),
g: $data.selectedId === item.id ? "#f6f6f6" : "#ffffff"
};
}),
r: common_vendor.o$1(($event) => $options.invite()),
s: common_vendor.o$1(($event) => $options.close()),
t: common_vendor.sr("popup", "9639f721-0"),
v: common_vendor.p({
v: common_vendor.o$1(($event) => $options.invite()),
w: common_vendor.o$1(($event) => $options.close()),
x: common_vendor.sr("popup", "9639f721-0"),
y: common_vendor.p({
type: "center",
["border-radius"]: "10px 10px 0 0"
}),
w: common_vendor.sr("createModule", "9639f721-1")
z: common_vendor.sr("createModule", "9639f721-2")
});
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-9639f721"]]);

View File

@@ -1 +1 @@
<view class="container data-v-9639f721"><view class="background data-v-9639f721"><image class="data-v-9639f721" style="width:100%;height:100%" src="{{a}}" mode="scaleToFill"/></view><view class="Navigation data-v-9639f721"><view class="Return data-v-9639f721" bindtap="{{c}}"><image class="Return data-v-9639f721" src="{{b}}" mode="scaleToFill"/></view></view><view class="Content data-v-9639f721"><view class="sender data-v-9639f721"><view class="sengderIcon data-v-9639f721"><image class="Icon data-v-9639f721" src="{{d}}" mode="scaleToFill"/></view><view class="Individual data-v-9639f721"><view class="name data-v-9639f721">{{e}}</view><view class="GenderAndAge data-v-9639f721"><view wx:if="{{f}}" class="male data-v-9639f721"><view class="data-v-9639f721"><image class="data-v-9639f721" style="width:20rpx;height:20rpx" src="{{g}}" mode="scaleToFill"/></view><view class="age data-v-9639f721"> 21 </view></view><view wx:else class="female data-v-9639f721"><view class="data-v-9639f721"><image class="data-v-9639f721" style="width:20rpx;height:20rpx" src="{{h}}" mode="scaleToFill"/></view><view class="age data-v-9639f721"> 21 </view></view></view><view class="nation data-v-9639f721">{{i}}</view></view><view class="Time data-v-9639f721">PK时间:{{j}}</view><view class="SessionAndGoldCoin data-v-9639f721"><view class="goldCoin data-v-9639f721"><image class="data-v-9639f721" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{k}}" mode="scaleToFill"/><view class="goldcard data-v-9639f721"><view class="goldnumber data-v-9639f721">{{l}}</view><view class="goldtext data-v-9639f721">金币</view></view></view><view class="Session data-v-9639f721"><image class="data-v-9639f721" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{m}}" mode="scaleToFill"/><view class="goldcard data-v-9639f721"><view class="goldnumber data-v-9639f721">{{n}}</view><view class="goldtext data-v-9639f721">PK场数</view></view></view></view></view><view class="button data-v-9639f721"><button class="accept data-v-9639f721" bindtap="{{o}}">聊了个天</button><button class="reject data-v-9639f721" bindtap="{{p}}">立即邀请</button></view></view></view><uni-popup wx:if="{{v}}" class="r data-v-9639f721" u-s="{{['d']}}" u-r="popup" u-i="9639f721-0" bind:__l="__l" u-p="{{v}}"><view class="popup-content data-v-9639f721"><view class="popup-title data-v-9639f721"><scroll-view scroll-y="true" class="scroll data-v-9639f721"><view wx:for="{{q}}" wx:for-item="item" class="card data-v-9639f721"><view class="card-content data-v-9639f721" bindtap="{{item.e}}" style="{{'border:' + item.f}}"><image class="avatar data-v-9639f721" src="{{item.a}}" mode="scaleToFill"/><view class="NameMoney data-v-9639f721"><view class="NameMoney_Name data-v-9639f721">{{item.b}}</view><view class="TimeMoney data-v-9639f721"><view class="data-v-9639f721">{{item.c}}</view><view class="data-v-9639f721">金币:{{item.d}}</view></view></view></view></view></scroll-view></view><view class="popup-btn data-v-9639f721"><button class="invite data-v-9639f721" type="primary" bindtap="{{r}}">邀请</button><button class="cancel data-v-9639f721" type="default" bindtap="{{s}}">取消</button></view></view></uni-popup><new-added-pk class="createModule r data-v-9639f721" u-r="createModule" u-i="9639f721-1" bind:__l="__l"></new-added-pk>
<view class="container data-v-9639f721"><view class="background data-v-9639f721"><image class="data-v-9639f721" style="width:100%;height:100%" src="{{a}}" mode="scaleToFill"/></view><view class="Navigation data-v-9639f721"><view class="Return data-v-9639f721" bindtap="{{c}}"><image class="Return data-v-9639f721" src="{{b}}" mode="scaleToFill"/></view></view><view class="Content data-v-9639f721"><view class="sender data-v-9639f721"><view class="sengderIcon data-v-9639f721"><image class="Icon data-v-9639f721" src="{{d}}" mode="scaleToFill"/></view><view class="Individual data-v-9639f721"><view class="name data-v-9639f721">{{e}}</view><view class="GenderAndAge data-v-9639f721"><view wx:if="{{f}}" class="male data-v-9639f721"><view class="data-v-9639f721"><image class="data-v-9639f721" style="width:20rpx;height:20rpx" src="{{g}}" mode="scaleToFill"/></view><view class="age data-v-9639f721">{{h}}</view></view><view wx:else class="female data-v-9639f721"><view class="data-v-9639f721"><image class="data-v-9639f721" style="width:20rpx;height:20rpx" src="{{i}}" mode="scaleToFill"/></view><view class="age data-v-9639f721">{{j}}</view></view></view><view class="nation data-v-9639f721">{{k}}</view></view><view class="Time data-v-9639f721">PK时间:{{l}}</view><view class="SessionAndGoldCoin data-v-9639f721"><view class="goldCoin data-v-9639f721"><image class="data-v-9639f721" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{m}}" mode="scaleToFill"/><view class="goldcard data-v-9639f721"><view class="goldnumber data-v-9639f721">{{n}}</view><view class="goldtext data-v-9639f721">金币</view></view></view><view class="Session data-v-9639f721"><image class="data-v-9639f721" style="width:72rpx;height:72rpx;margin-left:36rpx;margin-right:32rpx" src="{{o}}" mode="scaleToFill"/><view class="goldcard data-v-9639f721"><view class="goldnumber data-v-9639f721">{{p}}</view><view class="goldtext data-v-9639f721">PK场数</view></view></view></view></view><view wx:if="{{q}}" class="button data-v-9639f721"><button class="accept data-v-9639f721" bindtap="{{r}}">聊了个天</button><button class="reject data-v-9639f721" bindtap="{{s}}">立即邀请</button></view></view></view><uni-popup wx:if="{{y}}" class="r data-v-9639f721" u-s="{{['d']}}" u-r="popup" u-i="9639f721-0" bind:__l="__l" u-p="{{y}}"><view class="popup-content data-v-9639f721" style="background-image:url(../../static/queryMyCanUsePkbg.png);background-position:center"><view class="popup-title data-v-9639f721"><view class="popup-text data-v-9639f721">请选择您要参与的主播</view><scroll-view scroll-y="true" class="scroll data-v-9639f721"><view wx:for="{{t}}" wx:for-item="item" class="card data-v-9639f721"><view class="card-content data-v-9639f721" bindtap="{{item.f}}" style="{{'background:' + item.g}}"><view class="Avatarimg data-v-9639f721"><image class="avatar data-v-9639f721" src="{{item.a}}" mode="scaleToFill"/></view><view class="NameMoney data-v-9639f721"><view class="TimeMoney data-v-9639f721"><view class="NameMoney_Name data-v-9639f721">{{item.b}}</view><viewm u-s="{{['d']}}" class="goldnb data-v-9639f721" u-i="{{item.d}}" bind:__l="__l"><view class="goldimg data-v-9639f721"></view>{{item.c}}K</viewm></view><view class="TimeMoney_Time data-v-9639f721"><view class="pkTimeimg data-v-9639f721"></view><view class="data-v-9639f721">{{item.e}}</view></view></view></view></view></scroll-view></view><view class="popup-btn data-v-9639f721"><button class="invite data-v-9639f721" type="primary" bindtap="{{v}}">邀请</button><button class="cancel data-v-9639f721" type="default" bindtap="{{w}}">取消</button></view></view></uni-popup><new-added-pk class="createModule r data-v-9639f721" u-r="createModule" u-i="9639f721-2" bind:__l="__l"></new-added-pk>

View File

@@ -1,8 +1,8 @@
.popup-content.data-v-9639f721 {
width: 500rpx;
width: 600rpx;
height: 700rpx;
background-color: #fff;
background-repeat: no-repeat;
border-radius: 10px;
display: flex;
flex-direction: column;
@@ -20,26 +20,38 @@
margin-top: 50rpx;
}
.invite.data-v-9639f721 {
width: 200rpx;
height: 80rpx;
font-size: 30rpx;
width: 225.19rpx;
height: 78.24rpx;
font-size: 28.63rpx;
line-height: 80rpx;
border-radius: 20rpx;
background-color: #1aff0087;
border-top-left-radius: 50rpx;
border-bottom-left-radius: 50rpx;
border-bottom-right-radius: 50rpx;
background-image: linear-gradient(135deg, #4fcacd, #5fdbde);
}
.cancel.data-v-9639f721 {
width: 200rpx;
height: 80rpx;
font-size: 30rpx;
width: 225.19rpx;
height: 78.24rpx;
font-size: 28.63rpx;
line-height: 80rpx;
margin-left: 30rpx;
border-radius: 20rpx;
color: #03aba8;
border-top-left-radius: 50rpx;
border-bottom-left-radius: 50rpx;
border-bottom-right-radius: 50rpx;
border: 1rpx solid #03aba8;
}
.scroll.data-v-9639f721 {
width: 470rpx;
height: 500rpx;
border: 2px solid #afafaf;
height: 400rpx;
border-radius: 10px;
/* background-color: #fff; */
}
.popup-text.data-v-9639f721 {
color: #161616;
font-size: 36.26rpx;
font-weight: bold;
margin-bottom: 30rpx;
}
.card.data-v-9639f721 {
margin-top: 10rpx;
@@ -47,10 +59,12 @@
}
.card-content.data-v-9639f721 {
width: 445rpx;
height: 75rpx;
height: 100rpx;
background-color: #ffffff;
/* border: 2px solid #afafaf; */
border-radius: 10px;
border-radius: 10rpx;
display: flex;
align-items: center;
font-size: 28rpx;
color: rgb(127, 127, 127);
}
@@ -61,15 +75,46 @@
z-index: 998;
width: 100vw;
}
.Avatarimg.data-v-9639f721 {
width: 90rpx;
height: 90rpx;
border-radius: 50%;
background-color: #dddddd;
margin-right: 20rpx;
margin-left: 20rpx;
}
.avatar.data-v-9639f721 {
width: 60rpx;
height: 60rpx;
width: 100%;
height: 100%;
border-radius: 50%;
}
.TimeMoney.data-v-9639f721 {
width: 300rpx;
display: flex;
justify-content: space-between;
font-weight: bold;
font-size: 27rpx;
color: #161616;
}
.goldnb.data-v-9639f721 {
display: flex;
margin-left: 40rpx;
}
.TimeMoney_Time.data-v-9639f721 {
display: flex;
margin-top: 13rpx;
}
.pkTimeimg.data-v-9639f721 {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAkCAYAAAAHKVPcAAAAAXNSR0IArs4c6QAAC2VJREFUWEeVmAlwVdUZx//nri95WV7IAiQIYbdERZCxbhXBIiRCJ4WBKg6K1rq1IC6gFVvtaLEQWay1KLg7IGDFUVFAWx0UgShuaIjIDmmSl+Qlb7/rOadz7n3ZwOJ437yZm/fuOed3vu///b/zQvADV11dndZSMnJmOydTTZsNguV+XZSMLZs8ut/RH3r+TJ/titBlriQtjDEg4TCaZVqbyhId9114btnJznHk1Alqo3wcOF/X4GBEq8ORsBksi6JP2moep7oXXnhuYdfgHwPa3eZOt2T59WwAlAMnXKDdptBNKzrISs2+sqJkq5ijF8QnEediRZL/nXBJdrPLkaQcBgdaO1xEv00hGLc+rCjPmVcfJmPiFspslxUwEItyhHMU1FeWJmqnTStNi4kPHjyo/+dk/0Ojx2YPUBlBhAItLkPSZeiwXGSnbWcUTVdfNab/u10QYtDRwqHfxykZSBnAABw/amL3c2FIJ0xkDc2BVB5EjMtgnIPz7i2ISRgIJEJMVeLbVZk//drd+dt+PuPkeUWF2D77rpJ+rEBF2mFIOBRJmyJtOehnWvGLdGtUF8SuiDOlgSlbHQZwwrHzpVbU70ig3/l54IUBJC0OQvzHGeVgjIFw8SwBUTwA7zsBJzYhge8OcHbHJcN4qTow8E5UIcgrlpGyXJgOhekwyLaL82Cv6ILY2WTNapC0jS44tiw+AaNAR7AsGx0GIEkErknBYhbsDgss5YK4ghYgEkA0GVKeBq0kAB7UunJMXdiXj1GaL6jQBm7el0Y6bmPQ6ABch4IxDoUxDCXOm10QdSdjfQ4rOSe2v9gabN1nwr6gD2wXoA6F05SC3WTASbmgKQcVIxQMK1cRCsmQCBCLMRw65uLb7x3klGZDGxECD6peZKjLcdZAArmYI3Y07aVtwPk6NAXIB8P5Or+jlzBfP24tWvfn8FLnnBBcCjhRC/aROMx2C7kyxazqICorc5GTqwBcgiQTiBcIgSQB6RTFlq1JvPpGAsrgPLDSHC9aXOyaplBejnS/bOWOtih7KDhCGTwqm38454KiX/aCeGRjqqr2GH1HlJPdasA8GIUZsVA5IYDbby2AHlChqjJkWQIhkrewKDAhB6EF7804DJPi0VUdqI8pYANyQDgHtSkuD0V3XH1p+aQPI2Gt4RvzgZmT1JcvG112oAvi3T08b+3HyTrD5QOcDhPG/nbYEQsLbs/H5Ml5UDUFiiJDksTi/u7jsRhCoZDYbPeVqRzOOVY9H8OOBhk0X/MikpVOY/4lqbdDJR0zxo0b55xmVnOeTK4IJ+hdTJjT1y1INZqYf1sepl6dD01XIcudERA7J/jmmzrctWAh7rv/Xky66kpPjF0wPUAWr4qhHjpsEHDKMbmgDaMH87WTq4bd0gtixdvpsvfr6GHKuW4daEf6cBzjL9Jw/8JiaJoGRVX8/ItyFG8QbNmyFWueeRZzrp+NmbNm9IiEfyuARHqSKYbf1iSQzNcBxlFgJHH92BQUlc+onDpic5djzlqVeKQjzR6kCQfGFy0gaQsbXilDfn4AiqZ0aUDk3ocANmz4F9at24Ab587B9BnV3rK909INsnGbgQ3fEdiUwzFcXD+oFX1C0kk9G8OrqoZbniaqlsWPuhTl9qEOJPZHcd3MIG6YU+QJUeiASBkzygCIMWvWPI8tb7+LW269GVOnVvoNQAizJ0pGrGmD4dqVJhzdl+A4Hsbocg5NI7+bMXP4s+SPmxKjdh/gdQrhMD5tQuJECps3DUBJ32yoIg2S5EF0RqDTiZYtXYmPP9qJefN/j6smT+z28J4g3r0f8IdfTmNPK/EqZWA6giuG2FBV1M6eM/IiMv2J1M3xpLuWJh0Ytc0YWMywZvVZUFQtEwXJt2S/ILoWe/CBh/D551/gvvsXYvwVv8hYur9qt0Az9xxY/56F9d8J82PIj8VQNTQl5uODBmv9ybSaeI1h4163LY3UZ2FMnZSF+fP6Qtc1SLIP4EXCW9+P+YnjDXjoz48gEmlHdfU0DyIQ0KHrAei6Dj2gQ9NUj6Cz2b33iY2nvuRwLAYtEsevhiS9jekBVJOqmsQ6y+azWXMS8b1h3HJDCNdeU+T5goDorohOCGDpY8uxe/ceCC9obm5CKFTgA3K/z8iyAlVToSoqJk6ciFtuvQk7ai3UfMbhmgxqWxxVg5JeohSZLyRTahKvOzafzpsSiO1twZ139MGvqwuhKJ0Q3RWRyQeeXr0W72zZ6nXSY8ePoaS4BKoqekWPMhaOSiRcPn4CFi6ah/d2mnjyK8AxGbLaYriiLOXVsKaRx0llTWKdbfPZvCWJ+Kdh3HZzH/xmZhEU1XfHnmXpCwNwHAfr121CS7gNkydfiVBBCJqueSCqIpxVVJUobTnjGAQb37fw0n7uGVaoJYIL+poQrq8obAWpXBZ/3LL5PTxuI727EdVTc/GH2/ueBtHrGEYIGGUejKASi3Wa2anC9K2L4NH1Bj5u5J62SluaMbyIer1HJlhMpq6M35xK8bVwGaxdjRg6QMbTfz8LkiQi0SlKPwK9QMThxutYfsFkpNvllp034hHT4Jj7lIGogDcpzjWaUZAjxnDoKq4lizYkfrbrAN8v+jurb0P8cBJbXi9HKKRBzviDyEmP6uzZrro9umcP6/TtjHW/95GFf+4DTItBpP2S/Jhv65Rh8EBtmDf3pCXxg5RhGImbSNWGcf3cYsydld9tVJnyPO1o3qtrdXtCFwMHHBu4Z20aBwy/5Rc1tqA85IKAiSPgob/9tWK4N2/l0sRiw2aPenPWR8BSFBufKUUoz09JdyR8jJ4wp/YLD6DHh6++ZeC1ExLSFgPtMHG+1C7KEhLnkCT+l2VLKh725lvyUrxw23EcliXki8On8WUEY8flYtm9Ic+oPIhuWZz6S6ErEd7aGQABsmevhdV7OMKW30SKmlpRlutHgTOYZcV88KJFFc1dm6p6LL4w6fBlMgGUtI3U90lMm5KHBdcFfUv+AV30PkN0n7YFS+1eCy/UMhw1/cgp4TjODiQ9MUq+lS55YnnF4l6R3bSJy6u/S+zghF8qZKiZDtINJi4eE8B9c4LIzvI944eqxA+/75iMARvfSuODRoKTZiZIUQPDaRS6zEE4E0773ZABeWPvvvss49T0YsEzqf5fNjm7iEzKxaQBMLAOFwGZ4JrxKqou1RAISL1y7muWwHU4Ptxp4oN9FI0BFc0J5kMnLJSbHQgqFIQxca5JZGXhouWPVezvzONpgr99ZXhIfVTfDpkMExtUFYIsISJG4CYpzisjGNKXIC+LeL0jZQDNEY6GKIeZp6IhyeDQzPQdBpxoCjlBjhHFLlibmwwEyNXLl476qGednwaxq8UcFjaVF97clrrsSKNQsMiiaDQEQQ1QZQkBlSAgA7IkfuhyxC2O1mR3D+cugxJNwnAoCkaoyBmpYURTssGsT02rqan46lSjOQ1iRzv7xnTIOTuiDMf3JdFxiPK4KROvDWQk4RmN16x8uxSY4m/uUAQNE0PUNPQ8GdbYENoJ0HLMFOcIOrqYvVpdVHbjhAnE/b+RqG+IF9YHctsiFsfRdhtHGm2EKH0j8an1fMRVZjGCiQaVSl2hAuGmnEGmDHkSRaluozTgID/AYVockkJa7cHB/TuSyvgcnSGYS5ClcYyS6Ly7J/T/xxnTsem/Tn3YZmdHUy6SaYpCly5YdEnBE52DNm9uKNx3mPU3Xd6vfyErKusjF+gq75syeI5t8pTl8BOSxL/OzR3y5f7clmuP6torOVkEqkpAGUNf6rzw4MUlN50RYuuR+MiwKz3lMD5YoXzD3FG5fyKEiP8U/ORr097GgUeU3AO2QgIiga5LUWTYN86/uOTFM0L85JV+ZMD6utiUDkg1DkeIOO5zd44pePjUIf8DXlKAwOz4kbYAAAAASUVORK5CYII=);
background-size: 100% 100%;
width: 31.49rpx;
height: 31.49rpx;
margin-right: 20rpx;
}
.goldimg.data-v-9639f721 {
background-image: url(data:image/png;base64,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);
background-size: 100% 100%;
width: 31.49rpx;
height: 35rpx;
}
.NameMoney.data-v-9639f721 {
display: flex;
@@ -77,6 +122,9 @@
}
.NameMoney_Name.data-v-9639f721 {
text-align: left;
font-weight: bold;
font-size: 27rpx;
color: #161616;
}
.background.data-v-9639f721 {
position: fixed;