Commit 23f282bd authored by youjie's avatar youjie

修复赞羊

parent acd3595d
......@@ -66,7 +66,7 @@
"quickapp" : {},
/* 小程序特有相关 */
"mp-weixin" : {
"appid" : "wxaeb077c07ed6f30d",
"appid" : "wxacd9f8cc3480d29e",
"setting" : {
"urlCheck" : false,
"minified" : false
......
......@@ -144,113 +144,113 @@
// ]
// },
// {
// "root": "pages/share",
// "pages": [{
// "path": "index/index",
// "style": {
// "navigationStyle": "custom"
// }
// },
// {
// "path": "add/add"
// },
// {
// "path": "cash/cash"
// },
// {
// "path": "level/level"
// },
// {
// "path": "level/level_t"
// },
// {
// "path": "examine"
// },
// {
// "path": "buyVip/index"
// },
// {
// "path": "vipBuyCommission/vipBuyCommission"
// },
// {
// "path": "buyRecord/index"
// },
// {
// "path": "buyInterest/index"
// },
// {
// "path": "salesvolume", //销售额
// "style": {
// "navigationStyle": "custom"
// }
// },
// {
// "path": "time/choiceDate" //时间选择
// }
// ]
// },
// {
// "root": "pages/share-team",
// "pages": [{
// "path": "share-team"
// }, {
// "path": "share-detail",
// "style": {
// "navigationStyle": "custom"
// }
// }]
// },
// {
// "root": "pages/share-order",
// "pages": [{
// "path": "share-order"
// }]
// },
// {
// "root": "pages/share-qrcode",
// "pages": [{
// "path": "share-qrcode"
// }, {
// "path": "share-select-school"
// }]
// },
// {
// "root": "pages/share-money",
// "pages": [{
// "path": "share-money"
// }]
// },
// {
// "root": "pages/coupon",
// "pages": [{
// "path": "list/list"
// },
// {
// "path": "details/details"
// },
// {
// "path": "index/index"
// },
// {
// "path": "cards/list" //储蓄卡列表
// },
// {
// "path": "cards/carddetailed" //卡片明细
// }, {
// "path": "cards/cardsreceive", //储蓄卡的领取
// "style": {
// "navigationStyle": "custom"
// }
// },
// {
// "path": "cards/purchase", //购买储蓄卡
// "style": {
// "navigationStyle": "custom"
// }
// }
// ]
// },
{
"root": "pages/share",
"pages": [{
"path": "index/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "add/add"
},
{
"path": "cash/cash"
},
{
"path": "level/level"
},
{
"path": "level/level_t"
},
{
"path": "examine"
},
{
"path": "buyVip/index"
},
{
"path": "vipBuyCommission/vipBuyCommission"
},
{
"path": "buyRecord/index"
},
{
"path": "buyInterest/index"
},
{
"path": "salesvolume", //销售额
"style": {
"navigationStyle": "custom"
}
},
{
"path": "time/choiceDate" //时间选择
}
]
},
{
"root": "pages/share-team",
"pages": [{
"path": "share-team"
}, {
"path": "share-detail",
"style": {
"navigationStyle": "custom"
}
}]
},
{
"root": "pages/share-order",
"pages": [{
"path": "share-order"
}]
},
{
"root": "pages/share-qrcode",
"pages": [{
"path": "share-qrcode"
}, {
"path": "share-select-school"
}]
},
{
"root": "pages/share-money",
"pages": [{
"path": "share-money"
}]
},
{
"root": "pages/coupon",
"pages": [{
"path": "list/list"
},
{
"path": "details/details"
},
{
"path": "index/index"
},
{
"path": "cards/list" //储蓄卡列表
},
{
"path": "cards/carddetailed" //卡片明细
}, {
"path": "cards/cardsreceive", //储蓄卡的领取
"style": {
"navigationStyle": "custom"
}
},
{
"path": "cards/purchase", //购买储蓄卡
"style": {
"navigationStyle": "custom"
}
}
]
},
{
"root": "pages/order-submit",
"pages": [{
......
......@@ -9,13 +9,12 @@
">
<Text class="grid-text" v-if='IsEducation!=1'>商品库存有限,请尽快下单哦</Text>
<Text class="grid-text"
v-if='IsEducation==1'>{{list[0].GoodsList.length?list[0].GoodsList.length:'0'}}个课程</Text>
<Text @click="edit" v-if="editType == false && list[0].GoodsList.length>0" class="grid-text_r">编辑</Text>
v-if='IsEducation==1'>{{list[0]&&list[0].GoodsList&&list[0].GoodsList.length?list[0].GoodsList.length:'0'}}个课程</Text>
<Text @click="edit" v-if="editType == false && list[0]&&list[0].GoodsList&&list[0].GoodsList.length>0" class="grid-text_r">编辑</Text>
<Text @click="edit" v-if="editType == true" class="grid-text_r">完成</Text>
</view>
<view style="width: 100%; height: 30rpx; background: #f7f7f7; margin: 20rpx 0;"></view>
<u-empty v-if="emptyshow == true" text="购物车还是空的哦" mode="car"></u-empty>
<view v-if="list.length > 0"
style="height: calc(100vh - 60px-30px-35px-20px);width: calc(100vw);overflow: hidden;padding-top: 10px;">
<scroll-view :scroll-y="true" :enable-back-to-top="true" :enable-flex="true" :style="{ height: '100%' }">
......@@ -77,7 +76,7 @@
<view class="The-title">
{{ item.GoodsName}}
</view>
<view v-if="item.EduData.ClassCondition.length>0" class="limit" @touchstart="mouseover()" @touchend="mouseLeave()">
<view v-if="item.EduData&&item.EduData.ClassCondition&&item.EduData.ClassCondition.length>0" class="limit" @touchstart="mouseover()" @touchend="mouseLeave()">
<u-icon name="lock" size="44" :color="mc" />
<view class="limit-box" v-show="limitShow">
此课程有报名限制,请点击详情查看
......@@ -113,7 +112,7 @@
<!-- <Text v-if='u.TenantId==27&&item.EduData.ClassTime' style="color: #a0a09d;font-size: 22rpx;margin-right: 5rpx;">
上课时间:{{item.EduData.ClassTime}}
</Text> -->
<view v-if="item.EduData.ClassTimeList.length>0&&u.TenantId==27"
<view v-if="item.EduData&&item.EduData.ClassTimeList&&item.EduData.ClassTimeList.length>0&&u.TenantId==27"
style="color: #a0a09d;font-size: 22rpx;margin-right: 5rpx;">
<view v-if="!item.show">
<view style='display: flex;
......
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