Commit 7385f3c3 authored by Mac's avatar Mac

1

parent 0b37eaff
...@@ -232,8 +232,8 @@ ...@@ -232,8 +232,8 @@
<view class="box_c_b_item_r">{{detailsData.PrizeNum}}</view> <view class="box_c_b_item_r">{{detailsData.PrizeNum}}</view>
</view> </view>
<view class="details" style="margin-top: 15px;color: #FFF;"> <view class="details" style="margin-top: 15px;color: #FFF;" v-html='detailsData.Content'>
<rich-text :nodes="detailsData.Content"></rich-text> <!-- <rich-text :nodes="detailsData.Content"></rich-text> -->
</view> </view>
</view> </view>
</view> </view>
...@@ -270,7 +270,7 @@ ...@@ -270,7 +270,7 @@
</view> </view>
</view> </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" v-for="(x,y) in detailsData.EnrollList">
<view class="box_conent_basic_img"> <view class="box_conent_basic_img">
<view class="box_conent_basic_img_t">参数内容</view> <view class="box_conent_basic_img_t">参数内容</view>
......
...@@ -180,13 +180,13 @@ ...@@ -180,13 +180,13 @@
that.mainColor = that.$uiConfig.mainColor; that.mainColor = that.$uiConfig.mainColor;
var myDate = new Date(); var myDate = new Date();
that.msg.Year = myDate.getFullYear(); that.msg.Year = myDate.getFullYear();
this.u = uni.getStorageSync("mall_UserInfo"); that.u = uni.getStorageSync("mall_UserInfo");
if (!this.u) { if (!that.u) {
this.u = { that.u = {
nickName: "未登录", nickName: "未登录",
avatarUrl: "", avatarUrl: "",
}; };
this.showAuth = true; that.showAuth = true;
} else { } else {
that.getList() that.getList()
} }
...@@ -195,7 +195,7 @@ ...@@ -195,7 +195,7 @@
methods:{ methods:{
reloadUserinfo() { reloadUserinfo() {
this.u = uni.getStorageSync("mall_UserInfo"); this.u = uni.getStorageSync("mall_UserInfo");
that.getList() this.getList()
}, },
//关闭登录窗口 //关闭登录窗口
gbAuth() { 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