123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- <template>
- <view>
- <view class="teaching_case" v-for="(i,index) in classList" :key="i+'b'" @click="gotoTeDetail" :data-index="index">
- <view class="img cell-img">
- <image :src="i.img" v-if="!item.btn" mode="aspectFill"></image>
- </view>
- <view class="right">
- <view class="">
- <view class="title">
- <view v-if="!item.btn" class="tag bqZ-font">类型</view>
- <text class="btn-font" v-if="!item.btn" style="">{{i.className}}</text>
- </view>
- <view v-if="!item.btn" class="introduce fwb-font">
- {{ i.intro }}
- </view>
- </view>
- <view class="operate">
- <view class="left">
- <view class="opr" style="padding-right: 25rpx">
- <view class="icon">
- <image src="http://43.139.158.220:5007/img/static/yym/Star 1 (Stroke).png"
- style="width: 28rpx; height: 26rpx" mode="aspectFill"></image>
- </view>
- <text class="fz-font">收藏</text>
- </view>
- <view class="opr">
- <view class="icon">
- <image src="http://43.139.158.220:5007/img/static/yym/Vector (Stroke).png"
- style="width: 22rpx; height: 26rpx" mode="aspectFill"></image>
- </view>
- <text class="fz-font">订阅</text>
- </view>
- </view>
- <view class="">
- <button class="btn sBtn-font" disableEventPropagation="true" @click.stop="join">
- 立即参与
- </button>
- </view>
- </view>
- </view>
- </view>
- <!-- 活动列表 -->
- <view class="teaching_case" v-for="(i,index) in activeList" @click="gotoACdetail" :data-index="index"
- :key="index+'a'">
- <view class="img cell-img">
- <image :src="i.pic" mode="aspectFill"></image>
- </view>
- <view class="right">
- <view class="">
- <view class="title">
- <view class="tag bqZ-font">类型</view>
- <text class="three-font">{{ i.acName }}</text>
- </view>
- <view class="introduce fwb-font">
- {{ i.brief }}
- </view>
- </view>
- <view class="operate">
- <view class="left">
- <view class="price num-font"><text class="three-font">¥</text>{{ i.cost }}</view>
- <view class="pernum fz-font">已报名{{ i.pers }}人</view>
- </view>
- <view class="">
- <button class="btn sBtn-font" @click.stop="actApply">立即报名</button>
- </view>
- </view>
- </view>
- </view>
- <!-- <view class="" style="height: 50rpx;width: 100%;background-color: #ffffff;"></view> -->
- </view>
- </template>
- <script>
- export default {
- name: "teaching-case",
- props: {
- item: {
- type: Object,
- default () {
- return {
- btn: 0, //0教研列表 1活动列表
- btn_2: 0 //0 activityList 1 activityList_2
- };
- },
- },
- classList: {
- type: Array,
- default () {
- return [];
- },
- },
- activeList: {
- type: Array,
- default () {
- return [];
- },
- },
- indexId: {
- type: Number,
- },
- },
- data() {
- return {};
- },
- methods: {
- gotoTeDetail(e) {
- // console.log(e.currentTarget.dataset['index'], 123);
- let edata = e.currentTarget.dataset['index']
- const value = this.$store.state.user.openid;
- const urls = [
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1181",
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1183",
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1210",
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1234",
- "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00351166273N",
- "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00330324841N",
- "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00231455802N",
- "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00406339964N",
- ];
- console.log(value);
- if (value == '') {
- // console.log(111);
- uni.navigateTo({
- url: "/pages/login/login",
- });
- } else {
- switch (edata) {
- case 0:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[0]),
- });
- break;
- case 1:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[1]),
- });
- break;
- case 2:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[2]),
- });
- break;
- case 3:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[3]),
- });
- break;
- default:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[3]),
- });
- break;
- }
- }
- },
- gotoACdetail(e) {
- console.log(e.currentTarget.dataset['index'], 123);
- let edata = e.currentTarget.dataset['index']
- const value = this.$store.state.user.openid;
- const urls = [
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1181",
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1183",
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1210",
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1234",
- ];
- console.log(value);
- if (value == '') {
- console.log(111);
- uni.navigateTo({
- url: "/pages/login/login",
- });
- } else {
- switch (edata) {
- case 0:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[0]),
- });
- break;
- case 1:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[1]),
- });
- break;
- case 2:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[2]),
- });
- break;
- case 3:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[3]),
- });
- break;
- default:
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[3]),
- });
- break;
- }
- }
- // if (this.item.btn) {
- // if (value == '') {
- // uni.navigateTo({
- // url: "/pages/login/login",
- // });
- // } else {
- // if (this.item.btn_2 === 1) {
- // const urls = [
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1181",
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1183",
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1210",
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1234",
- // ];
- // let index = this.indexId;
- // if (index >= 0 && index < urls.length) {
- // const url = urls[index];
- // uni.navigateTo({
- // url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
- // });
- // }
- // } else {
- // //常规教研活动
- // const urls = [
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1183",
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1211",
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1210",
- // "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1209",
- // ];
- // let index = this.indexId;
- // if (index >= 0 && index < urls.length) {
- // const url = urls[index];
- // uni.navigateTo({
- // url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
- // });
- // }
- // }
- // }
- // } else {
- // const value = this.$store.state.user.openid;
- // if (value == '') {
- // uni.navigateTo({
- // url: "/pages/login/login",
- // });
- // } else {
- // //推荐课程
- // const urls = [
- // "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00351166273N",
- // "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00330324841N",
- // "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00231455802N",
- // "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00406339964N",
- // ];
- // let index = this.indexId;
- // if (index >= 0 && index < urls.length) {
- // const url = urls[index];
- // uni.navigateTo({
- // url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
- // });
- // }
- // }
- // }
- },
- join() {
- const value = this.$store.state.user.openid;
- if (value == '') {
- uni.navigateTo({
- url: "/pages/login/login",
- });
- return 1;
- } else {
- //推荐课程
- const urls = [
- "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00351166273N",
- "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00330324841N",
- "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00231455802N",
- "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00406339964N",
- ];
- let index = this.indexId;
- if (index >= 0 && index < urls.length) {
- const url = urls[index];
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
- });
- }
- }
- },
- actApply() {
- const value = this.$store.state.user.openid;
- if (value == '') {
- uni.navigateTo({
- url: "/pages/login/login",
- });
- return 1;
- } else {
- if (this.item.btn_2 === 1) {
- const urls = [
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1181",
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1183",
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1210",
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1234",
- ];
- let index = this.indexId;
- if (index >= 0 && index < urls.length) {
- const url = urls[index];
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
- });
- }
- } else {
- //常规教研活动
- const urls = [
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1183",
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1211",
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1210",
- "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1209",
- ];
- let index = this.indexId;
- if (index >= 0 && index < urls.length) {
- const url = urls[index];
- uni.navigateTo({
- url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
- });
- }
- }
- }
- },
- },
- };
- </script>
- <style lang="scss">
- .AClist {
- display: flex;
- justify-content: space-between;
- background-color: #ffffff;
- padding: 20rpx 30rpx;
- }
- .teaching_case {
- display: flex;
- justify-content: space-between;
- // margin-bottom: 10px;
- background-color: #ffffff;
- padding: 20rpx 30rpx;
- // padding-bottom: 50rpx;
- .img {
- width: 160rpx;
- height: 160rpx;
- image {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- }
- .right {
- padding-left: 20rpx;
- flex: 1;
- // height: 300px;
- width: 100rpx;
- display: flex;
- flex-direction: column;
- // align-content: flex-end ;
- justify-content: space-between;
- // align-content: space-between;
- .title {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 15rpx;
- // margin-bottom: 10rpx;
- .tag {
- border: 1px #00b2b6 solid;
- flex-shrink: 0;
- letter-spacing: 2rpx;
- width: 64rpx;
- height: 32rpx;
- display: flex;
- white-space: nowrap;
- justify-content: center;
- align-items: center;
- border-radius: 4rpx;
- margin-right: 10rpx;
- color: #00b2b6;
- line-height: 32rpx;
- }
- text {
- font-weight: bold;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .introduce {
- // font-size: 28rpx;
- color: #a7a7a7;
- // padding: 20rpx 0;
- // width: 560rpx;
- height: 40rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .operate {
- display: flex;
- justify-content: space-between;
- // align-items: baseline;
- align-items: flex-end;
- .left {
- display: flex;
- // justify-content: space-between;
- // align-items: center;
- align-items: baseline;
- // width: 200rpx;
- .opr {
- display: flex;
- align-items: center;
- .icon {
- width: 32rpx;
- height: 32rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- text {
- padding-left: 3rpx;
- color: #666666;
- }
- }
- .pernum {
- color: #666666;
- // font-size: 30rpx;
- }
- .price {
- // font-size: 40rpx;
- font-weight: bold;
- color: #f8a551;
- padding-right: 10rpx;
- }
- }
- .btn {
- z-index: 5;
- border: none;
- padding: 0;
- text-align: center;
- // padding: 8px, 24px, 8px, 24px;
- background-color: rgba(48, 129, 232, 1);
- color: #fff;
- border-radius: 100rpx;
- float: right;
- width: 144rpx;
- height: 48rpx;
- line-height: 48rpx;
- letter-spacing: 1px;
- }
- }
- }
- }
- </style>
|