Commit 7385f3c3 authored by Mac's avatar Mac

1

parent 0b37eaff
......@@ -232,8 +232,8 @@
<view class="box_c_b_item_r">{{detailsData.PrizeNum}}</view>
</view>
<view class="details" style="margin-top: 15px;color: #FFF;">
<rich-text :nodes="detailsData.Content"></rich-text>
<view class="details" style="margin-top: 15px;color: #FFF;" v-html='detailsData.Content'>
<!-- <rich-text :nodes="detailsData.Content"></rich-text> -->
</view>
</view>
</view>
......@@ -270,7 +270,7 @@
</view>
</view>
</view>
<view v-if="detailsData && detailsData.ListState==1 &&type==2 && detailsData.EnrollList.length>0">
<view v-if="detailsData && detailsData.ListState==1 && detailsData.EnrollList.length>0">
<view class="box_conent_basic" v-for="(x,y) in detailsData.EnrollList">
<view class="box_conent_basic_img">
<view class="box_conent_basic_img_t">参数内容</view>
......
......@@ -180,13 +180,13 @@
that.mainColor = that.$uiConfig.mainColor;
var myDate = new Date();
that.msg.Year = myDate.getFullYear();
this.u = uni.getStorageSync("mall_UserInfo");
if (!this.u) {
this.u = {
that.u = uni.getStorageSync("mall_UserInfo");
if (!that.u) {
that.u = {
nickName: "未登录",
avatarUrl: "",
};
this.showAuth = true;
that.showAuth = true;
} else {
that.getList()
}
......@@ -195,7 +195,7 @@
methods:{
reloadUserinfo() {
this.u = uni.getStorageSync("mall_UserInfo");
that.getList()
this.getList()
},
//关闭登录窗口
gbAuth() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment