publish.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <view>
  3. <view class="textBox">
  4. <textarea name="" v-model="content" maxlength="100" id="" cols="30" rows="10" placeholder="用照片展示自我,分享生活,会获得更多的关注"></textarea>
  5. <view class="upload">
  6. <u-upload :fileList="fileList1" :accept="accept" @afterRead="afterRead" @delete="deletePic" name="1" :multiple='false'
  7. :maxCount="num">
  8. <image src="../../static/forum/add.png"
  9. mode="widthFix" style="width: 160rpx;height:160rpx;"></image>
  10. </u-upload>
  11. </view>
  12. </view>
  13. <!-- <view class="publish">
  14. <image src="../../static/forum/publish.png" mode=""></image>
  15. 发布动态
  16. </view> -->
  17. <view class="publish select" @click="publish">
  18. <image src="../../static/forum/publish.png" mode=""></image>
  19. 发布动态
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. onLoad(option) {
  26. if(option.item){
  27. this.item=JSON.parse(option.item)
  28. if(this.item.show_images.length!=0){
  29. this.item.show_images.forEach(it=>{
  30. this.fileList1.push({url:it})
  31. })
  32. }
  33. this.content=this.item.content
  34. if(this.item.suffix=='mp4'){
  35. this.num=1
  36. }else{
  37. this.accept='image'
  38. }
  39. }
  40. },
  41. data() {
  42. return {
  43. item:'',
  44. fileList1:[],
  45. content:'',
  46. num:9,
  47. accept:'media'
  48. }
  49. },
  50. methods: {
  51. publish(){
  52. if(!this.content&&this.fileList1.length==0){
  53. this.$u.toast('暂无要发布的内容')
  54. return
  55. }else{
  56. var arr=[]
  57. this.fileList1.forEach(item=>{
  58. arr.push(item.url)
  59. })
  60. if(this.item){
  61. uni.$u.http.post('/api/user/editdynamic',{image:arr.toString(),content:this.content,id:this.item?this.item.id:''}).then(res => {
  62. if(res.code==1){
  63. this.$u.toast(res.msg)
  64. this.content=''
  65. this.fileList1=[]
  66. }
  67. })
  68. }else{
  69. uni.$u.http.post('/api/forum/releaseforum',{image:arr.toString(),content:this.content}).then(res => {
  70. if(res.code==1){
  71. this.$u.toast(res.msg)
  72. this.content=''
  73. this.fileList1=[]
  74. }
  75. })
  76. }
  77. }
  78. },
  79. // 删除图片
  80. deletePic(event) {
  81. this[`fileList${event.name}`].splice(event.index, 1)
  82. },
  83. // 新增图片
  84. async afterRead(event) {
  85. console.log(event)
  86. // 当设置 mutiple 为 true 时, file 为数组格式,否则为对象格式
  87. if(event.file.type&&event.file.type=='video'){
  88. this.num=1
  89. }else{
  90. this.accept='image'
  91. }
  92. let lists = [].concat(event.file)
  93. let fileListLen = this[`fileList${event.name}`].length
  94. lists.map((item) => {
  95. this[`fileList${event.name}`].push({
  96. ...item,
  97. status: 'uploading',
  98. message: '上传中'
  99. })
  100. })
  101. for (let i = 0; i < lists.length; i++) {
  102. const result = await this.uploadFilePromise(lists[i].url)
  103. let item = this[`fileList${event.name}`][fileListLen]
  104. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  105. status: 'success',
  106. message: '',
  107. url: result
  108. }))
  109. fileListLen++
  110. }
  111. },
  112. uploadFilePromise(url) {
  113. return new Promise((resolve, reject) => {
  114. let a = uni.uploadFile({
  115. url: this.$url+'/api/Publics/uploadLocality', // 仅为示例,非真实的接口地址
  116. filePath: url,
  117. name: 'file',
  118. success: (res) => {
  119. setTimeout(() => {
  120. resolve(JSON.parse(res.data).data.url)
  121. }, 1000)
  122. }
  123. });
  124. })
  125. },
  126. }
  127. }
  128. </script>
  129. <style lang="scss">
  130. .textBox{
  131. padding: 0 20rpx;
  132. textarea{
  133. width: 100%;
  134. height: 200rpx;
  135. }
  136. }
  137. .publish{
  138. position: fixed;
  139. bottom: 84rpx;
  140. left: 50rpx;
  141. right: 50rpx;
  142. margin: 0 auto;
  143. width: 650rpx;
  144. height: 104rpx;
  145. line-height: 104rpx;
  146. text-align: center;
  147. background: #D8D8D8;
  148. border-radius: 52rpx;
  149. font-size: 36rpx;
  150. color: #fff;
  151. image{
  152. width: 64rpx;
  153. height: 64rpx;
  154. margin-bottom: 5rpx;
  155. vertical-align: middle;
  156. }
  157. }
  158. .select{
  159. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  160. }
  161. </style>