add-luntan.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <template>
  2. <view class="content">
  3. <u-navbar title="" placeholder :autoBack="false" leftIconSize="0">
  4. <view class="u-nav-left" slot="left">
  5. <text @click="leftclick">取消</text>
  6. </view>
  7. <view class="u-nav-right" slot="right">
  8. <text @click="publish('normal')">发布</text>
  9. </view>
  10. </u-navbar>
  11. <view class="form">
  12. <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" multiple :maxCount="9"
  13. maxSize="5242880" width="192rpx" height="192rpx">
  14. <image src="static/upload.png" mode="aspectFill" class="upload-icon"></image>
  15. </u-upload>
  16. <view class="text">
  17. <u--textarea v-model="content" placeholder="请输入内容" count maxlength="2000" height="500"></u--textarea>
  18. </view>
  19. </view>
  20. <view class="fixed hflex acenter" v-if="JSON.stringify(topic) == '{}'" @click="selecttopic">
  21. <image src="static/add.png" mode="aspectFill"></image>
  22. <text>添加话题</text>
  23. </view>
  24. <view class="fixed" v-else>
  25. <text>{{topic.title}}</text>
  26. </view>
  27. <u-popup :show="show_cancel" @close="toclose" mode="center" :round="10">
  28. <view class="popu vflex acenter jcenter">
  29. <text>是否保存草稿</text>
  30. <text>保存的草稿可在「个人中心」查看</text>
  31. <view class="btn1" @click="publish('draft')">保存草稿</view>
  32. <view class="btn2" @click="toback">不保存</view>
  33. <view class="btn2" @click="toclose">取消</view>
  34. </view>
  35. </u-popup>
  36. </view>
  37. </template>
  38. <script>
  39. import $api from '@/static/js/api.js'
  40. export default {
  41. data() {
  42. return {
  43. show_cancel: false,
  44. fileList1: [],
  45. content: '',
  46. topic: {},
  47. is_edit: 0,
  48. id: 0,
  49. data: {}
  50. }
  51. },
  52. onLoad(option) {
  53. if (option.topic) {
  54. this.topic = JSON.parse(option.topic)
  55. }
  56. if(option.data) {
  57. this.is_edit = option.edit
  58. this.data = JSON.parse(decodeURIComponent(option.data))
  59. this.content = this.data.content
  60. for(var i=0;i<this.data.images.length;i++) {
  61. let temp = {
  62. url : this.data.images[i]
  63. }
  64. this.fileList1.push(temp)
  65. }
  66. // this.topic ={
  67. // id: this.data.topic_id
  68. // }
  69. }
  70. },
  71. onShow() {
  72. },
  73. onPullDownRefresh() {
  74. },
  75. onReachBottom() {
  76. },
  77. methods: {
  78. toback() {
  79. uni.navigateBack()
  80. },
  81. toclose() {
  82. this.show_cancel = false
  83. },
  84. selecttopic() {
  85. var _this = this
  86. uni.navigateTo({
  87. url: '/pageA/huati?type=select',
  88. events: {
  89. getitem(res) {
  90. _this.topic = res
  91. }
  92. }
  93. })
  94. },
  95. deletePic(event) {
  96. this[`fileList${event.name}`].splice(event.index, 1)
  97. },
  98. async afterRead(event) {
  99. uni.showLoading({
  100. title: '上传中',
  101. mask: true
  102. })
  103. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  104. let lists = [].concat(event.file)
  105. let fileListLen = this[`fileList${event.name}`].length
  106. lists.map((item) => {
  107. this[`fileList${event.name}`].push({
  108. ...item,
  109. status: 'uploading',
  110. message: '上传中'
  111. })
  112. })
  113. for (let i = 0; i < lists.length; i++) {
  114. const result = await this.uploadFilePromise(lists[i].url)
  115. let item = this[`fileList${event.name}`][fileListLen]
  116. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  117. status: 'success',
  118. message: '',
  119. url: result
  120. }))
  121. fileListLen++
  122. if (lists.length - 1 == i) {
  123. uni.hideLoading()
  124. }
  125. }
  126. },
  127. uploadFilePromise(url) {
  128. return new Promise((resolve, reject) => {
  129. let a = uni.uploadFile({
  130. url: $api.config.baseUrl + 'upload/image', // 仅为示例,非真实的接口地址
  131. filePath: url,
  132. name: 'image',
  133. formData: {
  134. user: 'test'
  135. },
  136. success: (res) => {
  137. var data = JSON.parse(res.data)
  138. setTimeout(() => {
  139. resolve(data.data.url)
  140. }, 1000)
  141. }
  142. });
  143. })
  144. },
  145. leftclick() {
  146. this.show_cancel = true
  147. },
  148. publish(type) {
  149. var _this = this
  150. let url = 'post'
  151. let method="post"
  152. var images = []
  153. if (this.fileList1.length > 0) {
  154. for (var i = 0; i < this.fileList1.length; i++) {
  155. images.push(this.fileList1[i].url)
  156. }
  157. }
  158. if(this.is_edit == 1) {
  159. this.url = 'post/' +this.data.id
  160. this.method = 'put'
  161. }
  162. $api.req({
  163. url: url,
  164. method: method,
  165. data: {
  166. content: _this.content,
  167. topic_id: _this.topic.id,
  168. status: type,
  169. images: images,
  170. id: this.is_edit == 1 ? this.data.id : '0'
  171. }
  172. }, function(res) {
  173. if (res.code == 10000) {
  174. uni.$u.toast(res.msg)
  175. setTimeout(() => {
  176. if(type == 'normal') {
  177. uni.switchTab({
  178. url: '/pages/index/index'
  179. })
  180. } else {
  181. uni.navigateTo({
  182. url: '/pageC/drafts'
  183. })
  184. }
  185. }, 800)
  186. }
  187. })
  188. },
  189. }
  190. }
  191. </script>
  192. <style lang="scss">
  193. .content::v-deep {
  194. background: #FFFFFF;
  195. .text {
  196. padding: 32rpx 0 0;
  197. .u-textarea {
  198. border: none;
  199. padding: 0;
  200. }
  201. }
  202. .popu {
  203. background: #FFFFFF;
  204. border-radius: 16rpx;
  205. padding: 48rpx;
  206. box-sizing: border-box;
  207. text:first-child {
  208. font-size: 32rpx;
  209. font-family: PingFangSC, PingFang SC;
  210. font-weight: 600;
  211. color: #333333;
  212. padding: 0;
  213. }
  214. text {
  215. font-size: 24rpx;
  216. font-family: PingFangSC, PingFang SC;
  217. font-weight: 400;
  218. color: #333333;
  219. padding: 18rpx 0;
  220. }
  221. .btn1 {
  222. width: 414rpx;
  223. height: 72rpx;
  224. background: #00B0B0;
  225. border-radius: 36rpx;
  226. font-size: 28rpx;
  227. font-family: PingFangSC, PingFang SC;
  228. font-weight: 500;
  229. color: #FFFFFF;
  230. line-height: 72rpx;
  231. text-align: center;
  232. margin: 28rpx;
  233. }
  234. .btn2 {
  235. width: 414rpx;
  236. height: 72rpx;
  237. background: #F2F2F2;
  238. border-radius: 36rpx;
  239. font-size: 28rpx;
  240. font-family: PingFangSC, PingFang SC;
  241. font-weight: 500;
  242. color: #444444;
  243. line-height: 72rpx;
  244. text-align: center;
  245. margin: 28rpx;
  246. }
  247. }
  248. .fixed {
  249. position: fixed;
  250. left: 28rpx;
  251. bottom: 80rpx;
  252. background: rgba(0, 176, 176, .1);
  253. border-radius: 40rpx;
  254. padding: 8rpx 16rpx;
  255. image {
  256. width: 36rpx;
  257. height: 36rpx;
  258. margin: 0 16rpx 0 0;
  259. }
  260. text {
  261. font-size: 24rpx;
  262. font-family: PingFangSC, PingFang SC;
  263. font-weight: 400;
  264. color: #00B0B0;
  265. }
  266. }
  267. .form {
  268. padding: 58rpx 28rpx 28rpx;
  269. border-bottom: 1px solid #EDEDED;
  270. .upload-icon {
  271. width: 64rpx;
  272. height: 64rpx;
  273. background: #F5F5F5;
  274. border-radius: 12rpx;
  275. padding: 64rpx;
  276. }
  277. }
  278. .u-nav-right {
  279. text {
  280. font-size: 32rpx;
  281. font-family: PingFangSC, PingFang SC;
  282. font-weight: 500;
  283. color: #57C3C2;
  284. }
  285. }
  286. }
  287. </style>