mineRelease.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. <template>
  2. <view>
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="activeBox" v-for="(item,index) in activeList" :key="index">
  5. <view class="teaching_case" >
  6. <view class="img">
  7. <!-- <image src="https://teacherapi.cocorobo.cn/teaching-file/static//activity/bg2.png" mode="aspectFill"></image> -->
  8. <image :src="item.pic" mode="aspectFill"></image>
  9. </view>
  10. <view class="right">
  11. <view class="title">
  12. <view class="tag bqZ-font">类型</view>
  13. <text class="three-font" style="font-weight: 550;">{{ item.acName }}</text>
  14. </view>
  15. <view class="introduce">
  16. <view class="money fNum-font"><text class="three-font"></text> {{ item.cost }}</view>
  17. </view>
  18. <view class="operate">
  19. <view class="left">
  20. <!-- <view class="person">浏览0 · 订阅{{ item.snum }} · 收藏{{ item.dnum }} · 已购0</view> -->
  21. <view class="person"> 订阅{{ item.snum }} · 收藏{{ item.dnum }} </view>
  22. </view>
  23. <view class="Oright" @click="gotoActdetail" :data-info="item">
  24. <view class="text">查看详情</view>
  25. <view class="arrow">
  26. <image
  27. src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/arrow-right-blue.png"
  28. mode="aspectFill"></image>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="controls">
  35. <view class="controls_btns">
  36. <button @click="gotoEdit" :data-aid="item.acId">编辑</button>
  37. <button @click="actDelete" :data-aid="item.acId">删除</button>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="loading">
  42. <view v-if="newsLoading==1">数据加载中...</view>
  43. <view v-if="newsLoading==2">没有更多了~~</view>
  44. </view>
  45. <view class="" style="width: 100%;height: 50rpx;"></view>
  46. <!-- 弹窗 -->
  47. <view>
  48. <!-- <view class="mask" v-show="showPopup" @click="closePopup"></view> -->
  49. <view class="popup-container" v-show="showPopup">
  50. <view class="popup">
  51. <view class="header">
  52. <text>确认删除</text>
  53. </view>
  54. <view class="footer">
  55. <view class="cancel-btn" @click="showPopup= false">取消</view>
  56. <view class="confirm-btn" @click="confirm">确认</view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. <view>
  62. <!-- <view class="mask" v-show="showPopupConfirm" @click="closePopup"></view> -->
  63. <view class="popup-container" style="height: 175px;" v-show="showPopupConfirm">
  64. <view class="popup">
  65. <view class="header" style="margin-top: 15px;">
  66. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//gou1.png" mode="aspectFill">
  67. </image>
  68. <text style="margin-bottom: 24px;">删除成功</text>
  69. </view>
  70. </view>
  71. </view>
  72. </view>
  73. </view>
  74. </template>
  75. <script>
  76. export default {
  77. data() {
  78. return {
  79. navBarData: {
  80. title: '我的发布', //导航栏标题
  81. btn: 1 //是否显示返回按钮 0不显示 1 显示
  82. },
  83. showPopup: false,
  84. showPopupConfirm:false,
  85. deleteAcId: '',
  86. // 触底加载动画提示
  87. newsLoading: 0, //0默认值 1加载中 2没有更多了
  88. // 分页查询
  89. currentPage: 1,
  90. // 渲染数据列表
  91. activeList: [],
  92. };
  93. },
  94. methods: {
  95. // 获取数据渲染数据
  96. getpublish() {
  97. // const oid =
  98. let data = {
  99. openid: this.$store.state.user.openid,
  100. page: this.currentPage, //下拉获取更多的备用字段
  101. lim: 15 //一次获取多少数据
  102. }
  103. this.$request('/selectMyPublish', "POST", data).then(res => {
  104. console.log("我的发布", res[0].length);
  105. // 看是否有发布过数据,没有的话提示通知
  106. if (!res[0].length) {
  107. this.newsLoading = 2
  108. return
  109. } else {
  110. this.activeList = [...this.activeList,...res[0]]
  111. }
  112. })
  113. },
  114. // 查看详情
  115. gotoActdetail(e) {
  116. // console.log(e.currentTarget.dataset.aid);
  117. let data = e.currentTarget.dataset.info
  118. console.log(data);
  119. if(data.type==0 || data.type==1){
  120. uni.navigateTo({
  121. url: `/pages/activityDetail/activityDetail?acId=${data.acId}`
  122. });
  123. return
  124. }else{
  125. uni.navigateTo({
  126. url: `/pages/teachingDetail/teachingDetail?acId=${data.acId}`
  127. });
  128. }
  129. },
  130. // 编辑功能
  131. gotoEdit(e) {
  132. console.log(e);
  133. let acid = e.currentTarget.dataset.aid
  134. uni.navigateTo({
  135. url: `/pages/publish/publish?acId=${acid}`
  136. });
  137. },
  138. // 显示删除弹窗
  139. actDelete(e) {
  140. this.deleteAcId = e.currentTarget.dataset.aid;
  141. this.showPopup = true; //显示弹窗
  142. },
  143. // 删除功能
  144. confirm() {
  145. let data = {
  146. oid: this.$store.state.user.openid, //用户id
  147. aid: this.deleteAcId,
  148. }
  149. this.showPopupConfirm=true
  150. this.$request('/deleteMyPublish', "POST", data).then(res => {
  151. this.showPopup = false
  152. setTimeout(()=>{
  153. this.showPopupConfirm=false
  154. },1500)
  155. // 在列表里也将他删除
  156. this.newsLoading=0
  157. this.currentPage=1
  158. // this.activeList=this.activeList.filter(e=>{
  159. // return e.acId!=this.deleteAcId
  160. // })
  161. this.activeList=[]
  162. this.getpublish()
  163. })
  164. },
  165. closePopup() {
  166. // 取消操作
  167. this.showPopup = false
  168. this.deleteAcId = null
  169. },
  170. },
  171. // 触底加载更多
  172. onReachBottom() {
  173. if (this.newsLoading == 2) {
  174. return
  175. }
  176. this.newsLoading = 1
  177. this.currentPage++
  178. setTimeout(this.getpublish, 1000)
  179. },
  180. onShow() {
  181. // 重新恢复初始状态
  182. this.newsLoading = 0
  183. this.currentPage=1
  184. this.activeList=[]
  185. this.getpublish();
  186. }
  187. }
  188. </script>
  189. <style lang="scss" scoped>
  190. .loading {
  191. height: 50rpx;
  192. text-align: center;
  193. padding-top: 20rpx;
  194. padding-bottom: 100rpx;
  195. font-size: 26rpx;
  196. color: #888;
  197. line-height: 2em;
  198. }
  199. .activeBox {
  200. width: 750rpx;
  201. padding: 30rpx;
  202. background-color: #fff;
  203. // &:first-child{
  204. // padding: 10px 0 0 0;
  205. // }
  206. .teaching_case {
  207. display: flex;
  208. justify-content: space-between;
  209. // padding: 10px 10px;
  210. // border-top: 1px solid #E7E7E7;
  211. padding-bottom: 25rpx;
  212. .img {
  213. width: 160rpx;
  214. height: 160rpx;
  215. margin-right: 20rpx;
  216. image {
  217. width: 160rpx;
  218. height: 160rpx;
  219. border-radius: 10rpx;
  220. }
  221. }
  222. .right {
  223. // padding-left: 15px;
  224. flex: 1;
  225. display: flex;
  226. flex-direction: column;
  227. // align-content: flex-end;
  228. justify-content: space-between;
  229. // box-sizing: border-box;
  230. .title {
  231. display: flex;
  232. align-items: center;
  233. margin-bottom: 5px;
  234. .tag {
  235. border: 1px #00b2b6 solid;
  236. // font-size: 20rpx;
  237. width: 64rpx;
  238. height: 38rpx;
  239. display: flex;
  240. white-space: nowrap;
  241. justify-content: center;
  242. align-items: center;
  243. padding: 1rpx 4rpx;
  244. border-radius: 3px;
  245. margin-right: 10rpx;
  246. color: #00b2b6;
  247. }
  248. text {
  249. width: 190px;
  250. overflow: hidden;
  251. text-overflow: ellipsis;
  252. white-space: nowrap;
  253. }
  254. }
  255. .introduce {
  256. width: 230px;
  257. // font-size: 28rpx;
  258. // color: #a7a7a7;
  259. // margin-top: 8px;
  260. overflow: hidden;
  261. text-overflow: ellipsis;
  262. white-space: nowrap;
  263. .money {
  264. color: #FFA338;
  265. font-weight: bold;
  266. font-size: 36rpx;
  267. line-height: 20px;
  268. }
  269. }
  270. .operate {
  271. display: flex;
  272. justify-content: space-between;
  273. align-items: baseline;
  274. .left {
  275. display: flex;
  276. flex-direction: row;
  277. justify-content: space-between;
  278. align-items: baseline;
  279. width: 330rpx;
  280. .person {
  281. color: #00000099;
  282. font-size: 20rpx;
  283. // margin-left: 6px;
  284. }
  285. }
  286. .Oright {
  287. // width: 200rpx;
  288. display: flex;
  289. justify-content: flex-end;
  290. align-items: center;
  291. .text {
  292. font-size: 24rpx;
  293. color: #3081E8;
  294. }
  295. .arrow {
  296. display: flex;
  297. justify-content: center;
  298. margin-top: 5rpx;
  299. image {
  300. width: 32rpx;
  301. height: 32rpx;
  302. }
  303. }
  304. }
  305. }
  306. }
  307. }
  308. .controls {
  309. display: flex;
  310. justify-content: flex-end;
  311. padding: 0 10px;
  312. border-top: 1px solid #E7E7E7;
  313. align-items: center;
  314. height: 45px;
  315. .controls_btns {
  316. display: flex;
  317. align-items: center;
  318. width: 115px;
  319. height: 35px;
  320. button {
  321. width: 96rpx;
  322. height: 48rpx;
  323. font-size: 24rpx;
  324. border-radius: 10rpx;
  325. border: 1px solid #3081E8;
  326. background-color: white;
  327. color: #3081E8;
  328. padding: 0;
  329. line-height: 23px;
  330. }
  331. }
  332. }
  333. }
  334. .mask {
  335. position: fixed;
  336. top: 0;
  337. left: 0;
  338. width: 100%;
  339. height: 100%;
  340. background-color: rgba(0, 0, 0, 0.3);
  341. z-index: 999;
  342. overflow: hidden;
  343. // display: none;
  344. }
  345. .popup-container {
  346. position: fixed;
  347. top: 50%;
  348. left: 50%;
  349. transform: translate(-50%, -50%);
  350. width: 520rpx;
  351. height: 260rpx;
  352. z-index: 1000;
  353. // display: none;
  354. overflow: hidden;
  355. .popup {
  356. width: 100%;
  357. height: 100%;
  358. display: flex;
  359. flex-direction: column;
  360. background-color: #fff;
  361. border-radius: 16rpx;
  362. overflow: hidden;
  363. .header {
  364. flex: 1;
  365. display: flex;
  366. justify-content: center;
  367. align-items: center;
  368. flex-direction: column;
  369. margin-top: 24px;
  370. font-size: 34rpx;
  371. font-weight: 600;
  372. image {
  373. width: 150rpx;
  374. height: 150rpx;
  375. margin-top: 15px;
  376. margin-bottom: 15px;
  377. }
  378. }
  379. .footer {
  380. width: 100%;
  381. display: flex;
  382. overflow: hidden;
  383. .cancel-btn {
  384. width: 50%;
  385. height: 100rpx;
  386. background-color: #F7F7F7;
  387. color: #000;
  388. font-size: 34rpx;
  389. text-align: center;
  390. border-bottom-left-radius: 16rpx;
  391. line-height: 50px;
  392. }
  393. .confirm-btn {
  394. width: 50%;
  395. height: 100rpx;
  396. background-color: #0081FE;
  397. color: #fff;
  398. font-size: 34rpx;
  399. text-align: center;
  400. line-height: 50px;
  401. }
  402. }
  403. }
  404. }
  405. </style>