更新项目,ios打包

This commit is contained in:
liuyuan
2025-03-17 17:00:10 +08:00
parent efb76a1716
commit 896f897014
27 changed files with 1147 additions and 237 deletions

View File

@@ -8,33 +8,7 @@
<text class="curriculum_item_name">{{ item.name }}</text>
</view>
</view>
<!-- 应对华为审核去掉app跳转 -->
<view class="appJump" v-if="$platform=='android'">
<view class="app_item wumen" @click="appjumpfun('wumen')">
<view class="img">
<image src="@/static/logo_wumen.png" mode="widthFix"></image>
</view>
<view class="text">
<text>吴门医述</text>
</view>
</view>
<view class="app_item zmzm" @click="appjumpfun('zmzm')">
<view class="img">
<image src="@/static/logo_zmzm.png" mode="widthFix"></image>
</view>
<view class="text">
<text>众妙之门</text>
</view>
</view>
<view class="app_item fzds" @click="appjumpfun('nuttyreading')">
<view class="img">
<image src="@/static/logo_fzds.png" mode="widthFix"></image>
</view>
<view class="text">
<text>疯子读书</text>
</view>
</view>
</view>
<view class="cate_box">
<scroll-view scroll-x="true">
<view class="cate_list" v-if="cateList.length>0">
@@ -65,6 +39,7 @@
<view class="miaosha_list">
<view class="miaosha_item" @click="goGoodsDetail(v)"
v-for="(v, i) in seckillLst">
<text class="miaosha_youhui" v-if="v.isVipPrice==1&&v.vipPrice!=null&&v.vipPrice!=0">VIP优惠</text>
<image class="book_image" :src="v.productImages" mode="aspectFit"></image>
<view class="book_name">{{ v.productName }}</view>
</view>
@@ -152,12 +127,7 @@ export default {
name: "免费课程",
url: "/pages/curriculum/index/free",
imgUrl: require("@/static/icon/home_bg2.png")
},
{
name: "VIP情况",
url: "/pages/vip/index",
imgUrl: require("@/static/icon/home_bg3.png")
},
}
]
}else{
this.curriculumList = [
@@ -530,6 +500,7 @@ export default {
width: 180rpx;
margin-right: 20rpx;
text-align: center;
position: relative;
.book_image{
width: 180rpx;
@@ -588,7 +559,7 @@ export default {
background-color: rgba(125, 193, 240, 0.15);
display: block;
width: 100% !important;
height: 170rpx;
height: 180rpx;
}
}
}
@@ -645,4 +616,16 @@ export default {
}
}
}
.miaosha_youhui{
position: absolute;
left: 0rpx;
top: 0;
z-index: 99;
background: #ff1f00;
padding: 0 10rpx;
border-radius: 10rpx;
line-height: 38rpx;
font-size: 20rpx;
color: #fff;
}
</style>