listBlock1.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. <template>
  2. <view class="">
  3. <view class="listBlock1" v-for="(i,index) in classList" :key="index+'a'" @click="gotoDetail" :data-aid="i.acId">
  4. <view class="img cell-img">
  5. <image :src="i.pic" mode="aspectFill"></image>
  6. </view>
  7. <view class="right">
  8. <view class="">
  9. <view class="title">
  10. <view class="tag bqZ-font">类型</view>
  11. <text class="btn-font" style="">
  12. {{i.acName}}
  13. </text>
  14. </view>
  15. <view class="introduce fwb-font">
  16. {{ i.brief }}
  17. </view>
  18. </view>
  19. <view class="operate">
  20. <view class="left">
  21. <view class="opr" style="padding-right: 25rpx" @click.stop="coll" :data-e="i">
  22. <view class="icon">
  23. <image :src="collArr.includes(i.acId) ? pic_coll2 : pic_coll "
  24. style="width: 28rpx; height: 26rpx" mode="aspectFill"></image>
  25. </view>
  26. <text class="fz-font">收藏</text>
  27. </view>
  28. <view class="opr" @click.stop="subaaa" :data-e="i">
  29. <view class="icon">
  30. <image :src="subArr.includes(i.acId) ? pic_sub2 : pic_sub "
  31. style="width: 22rpx; height: 26rpx" mode="aspectFill"></image>
  32. </view>
  33. <text class="fz-font">订阅</text>
  34. </view>
  35. </view>
  36. <view class="">
  37. <button class="btn sBtn-font" @click="join" :data-index="index">
  38. 立即参与
  39. </button>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. name: "listBlock1",
  49. props: {
  50. classList: {
  51. type: Array,
  52. default () {
  53. return [];
  54. },
  55. },
  56. indexId: {
  57. type: Number,
  58. },
  59. },
  60. // props:['classList'],
  61. data() {
  62. return {
  63. collArr: [],
  64. subArr: [],
  65. pic_coll: 'https://teacherapi.cocorobo.cn/teaching-file/static/yym/Star 1 (Stroke).png',
  66. pic_coll2: 'https://teacherapi.cocorobo.cn/teaching-file/static//mine/Collect_yellow.png',
  67. pic_sub: 'https://teacherapi.cocorobo.cn/teaching-file/static/yym/Vector (Stroke).png',
  68. pic_sub2: '../../static/mine/dingyue_blue.png'
  69. };
  70. },
  71. methods: {
  72. // 收藏事件
  73. coll(event) {
  74. const value = this.$store.state.user.openid;
  75. if (value == '') {
  76. uni.navigateTo({
  77. url: "/pages/login_Wechat/login_Wechat",
  78. });
  79. return
  80. }
  81. // return console.log(event);
  82. let aId = event.currentTarget.dataset.e.acId
  83. //判断是否收藏
  84. let iscoll = null
  85. // 查询是否收藏过
  86. let data = {
  87. acid: aId,
  88. oid: this.$store.state.user.openid, //用户id
  89. ty: 0
  90. }
  91. this.$request('/selectOneOperator', 'POST', data).then(res => {
  92. // console.log('查询是否收藏过',res);
  93. res[0].length ? iscoll = true : iscoll = false;
  94. // iscoll为true表示已经收藏过,执行删除 为true则收藏
  95. if (iscoll) {
  96. console.log('执行删除');
  97. this.$request('/deleteOperator', 'POST', data).then(res => {
  98. console.log(res);
  99. this.getdata()
  100. })
  101. } else {
  102. console.log('执行添加');
  103. this.$request('/insertOperator', 'POST', data).then(res => {
  104. console.log(res);
  105. this.getdata()
  106. })
  107. }
  108. })
  109. },
  110. // 订阅事件
  111. subaaa(event) {
  112. const value = this.$store.state.user.openid;
  113. if (value == '') {
  114. uni.navigateTo({
  115. url: "/pages/login_Wechat/login_Wechat",
  116. });
  117. return
  118. }
  119. let aId = event.currentTarget.dataset.e.acId
  120. //判断是否订阅
  121. let iscoll = null
  122. // 查询是否订阅过
  123. let data = {
  124. acid: aId,
  125. oid: this.$store.state.user.openid, //用户id
  126. ty: 1
  127. }
  128. this.$request('/selectOneOperator', 'POST', data).then(res => {
  129. // console.log('查询是否订阅过',res);
  130. res[0].length ? iscoll = true : iscoll = false;
  131. // iscoll为true表示已经订阅过,执行删除 为true则订阅
  132. if (iscoll) {
  133. console.log('执行删除');
  134. this.$request('/deleteOperator', 'POST', data).then(res => {
  135. console.log(res);
  136. this.getSub()
  137. })
  138. } else {
  139. console.log('执行添加');
  140. this.$request('/insertOperator', 'POST', data).then(res => {
  141. console.log(res);
  142. this.getSub()
  143. })
  144. }
  145. })
  146. },
  147. join(e) {
  148. let num = e.currentTarget.dataset['index'];
  149. const value = this.$store.state.user.openid;
  150. if (value == '') {
  151. uni.navigateTo({
  152. url: "/pages/login_Wechat/login_Wechat",
  153. });
  154. return 1;
  155. } else {
  156. //推荐课程
  157. const urls = [
  158. "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00351166273N",
  159. "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00330324841N",
  160. "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00231455802N",
  161. "https://szptxnjys.yuketang.cn/pro/portal/about/szpt-99Q00406339964N",
  162. ];
  163. if (num > 3) return uni.showToast({
  164. title: '暂时无第三方链接',
  165. icon: 'none'
  166. })
  167. uni.navigateTo({
  168. url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[num]),
  169. });
  170. }
  171. },
  172. // 跳转到详情页
  173. gotoDetail(e){
  174. let aid = e.currentTarget.dataset.aid;
  175. const value = this.$store.state.user.openid;
  176. if (value == '') return this.goLog()
  177. uni.navigateTo({
  178. url: `/pages/teachingDetail/teachingDetail?acId=${aid}`
  179. });
  180. },
  181. // 获取收藏事件
  182. getdata() {
  183. // console.log(this.$store.state.user.openid);
  184. let data = {
  185. oid: this.$store.state.user.openid, //用户id
  186. type: 0
  187. }
  188. this.$request('/selectOperator', 'POST', data).then(res => {
  189. // console.log('获取收藏', res);
  190. // 每次调用前清零,防止push叠加错误
  191. this.collArr = []
  192. // 将acid遍历到collArr中
  193. res[0].forEach(i => {
  194. this.collArr.push(i.acId)
  195. })
  196. })
  197. },
  198. // 获取订阅事件
  199. getSub() {
  200. // console.log(this.$store.state.user.openid);
  201. let data = {
  202. oid: this.$store.state.user.openid, //用户id
  203. type: 1
  204. }
  205. this.$request('/selectOperator', 'POST', data).then(res => {
  206. // console.log('获取订阅', res);
  207. // 每次调用前清零,防止push叠加错误
  208. this.subArr = []
  209. // 将acid遍历到collArr中
  210. res[0].forEach(i => {
  211. this.subArr.push(i.acId)
  212. })
  213. })
  214. }
  215. },
  216. }
  217. </script>
  218. <style lang="scss">
  219. .listBlock1 {
  220. display: flex;
  221. justify-content: space-between;
  222. // margin-bottom: 10px;
  223. background-color: #ffffff;
  224. padding: 20rpx 30rpx;
  225. .img {
  226. width: 160rpx;
  227. height: 160rpx;
  228. image {
  229. width: 100%;
  230. height: 100%;
  231. border-radius: 10rpx;
  232. }
  233. }
  234. .right {
  235. padding-left: 20rpx;
  236. flex: 1;
  237. // height: 300px;
  238. width: 100rpx;
  239. display: flex;
  240. flex-direction: column;
  241. // align-content: flex-end ;
  242. justify-content: space-between;
  243. // align-content: space-between;
  244. .title {
  245. display: flex;
  246. justify-content: flex-start;
  247. align-items: center;
  248. margin-bottom: 15rpx;
  249. // margin-bottom: 10rpx;
  250. text {
  251. font-weight: bold;
  252. overflow: hidden;
  253. text-overflow: ellipsis;
  254. white-space: nowrap;
  255. }
  256. }
  257. .introduce {
  258. // font-size: 28rpx;
  259. color: #a7a7a7;
  260. // padding: 20rpx 0;
  261. // width: 560rpx;
  262. height: 40rpx;
  263. overflow: hidden;
  264. text-overflow: ellipsis;
  265. white-space: nowrap;
  266. }
  267. .operate {
  268. display: flex;
  269. justify-content: space-between;
  270. // align-items: baseline;
  271. align-items: flex-end;
  272. .left {
  273. display: flex;
  274. // justify-content: space-between;
  275. // align-items: center;
  276. align-items: baseline;
  277. // width: 200rpx;
  278. .opr {
  279. display: flex;
  280. align-items: center;
  281. .icon {
  282. width: 32rpx;
  283. height: 32rpx;
  284. display: flex;
  285. justify-content: center;
  286. align-items: center;
  287. }
  288. text {
  289. padding-left: 3rpx;
  290. color: #666666;
  291. }
  292. }
  293. }
  294. .btn {
  295. z-index: 5;
  296. border: none;
  297. padding: 0;
  298. text-align: center;
  299. // padding: 8px, 24px, 8px, 24px;
  300. background-color: rgba(48, 129, 232, 1);
  301. color: #fff;
  302. border-radius: 100rpx;
  303. float: right;
  304. width: 144rpx;
  305. height: 48rpx;
  306. line-height: 48rpx;
  307. letter-spacing: 1px;
  308. }
  309. }
  310. }
  311. .tag {
  312. border: 1px #00b2b6 solid;
  313. flex-shrink: 0;
  314. letter-spacing: 2rpx;
  315. width: 64rpx;
  316. height: 32rpx;
  317. display: flex;
  318. white-space: nowrap;
  319. justify-content: center;
  320. align-items: center;
  321. border-radius: 4rpx;
  322. margin-right: 10rpx;
  323. color: #00b2b6;
  324. line-height: 32rpx;
  325. }
  326. }
  327. </style>