drafts.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. <template>
  2. <view class="content">
  3. <u-navbar title="草稿箱" height="88rpx" :placeholder="true" :autoBack="true">
  4. <view slot="right" class="u-nav-slot">
  5. <text @click="show_manager = !show_manager">管理</text>
  6. </view>
  7. </u-navbar>
  8. <view class="tabs">
  9. <u-tabs :list="tabs" :scrollable="false" lineWidth="0" keyName="name" :current="current" @click="changetabs"
  10. :inactiveStyle="{color: '#999999',fontSize: '30rpx',}"
  11. :activeStyle="{color: '#00B0B0',fontSize: '30rpx',}"></u-tabs>
  12. </view>
  13. <view class="list" v-if="list.length > 0">
  14. <u-checkbox-group v-model="select_all" placement="column" @change="selectitem">
  15. <view class="list-item hflex acenter" v-for="(item,index) in list" :key="index">
  16. <u-checkbox v-if="show_manager" activeColor="#57C3C2" shape="circle"
  17. :customStyle="{marginBottom: '8px'}" :name="item.id"></u-checkbox>
  18. <view class="hflex acenter" style="flex:1" v-if="item.source_type != 'post'">
  19. <image :src="item.source.image" mode="aspectFill"></image>
  20. <view class="img-right">
  21. <text class="name text_hide2">{{item.source.title}}</text>
  22. <view class="hflex acenter jbetween" style="width: 100%;">
  23. <view class="num">{{item.created_at}}</view>
  24. <view class="hflex acenter btns">
  25. <text @click="editItem(item)">编辑</text>
  26. <text @click="delItem(item)">删除</text>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="hflex acenter" style="flex:1" v-if="item.source_type == 'post'">
  32. <image :src="item.source.images[0]" mode="aspectFill" v-if="item.source.images.length>0"></image>
  33. <view class="img-right">
  34. <text class="name text_hide2">{{item.source.content}}</text>
  35. <view class="hflex acenter jbetween" style="width: 100%;">
  36. <view class="num">{{item.created_at}}</view>
  37. <view class="hflex acenter btns">
  38. <text @click="editItem(item)">编辑</text>
  39. <text @click="delItem(item)">删除</text>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </u-checkbox-group>
  46. </view>
  47. <view class="list" v-else>
  48. <u-empty mode="data"></u-empty>
  49. </view>
  50. <view style="height: 186rpx;" v-if="show_manager"></view>
  51. <view class="bottom hflex acenter jbetween" v-if="show_manager">
  52. <u-checkbox-group placement="column">
  53. <u-checkbox :checked="quanxuan" @change="selectall" activeColor="#57C3C2" shape="circle"
  54. :customStyle="{marginBottom: '8px'}" label="全选"></u-checkbox>
  55. </u-checkbox-group>
  56. <view class="btn">批量删除</view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. import $api from '@/static/js/api.js'
  62. export default {
  63. data() {
  64. return {
  65. list: [],
  66. page: 1,
  67. last_page: 1,
  68. current: 0,
  69. tabs: [{
  70. id: '',
  71. name: '全部'
  72. },
  73. {
  74. id: 'article',
  75. name: '文章'
  76. },
  77. {
  78. id: 'video',
  79. name: '视频'
  80. },
  81. {
  82. id: 'info',
  83. name: '资讯'
  84. },
  85. {
  86. id: 'post',
  87. name: '论坛'
  88. },
  89. ],
  90. options: [{
  91. text: '批量删除',
  92. style: {
  93. backgroundColor: '#FF5038'
  94. }
  95. }],
  96. show_manager: false,
  97. select_all: [],
  98. quanxuan: false
  99. }
  100. },
  101. onLoad() {},
  102. onShow() {
  103. this.list = []
  104. this.getlist()
  105. },
  106. onReachBottom() {
  107. if (this.page == this.last_page) {
  108. uni.$u.toast('已经到底了')
  109. return
  110. } else {
  111. this.page++
  112. this.getlist()
  113. }
  114. },
  115. methods: {
  116. editItem(item) {
  117. var that = this
  118. let data = {}
  119. if (item.source_type == 'post') {
  120. data = item.source
  121. uni.navigateTo({
  122. url: '/pageA/add-luntan?data=' + encodeURIComponent(JSON.stringify(data)) + '&edit=1'
  123. })
  124. } else {
  125. let topic = {
  126. id: item.source.topic_id
  127. }
  128. data = {
  129. id: item.source.id,
  130. video_title: item.source.video_title ? item.source.video_title : '',
  131. video_url: item.source.video_url ? item.source.video_url : '',
  132. title: item.source.title ? item.source.title : '',
  133. content: item.source.content ? item.source.content : '',
  134. topic: topic,
  135. image: item.source.image ? item.source.image : ''
  136. }
  137. uni.navigateTo({
  138. url: '/pageA/add-wenzhang?data=' + encodeURIComponent(JSON.stringify(data)) + '&type=' +item.source_type + '&edit=1'
  139. })
  140. }
  141. },
  142. delItem(item) {
  143. var that = this
  144. $api.req({
  145. url: item.source_type + '/' + item.source_id,
  146. method: 'DELETE'
  147. }, function(res) {
  148. $api.info(res.msg)
  149. that.page = 1
  150. that.list = []
  151. that.getlist()
  152. })
  153. },
  154. selectall() {
  155. this.quanxuan = !this.quanxuan
  156. console.log(this.quanxuan);
  157. if (this.quanxuan) {
  158. this.select_all = []
  159. for (var i = 0; i < this.list.length; i++) {
  160. this.select_all.push(this.list[i].id)
  161. }
  162. } else {
  163. this.select_all = []
  164. }
  165. console.log(this.select_all);
  166. },
  167. selectitem(e) {
  168. this.select_all = e
  169. if (this.select_all.length == this.list.length) {
  170. this.quanxuan = true
  171. } else {
  172. this.quanxuan = false
  173. }
  174. },
  175. changetabs(e) {
  176. this.current = e.index
  177. this.select_all = []
  178. this.quanxuan = false
  179. this.page = 1
  180. this.list = []
  181. this.getlist()
  182. },
  183. getlist() {
  184. var _this = this
  185. $api.req({
  186. url: 'draft',
  187. method: 'GET',
  188. data: {
  189. source_type: _this.tabs[_this.current].id,
  190. page: _this.page,
  191. limit: 10,
  192. }
  193. }, function(res) {
  194. if (res.code == 10000) {
  195. _this.list = _this.list.concat(res.data.list)
  196. _this.last_page = res.data.last_page
  197. }
  198. })
  199. },
  200. },
  201. }
  202. </script>
  203. <style lang="scss">
  204. .content::v-deep {
  205. background: #FFFFFF;
  206. position: relative;
  207. .bottom {
  208. position: fixed;
  209. bottom: 0;
  210. width: 750rpx;
  211. height: 166rpx;
  212. background: #FFFFFF;
  213. padding: 12rpx 28rpx 80rpx;
  214. box-sizing: border-box;
  215. z-index: 29;
  216. .btn {
  217. width: 184rpx;
  218. height: 72rpx;
  219. background: #00B0B0;
  220. border-radius: 36rpx;
  221. font-size: 28rpx;
  222. font-family: PingFangSC, PingFang SC;
  223. font-weight: 400;
  224. color: #FFFFFF;
  225. line-height: 72rpx;
  226. text-align: center;
  227. }
  228. }
  229. .list {
  230. width: 100%;
  231. box-sizing: border-box;
  232. padding: 28rpx 28rpx;
  233. .list-item {
  234. margin: 0 0 32rpx;
  235. image {
  236. width: 200rpx;
  237. height: 128rpx;
  238. border-radius: 6rpx;
  239. margin: 0 20rpx 0 0;
  240. }
  241. .img-right {
  242. width: calc(100% - 220rpx);
  243. .name {
  244. max-width: 452rpx;
  245. font-size: 28rpx;
  246. font-family: PingFangSC, PingFang SC;
  247. font-weight: 500;
  248. color: #333333;
  249. padding: 0 0 14rpx;
  250. }
  251. .num {
  252. font-size: 20rpx;
  253. font-family: SFPro, SFPro;
  254. font-weight: 400;
  255. color: #666666;
  256. }
  257. .price {
  258. font-size: 28rpx;
  259. font-family: JDZhengHT, JDZhengHT;
  260. font-weight: 400;
  261. color: #FF3333;
  262. }
  263. .btns {
  264. text:first-child {
  265. width: 96rpx;
  266. height: 48rpx;
  267. background: #00B0B0;
  268. border-radius: 26rpx;
  269. font-size: 24rpx;
  270. font-family: PingFangSC, PingFang SC;
  271. font-weight: 400;
  272. color: #FFFFFF;
  273. line-height: 48rpx;
  274. text-align: center;
  275. }
  276. text:last-child {
  277. width: 96rpx;
  278. height: 48rpx;
  279. background: #F35648;
  280. border-radius: 26rpx;
  281. font-size: 24rpx;
  282. font-family: PingFangSC, PingFang SC;
  283. font-weight: 400;
  284. color: #FFFFFF;
  285. line-height: 48rpx;
  286. text-align: center;
  287. margin: 0 0 0 22rpx;
  288. }
  289. }
  290. }
  291. .u-checkbox {
  292. margin: 0 32rpx 0 0;
  293. }
  294. }
  295. }
  296. .tabs {
  297. width: 100%;
  298. padding: 18rpx 0;
  299. border-bottom: 2rpx solid #F5F5F5;
  300. }
  301. .u-nav-slot {
  302. text {
  303. font-size: 28rpx;
  304. font-family: PingFangSC, PingFang SC;
  305. font-weight: 400;
  306. color: #333333;
  307. }
  308. }
  309. }
  310. </style>