作者 xuqiang

提交

... ... @@ -121,7 +121,7 @@
.changeMsg .changeMsgBottom{display: flex;justify-content: flex-end;align-items: center;color: #894746;font-size: 28rpx;}
.changeMsgBottom.msgBottomDis{color: #C8C9CC;}
.changeMsgBottom image{width: 28rpx;height: 28rpx;margin-right: 10rpx;}
.writeMsg{height: 82rpx;background: #F2F3F5;border-radius: 18rpx;margin-top: 20rpx;padding: 10rpx;}
.writeMsg{height: 150rpx;background: #F2F3F5;border-radius: 18rpx;margin-top: 20rpx;padding: 10rpx;}
.writeMsg textarea{color: #C8C9CC;font-size: 28rpx;width: 100%;height: 100%;}
.sendMsgBtn{height: 80rpx;background: #894746;text-align: center;line-height: 80rpx;color: #fff;font-size: 28rpx;border-radius: 18rpx;margin-top: 30rpx;}
</style>
... ...
... ... @@ -70,6 +70,7 @@ Vue.prototype.$request=function(url,data='',loadType = 1){
if(res.data.code == 90001){
reslove(res.data)
uni.clearStorageSync()
window.location.href
}
if(res.data.code == 4){
reslove({"code":0,"msg":"没有相关数据"})
... ...
... ... @@ -67,7 +67,7 @@
</index-obituary-title>
<!-- 为亲属献礼区域 -->
<index-obituary-title :title="4" :temp="temp">
<swiper class="giftList" :indicator-dots="false" vertical="true" circular="true" :autoplay="true" :interval="3000" :duration="1000">
<swiper class="giftList" v-if="obi.GiftArray.length > 0" :indicator-dots="false" vertical="true" circular="true" :autoplay="true" :interval="3000" :duration="1000">
<swiper-item class="itemList" v-for="(item,index) in obi.GiftArray" :key="index">
<view class="giftItem" v-for="(subItem,subIndex) in item" :key="subIndex">
<image :src="subItem.Image" mode="aspectFill"></image>
... ... @@ -94,7 +94,7 @@
</index-obituary-title>
<!-- 最后的祝福 -->
<index-obituary-title :title="5" :temp="temp">
<swiper class="msgList" :indicator-dots="false" :autoplay="true" :vertical="true" :circular="true" :interval="3000" :duration="1000">
<swiper class="msgList" v-if="obi.MessageArray.length > 0" :indicator-dots="false" :autoplay="true" :vertical="true" :circular="true" :interval="3000" :duration="1000">
<swiper-item class="msgItem" v-for="(item,index) in obi.MessageArray" :key="index">
<!-- <view class="msgItem"> -->
<view class="msgImg">
... ...