publish.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <text>{{data.title}}</text>
  5. <view class="text">
  6. <u-parse :content="data.content"></u-parse>
  7. </view>
  8. </view>
  9. <view class="hflex imgs">
  10. <text>封面</text>
  11. <view class="img vflex acenter jcenter" v-if="image == ''" @click="chooseimg">
  12. <image src="/pageA/static/upload.png" mode="aspectFill" class="icon"></image>
  13. </view>
  14. <view class="img" v-else>
  15. <image :src="image" mode="aspectFill" @></image>
  16. <text @click="chooseimg">替换</text>
  17. </view>
  18. </view>
  19. <view class="bottom hflex acenter jcenter">
  20. <view class="btn1" @click="topublish('draft')">存草稿</view>
  21. <view class="btn2" @click="topublish('normal')">发布</view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import $api from '@/static/js/api.js'
  27. export default {
  28. data() {
  29. return {
  30. data: {
  31. title: '',
  32. content: ''
  33. },
  34. image: '',
  35. type: ''
  36. }
  37. },
  38. onLoad(options) {
  39. if (options.data) {
  40. this.data = JSON.parse(decodeURIComponent(options.data))
  41. }
  42. this.type = options.type
  43. if (options.edit == '1') {
  44. this.image = this.data.image
  45. let data = {
  46. id: this.data.topic_id
  47. }
  48. this.data.topic = data
  49. }
  50. console.log(this.data, this.type);
  51. },
  52. onShow() {
  53. },
  54. onPullDownRefresh() {
  55. },
  56. onReachBottom() {
  57. },
  58. methods: {
  59. topublish(status) {
  60. var url = ''
  61. var form = {}
  62. form = {
  63. title: this.data.title,
  64. content: this.data.content,
  65. topic_id: this.data.topic.id,
  66. status: status,
  67. image: this.image
  68. }
  69. if (this.type == 'info') {
  70. url = 'info'
  71. } else if (this.type == 'article') {
  72. url = 'article'
  73. } else if (this.type == 'video') {
  74. url = 'video'
  75. form.video_title = this.data.video_title
  76. form.video_url = this.data.video_url
  77. }
  78. console.log(form, '上传数据', url);
  79. $api.req({
  80. url: url,
  81. method: 'POST',
  82. data: form
  83. }, function(res) {
  84. console.log(res);
  85. $api.info(res.msg)
  86. if (res.code == 10000) {
  87. setTimeout(() => {
  88. if(status == 'normal') {
  89. uni.switchTab({
  90. url: '/pages/index/index'
  91. })
  92. } else {
  93. uni.navigateTo({
  94. url: '/pageC/drafts'
  95. })
  96. }
  97. },1000)
  98. }
  99. })
  100. },
  101. chooseimg() {
  102. uni.chooseImage({
  103. success: (chooseImageRes) => {
  104. uni.showLoading({
  105. title: '上传中...'
  106. })
  107. const tempFilePaths = chooseImageRes.tempFilePaths;
  108. uni.uploadFile({
  109. url: $api.config.baseUrl + 'upload/image', //仅为示例,非真实的接口地址
  110. filePath: tempFilePaths[0],
  111. name: 'image',
  112. success: (uploadFileRes) => {
  113. let res = JSON.parse(uploadFileRes.data)
  114. this.image = res.data.url
  115. uni.hideLoading()
  116. }
  117. });
  118. }
  119. });
  120. },
  121. }
  122. }
  123. </script>
  124. <style lang="scss">
  125. .content {
  126. background: #FFFFFF;
  127. .top {
  128. width: 100%;
  129. box-sizing: border-box;
  130. padding: 28rpx;
  131. border-bottom: 1px solid #F2F2F2;
  132. text:first-child {
  133. font-size: 40rpx;
  134. font-family: SFPro, SFPro;
  135. font-weight: 400;
  136. color: #222222;
  137. }
  138. .text {
  139. width: 100%;
  140. height: 96rpx;
  141. overflow: hidden;
  142. padding: 10rpx 0 0;
  143. }
  144. }
  145. .imgs {
  146. padding: 34rpx 28rpx;
  147. text {
  148. font-size: 32rpx;
  149. font-family: PingFangSC, PingFang SC;
  150. font-weight: 400;
  151. color: #222222;
  152. padding-right: 42rpx;
  153. }
  154. .img {
  155. width: 574rpx;
  156. height: 334rpx;
  157. background: #F5F5F5;
  158. border-radius: 12rpx;
  159. overflow: hidden;
  160. position: relative;
  161. .icon {
  162. width: 86rpx;
  163. height: 86rpx;
  164. }
  165. image {
  166. width: 100%;
  167. height: 100%;
  168. }
  169. text {
  170. position: absolute;
  171. bottom: 24rpx;
  172. left: 232rpx;
  173. width: 110rpx;
  174. height: 60rpx;
  175. background: rgba(0, 0, 0, 0.8);
  176. border-radius: 30rpx;
  177. font-size: 26rpx;
  178. font-family: PingFangSC, PingFang SC;
  179. font-weight: 400;
  180. color: #FFFFFF;
  181. line-height: 60rpx;
  182. text-align: center;
  183. padding: 0;
  184. }
  185. }
  186. }
  187. .bottom {
  188. width: 750rpx;
  189. height: 166rpx;
  190. background: #FFFFFF;
  191. box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0, 0, 0, 0.1);
  192. position: fixed;
  193. bottom: 0;
  194. left: 0;
  195. box-sizing: border-box;
  196. padding: 16rpx 28rpx 62rpx;
  197. border-top: 1px solid rgba(0, 0, 0, 0.1);
  198. .btn1 {
  199. width: 340rpx;
  200. height: 88rpx;
  201. border-radius: 44rpx;
  202. border: 2rpx solid #E2E2E2;
  203. font-size: 32rpx;
  204. font-family: PingFangSC, PingFang SC;
  205. font-weight: 400;
  206. color: #222222;
  207. line-height: 88rpx;
  208. text-align: center;
  209. margin-right: 14rpx;
  210. }
  211. .btn2 {
  212. width: 340rpx;
  213. height: 88rpx;
  214. background: #00B0B0;
  215. border-radius: 44rpx;
  216. font-size: 32rpx;
  217. font-family: PingFangSC, PingFang SC;
  218. font-weight: 400;
  219. color: #FFFFFF;
  220. line-height: 88rpx;
  221. text-align: center;
  222. }
  223. }
  224. }
  225. </style>