add-luntan.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. <template>
  2. <view class="add-luntan">
  3. <u-navbar :fixed="false" title="发帖子" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true"
  4. @leftClick='leftClick()'>
  5. </u-navbar>
  6. <textarea placeholder="分享你的想法..." v-model="textarea" class="textarea"></textarea>
  7. <view class="upload-file u-flex u-flex-wrap">
  8. <view class="upload-btn" v-for="(item,index) in images" :key="index" style="border: none;"
  9. @click="$openimage(images,index)">
  10. <view class="del-img" @click.stop>
  11. <u-icon name="close-circle" size="18" color="red" @click="del(index)"></u-icon>
  12. </view>
  13. <image :src="item" mode="aspectFill" class="image"></image>
  14. </view>
  15. <view class="upload-btn u-flex u-row-center" @click="upload" v-if="images.length < 6">
  16. <image src="static/upload.png" class="upload" mode=""></image>
  17. </view>
  18. </view>
  19. <view class="quanzi-box u-flex u-row-between">
  20. <view v-if="quanzi.id" class="u-flex quanzi-content">
  21. <view class="quanzi-img1 u-flex u-row-center">
  22. <image src="../static/images/quanzi.png" mode=""></image>
  23. </view>
  24. <view class="quanzi-name1">
  25. {{quanzi.title}}
  26. </view>
  27. <u-icon @click="quanzi = {}" name="close" color="#0C66C2" size="16"></u-icon>
  28. </view>
  29. <view v-else class="u-flex" @click="show = true">
  30. <view class="quanzi-img u-flex u-row-center">
  31. <image src="../static/images/quanzi.png" mode=""></image>
  32. </view>
  33. <view class="quanzi-name">
  34. 选择圈子
  35. </view>
  36. </view>
  37. <u-icon name="arrow-right" @click="show = true"></u-icon>
  38. </view>
  39. <view class="fabu-btn" @click="toover">
  40. 立即发布
  41. </view>
  42. <u-popup :show="show" mode="bottom" round="28">
  43. <view class="quanzi-popup">
  44. <view class="popup-header u-flex u-row-between">
  45. <u-icon name="close" size="0" @click="show = false" color="#222222"></u-icon>
  46. <text class="text">添加圈子</text>
  47. <u-icon name="close" size="22" @click="show = false" color="#222222"></u-icon>
  48. </view>
  49. <view class="header-search">
  50. <view class="search-box u-flex">
  51. <u-icon name="search" color="#979797" size="36"></u-icon>
  52. <input type="text" class="input" placeholder="搜索圈子" v-model="keywords1" confirm-type="search"
  53. @confirm="tosearch">
  54. </view>
  55. </view>
  56. <view class="scroll-box u-flex">
  57. <scroll-view scroll-y="true" class="quanzi-right" @scrolltolower="todown">
  58. <view v-for="(a,b) in list" :key="b" class="right-item u-flex" @click="quanzi = a;show = false">
  59. <image :src="a.image" class="item-img" mode=""></image>
  60. <view class="item-text u-flex-col">
  61. <text>{{a.title}}</text>
  62. <text>{{a.article_count}}条内容|{{a.follow_count}}人关注</text>
  63. </view>
  64. </view>
  65. </scroll-view>
  66. </view>
  67. <view class="safe-area-inset-bottom"></view>
  68. </view>
  69. </u-popup>
  70. <u-modal @cancel="return1" @confirm="show1=false" :show="show1" :title="title" :content='content'
  71. confirmText='继续编辑' cancelText='退出' :showCancelButton='true' confirmColor="#0C66C2"></u-modal>
  72. </view>
  73. </template>
  74. <script>
  75. import {
  76. group_list,
  77. create_article
  78. } from "@/units/inquire.js"
  79. export default {
  80. data() {
  81. return {
  82. content: '现在退出内容将不会保留',
  83. title: '确定退出吗',
  84. show1: false,
  85. show: false,
  86. left: 0,
  87. page: 1,
  88. list: [],
  89. total: 0,
  90. textarea: '',
  91. quanzi: {},
  92. images: [],
  93. keywords1: '',
  94. keywords: '',
  95. type:''
  96. }
  97. },
  98. onLoad(option) {
  99. if (option.quanzi) {
  100. this.quanzi = JSON.parse(option.quanzi)
  101. }
  102. if(option.type){
  103. this.type = option.type
  104. }
  105. this.getquanzi()
  106. },
  107. methods: {
  108. return1() {
  109. uni.navigateBack()
  110. },
  111. leftClick() {
  112. if (this.quanzi.id || this.textarea || this.images.join(",")) {
  113. this.show1 = true
  114. } else {
  115. uni.navigateBack()
  116. }
  117. },
  118. todown() {
  119. if (this.total != this.list.length) {
  120. this.page++
  121. this.getquanzi()
  122. }
  123. },
  124. tosearch() {
  125. this.keywords = this.keywords1
  126. this.page = 1
  127. this.list = []
  128. this.getquanzi()
  129. },
  130. del(index) {
  131. uni.showModal({
  132. title: "提示",
  133. content: "确定删除吗?",
  134. success: (e) => {
  135. if (e.confirm) {
  136. this.images.splice(index, 1)
  137. }
  138. }
  139. })
  140. },
  141. upload() {
  142. uni.chooseImage({
  143. count: 6 - this.images.length,
  144. success: (e) => {
  145. this.afterRead(e.tempFilePaths)
  146. },
  147. fail: (err) => {
  148. console.log(err);
  149. }
  150. })
  151. },
  152. async afterRead(lists) {
  153. uni.showLoading({
  154. mask: true,
  155. title: "上传中"
  156. })
  157. for (let i = 0; i < lists.length; i++) {
  158. const result = await this.uploadFilePromise(lists[i])
  159. if (result.code == 1) {
  160. this.images.push(result.data.fullurl)
  161. }
  162. }
  163. uni.hideLoading()
  164. },
  165. uploadFilePromise(url) {
  166. return new Promise((resolve, reject) => {
  167. uni.uploadFile({
  168. url: 'https://hire.hdlkeji.com' + '/api/common/upload',
  169. filePath: url,
  170. name: 'file',
  171. success: (res) => {
  172. setTimeout(() => {
  173. resolve(JSON.parse(res.data))
  174. }, 1000)
  175. },
  176. fail: (e) => {
  177. console.log(e);
  178. }
  179. })
  180. })
  181. },
  182. getquanzi() {
  183. group_list({
  184. page: this.page,
  185. keywords: this.keywords
  186. }).then(res => {
  187. this.list = this.list.concat(res.data.data)
  188. this.total = res.data.total
  189. })
  190. },
  191. toover() {
  192. if (!this.textarea) {
  193. this.$u.toast("请输入内容")
  194. return
  195. }
  196. // if (!this.quanzi.id) {
  197. // this.$u.toast("请选择圈子")
  198. // return
  199. // }
  200. uni.showLoading({
  201. mask: true,
  202. title: "请稍后"
  203. })
  204. create_article({
  205. circle_id: this.quanzi.id,
  206. content: this.textarea,
  207. images: this.images.join(",")
  208. }).then(res => {
  209. this.$u.toast(res.msg)
  210. if (res.code == 1) {
  211. setTimeout(() => {
  212. uni.navigateTo({
  213. url: "/pagesC/add-luntan-over?id=" + this.quanzi.id + '&type='+ this.type
  214. })
  215. }, 800)
  216. }
  217. })
  218. }
  219. }
  220. }
  221. </script>
  222. <style lang="scss">
  223. .add-luntan {
  224. padding: 28rpx 32rpx;
  225. .fabu-btn {
  226. position: fixed;
  227. bottom: 30rpx;
  228. left: 32rpx;
  229. width: 686rpx;
  230. line-height: 92rpx;
  231. background: #0C66C2;
  232. border-radius: 12rpx;
  233. text-align: center;
  234. font-size: 32rpx;
  235. font-family: PingFangSC-Medium, PingFang SC;
  236. font-weight: 500;
  237. color: #FFFFFF;
  238. }
  239. .quanzi-popup {
  240. width: 750rpx;
  241. background: #FFFFFF;
  242. .scroll-box {
  243. height: 60vh;
  244. .quanzi-right {
  245. flex: 1;
  246. height: 100%;
  247. min-width: 1rpx;
  248. .right-item {
  249. padding: 22rpx 28rpx;
  250. .item-text {
  251. flex: 1;
  252. min-width: 1rpx;
  253. text:first-child {
  254. font-size: 28rpx;
  255. font-family: PingFangSC-Medium, PingFang SC;
  256. font-weight: 500;
  257. color: #222222;
  258. margin-bottom: 4rpx;
  259. }
  260. text:last-child {
  261. font-size: 22rpx;
  262. font-family: PingFangSC-Regular, PingFang SC;
  263. font-weight: 400;
  264. color: #777777;
  265. }
  266. }
  267. .item-img {
  268. width: 76rpx;
  269. height: 76rpx;
  270. border-radius: 10rpx;
  271. margin-right: 16rpx;
  272. background-color: rgba(0, 0, 0, 0.1);
  273. }
  274. }
  275. }
  276. .quanzi-left {
  277. width: 208rpx;
  278. background: #F6F6F6;
  279. height: 100%;
  280. .left-item {
  281. line-height: 96rpx;
  282. font-size: 30rpx;
  283. font-family: PingFangSC-Medium, PingFang SC;
  284. font-weight: 500;
  285. color: #777777;
  286. text-align: center;
  287. }
  288. .leftactive {
  289. background-color: #fff;
  290. font-size: 30rpx;
  291. font-family: PingFangSC-Medium, PingFang SC;
  292. font-weight: 500;
  293. color: #0C66C2;
  294. }
  295. }
  296. }
  297. .header-search {
  298. padding: 0 32rpx 36rpx 32rpx;
  299. border-bottom: 2rpx solid #F4F4F4;
  300. .search-box {
  301. height: 80rpx;
  302. background: #F6F6F6;
  303. border-radius: 16rpx;
  304. padding: 0 20rpx;
  305. .input {
  306. flex: 1;
  307. margin-left: 12rpx;
  308. font-size: 28rpx;
  309. }
  310. }
  311. }
  312. .popup-header {
  313. height: 120rpx;
  314. padding: 0 32rpx;
  315. .text {
  316. font-size: 36rpx;
  317. font-family: PingFangSC-Medium, PingFang SC;
  318. font-weight: 500;
  319. color: #222222;
  320. }
  321. }
  322. }
  323. .quanzi-box {
  324. height: 100rpx;
  325. border-bottom: 2rpx solid #F4F4F4;
  326. .quanzi-content {
  327. padding: 0 14rpx;
  328. height: 50rpx;
  329. background: rgba(12, 102, 194, 0.06);
  330. border-radius: 28rpx;
  331. .quanzi-name1 {
  332. font-size: 24rpx;
  333. font-family: PingFangSC-Medium, PingFang SC;
  334. font-weight: 500;
  335. color: #0C66C2;
  336. margin-right: 14rpx;
  337. }
  338. .quanzi-img1 {
  339. margin-right: 8rpx;
  340. image {
  341. width: 28rpx;
  342. height: 28rpx;
  343. }
  344. }
  345. }
  346. .quanzi-name {
  347. flex: 1;
  348. margin: 0 20rpx;
  349. font-size: 28rpx;
  350. font-family: PingFangSC-Medium, PingFang SC;
  351. font-weight: 500;
  352. color: #444444;
  353. }
  354. .quanzi-img {
  355. width: 48rpx;
  356. height: 48rpx;
  357. background: #F6F6F6;
  358. border-radius: 28rpx;
  359. image {
  360. width: 28rpx;
  361. height: 28rpx;
  362. }
  363. }
  364. }
  365. .upload-file {
  366. .upload-btn {
  367. margin-right: 10rpx;
  368. margin-bottom: 10rpx;
  369. width: 210rpx;
  370. height: 210rpx;
  371. border-radius: 20rpx;
  372. border: 2rpx dashed #D1D1D1;
  373. position: relative;
  374. .del-img {
  375. position: absolute;
  376. top: 0;
  377. right: 0;
  378. z-index: 10;
  379. }
  380. .image {
  381. width: 210rpx;
  382. height: 210rpx;
  383. }
  384. .upload {
  385. width: 88rpx;
  386. height: 88rpx;
  387. }
  388. }
  389. }
  390. .textarea {
  391. width: 100%;
  392. height: 300rpx;
  393. }
  394. }
  395. ::v-deep .u-navbar__content__left {
  396. padding: 0 !important;
  397. }
  398. </style>