add-wenzhang.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <template>
  2. <view class="content">
  3. <u-navbar title="" leftText="取消" @leftClick="leftclick" placeholder leftIconSize="0">
  4. <view class="u-nav-right" slot="right">
  5. <text :style="data.title&&data.content ? 'color: #00B0B0' : ''" @click="next">{{type == 'post'?'发布':'下一步'}}</text>
  6. </view>
  7. </u-navbar>
  8. <block v-if="index == 1">
  9. <view class="video" v-if="type == 'video'">
  10. <u-input v-model="data.video_title" placeholder="请添加关联视频标题(最多输入100个字)" border="none"
  11. fontSize="40rpx"></u-input>
  12. <u--textarea v-model="data.video_url" placeholder="请添加关联视频链接" border="none" autoHeight
  13. fontSize="28rpx"></u--textarea>
  14. </view>
  15. <view class="title">
  16. <u-input v-model="data.title" placeholder="输入标题(最多输入100个字)" border="none" fontSize="44rpx"></u-input>
  17. </view>
  18. <view class="center">
  19. <richtext-editor :init="data.content" @onsuccess="onsuccess"></richtext-editor>
  20. </view>
  21. <view class="fixed hflex acenter" v-if="JSON.stringify(data.topic) == '{}'" @click="selecttopic">
  22. <image src="static/add.png" mode="aspectFill"></image>
  23. <text>添加话题</text>
  24. </view>
  25. <view class="fixed" v-else>
  26. <text>{{data.topic.title}}</text>
  27. </view>
  28. </block>
  29. <block v-if="index == 2">
  30. <view class="top">
  31. <text>{{data.title}}</text>
  32. <view class="text">
  33. <u-parse :content="data.content"></u-parse>
  34. </view>
  35. </view>
  36. <view class="hflex imgs">
  37. <text>封面</text>
  38. <view class="img vflex acenter jcenter" v-if="image == ''" @click="chooseimg">
  39. <image src="/pageA/static/upload.png" mode="aspectFill" class="icon"></image>
  40. </view>
  41. <view class="img" v-else>
  42. <image :src="image" mode="aspectFill"></image>
  43. <text @click="chooseimg">替换</text>
  44. </view>
  45. </view>
  46. <view class="bottom hflex acenter jcenter">
  47. <view class="btn1" @click="topublish('draft')">存草稿</view>
  48. <view class="btn2" @click="topublish('normal')">发布</view>
  49. </view>
  50. </block>
  51. </view>
  52. </template>
  53. <script>
  54. import richtextEditor from '@/components/richtext-editor/richtext-editor.vue'
  55. import $api from '@/static/js/api.js'
  56. export default {
  57. components: {
  58. richtextEditor
  59. },
  60. data() {
  61. return {
  62. data: {
  63. video_title: '',
  64. video_url: '',
  65. title: '',
  66. content: '',
  67. topic: {}
  68. },
  69. index: 1,
  70. type: '',
  71. image: '',
  72. is_edit: 0
  73. }
  74. },
  75. onLoad(option) {
  76. if (option.type) {
  77. this.type = option.type
  78. }
  79. if(option.edit) {
  80. this.is_edit = option.edit
  81. }
  82. if (option.data) {
  83. console.log(JSON.parse(decodeURIComponent(option.data)));
  84. this.data = JSON.parse(decodeURIComponent(option.data))
  85. let data = {
  86. id: this.data.topic_id
  87. }
  88. this.image = this.data.image
  89. this.data.topic = data
  90. console.log(this.data);
  91. }
  92. },
  93. methods: {
  94. topublish(status) {
  95. var url = ''
  96. let method= 'post'
  97. var form = {}
  98. form = {
  99. title: this.data.title,
  100. content: this.data.content,
  101. topic_id: this.data.topic.id,
  102. status: status,
  103. image: this.image
  104. }
  105. if (this.type == 'info') {
  106. url = 'info'
  107. } else if (this.type == 'article') {
  108. url = 'article'
  109. } else if (this.type == 'video') {
  110. url = 'video'
  111. form.video_title = this.data.video_title
  112. form.video_url = this.data.video_url
  113. }
  114. if(this.is_edit == 1) {
  115. method = 'put'
  116. // form.id = this.data.id
  117. url = url + '/' + this.data.id
  118. }
  119. console.log(form, '上传数据', url);
  120. $api.req({
  121. url: url,
  122. method: method,
  123. data: form
  124. }, function(res) {
  125. console.log(res);
  126. $api.info(res.msg)
  127. if (res.code == 10000) {
  128. setTimeout(() => {
  129. if(status == 'normal') {
  130. uni.switchTab({
  131. url: '/pages/index/index'
  132. })
  133. } else {
  134. uni.navigateTo({
  135. url: '/pageC/drafts'
  136. })
  137. }
  138. },1000)
  139. }
  140. })
  141. },
  142. chooseimg() {
  143. uni.chooseImage({
  144. success: (chooseImageRes) => {
  145. uni.showLoading({
  146. title: '上传中...'
  147. })
  148. const tempFilePaths = chooseImageRes.tempFilePaths;
  149. uni.uploadFile({
  150. url: $api.config.baseUrl + 'upload/image', //仅为示例,非真实的接口地址
  151. filePath: tempFilePaths[0],
  152. name: 'image',
  153. success: (uploadFileRes) => {
  154. let res = JSON.parse(uploadFileRes.data)
  155. this.image = res.data.url
  156. uni.hideLoading()
  157. }
  158. });
  159. }
  160. });
  161. },
  162. leftclick() {
  163. uni.navigateBack()
  164. },
  165. onsuccess(e) {
  166. this.data.content = e
  167. },
  168. next() {
  169. this.index = 2
  170. console.log(this.index);
  171. },
  172. selecttopic() {
  173. var _this = this
  174. uni.navigateTo({
  175. url: '/pageA/huati?type=select',
  176. events: {
  177. getitem(res) {
  178. _this.data.topic = res
  179. }
  180. }
  181. })
  182. },
  183. },
  184. }
  185. </script>
  186. <style lang="scss">
  187. .content::v-deep {
  188. background: #FFFFFF;
  189. .top {
  190. width: 100%;
  191. box-sizing: border-box;
  192. padding: 28rpx;
  193. border-bottom: 1px solid #F2F2F2;
  194. text:first-child {
  195. font-size: 40rpx;
  196. font-family: SFPro, SFPro;
  197. font-weight: 400;
  198. color: #222222;
  199. }
  200. .text {
  201. width: 100%;
  202. height: 96rpx;
  203. overflow: hidden;
  204. padding: 10rpx 0 0;
  205. }
  206. }
  207. .imgs {
  208. padding: 34rpx 28rpx;
  209. text {
  210. font-size: 32rpx;
  211. font-family: PingFangSC, PingFang SC;
  212. font-weight: 400;
  213. color: #222222;
  214. padding-right: 42rpx;
  215. }
  216. .img {
  217. width: 574rpx;
  218. height: 334rpx;
  219. background: #F5F5F5;
  220. border-radius: 12rpx;
  221. overflow: hidden;
  222. position: relative;
  223. .icon {
  224. width: 86rpx;
  225. height: 86rpx;
  226. }
  227. image {
  228. width: 100%;
  229. height: 100%;
  230. }
  231. text {
  232. position: absolute;
  233. bottom: 24rpx;
  234. left: 232rpx;
  235. width: 110rpx;
  236. height: 60rpx;
  237. background: rgba(0, 0, 0, 0.8);
  238. border-radius: 30rpx;
  239. font-size: 26rpx;
  240. font-family: PingFangSC, PingFang SC;
  241. font-weight: 400;
  242. color: #FFFFFF;
  243. line-height: 60rpx;
  244. text-align: center;
  245. padding: 0;
  246. }
  247. }
  248. }
  249. .bottom {
  250. width: 750rpx;
  251. height: 166rpx;
  252. background: #FFFFFF;
  253. box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0, 0, 0, 0.1);
  254. position: fixed;
  255. bottom: 0;
  256. left: 0;
  257. box-sizing: border-box;
  258. padding: 16rpx 28rpx 62rpx;
  259. border-top: 1px solid rgba(0, 0, 0, 0.1);
  260. .btn1 {
  261. width: 340rpx;
  262. height: 88rpx;
  263. border-radius: 44rpx;
  264. border: 2rpx solid #E2E2E2;
  265. font-size: 32rpx;
  266. font-family: PingFangSC, PingFang SC;
  267. font-weight: 400;
  268. color: #222222;
  269. line-height: 88rpx;
  270. text-align: center;
  271. margin-right: 14rpx;
  272. }
  273. .btn2 {
  274. width: 340rpx;
  275. height: 88rpx;
  276. background: #00B0B0;
  277. border-radius: 44rpx;
  278. font-size: 32rpx;
  279. font-family: PingFangSC, PingFang SC;
  280. font-weight: 400;
  281. color: #FFFFFF;
  282. line-height: 88rpx;
  283. text-align: center;
  284. }
  285. }
  286. .video {
  287. padding: 36rpx 28rpx;
  288. border-bottom: 1px solid #F2F2F2;
  289. }
  290. .fixed {
  291. position: fixed;
  292. left: 28rpx;
  293. bottom: 132rpx;
  294. background: rgba(0, 176, 176, .1);
  295. border-radius: 40rpx;
  296. padding: 8rpx 16rpx;
  297. max-width: max-content;
  298. margin: 20rpx 28rpx;
  299. image {
  300. width: 36rpx;
  301. height: 36rpx;
  302. margin: 0 16rpx 0 0;
  303. }
  304. text {
  305. font-size: 24rpx;
  306. font-family: PingFangSC, PingFang SC;
  307. font-weight: 400;
  308. color: #00B0B0;
  309. }
  310. }
  311. .title {
  312. padding: 36rpx 28rpx;
  313. .u-input {
  314. font-size: 44rpx;
  315. line-height: 60rpx;
  316. }
  317. }
  318. .center {
  319. max-height: 1000rpx;
  320. overflow: auto;
  321. // padding: 0 28rpx;
  322. }
  323. .u-nav-right {
  324. text {
  325. font-size: 32rpx;
  326. font-family: PingFangSC, PingFang SC;
  327. font-weight: 500;
  328. color: #999999;
  329. }
  330. }
  331. }
  332. </style>