wenda-list.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  1. <template>
  2. <view class="wenda-list">
  3. <view class="fangchan-wenda" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  4. <view class="wenda-box">
  5. <view class="box-top u-flex u-row-between">
  6. <text class="text1">问</text>
  7. <image class="img" :src="item.user_headimg" mode=""></image>
  8. <text class="text2">{{item.user_name}}</text>
  9. <!-- <text class="admin">管理员</text>
  10. <text class="yewu">业务人员</text> -->
  11. <text class="text3 u-flex-1">{{item.create_time}}</text>
  12. </view>
  13. <view class="table-header u-flex u-row-center" v-if="item.quiz_type == 2">
  14. <input type="text" placeholder="请输入" class="u-flex-1" :value="JSON.parse(item.content).title" :disabled="true">
  15. </view>
  16. <scroll-view v-if="item.quiz_type == 2" scroll-y="true" enable-flex scroll-x="true" class="wenda-table">
  17. <view class="table-row" v-for="(a,b) in JSON.parse(item.content).list" :key="b">
  18. <view class="table-col u-line-1" v-for="(c,d) in a" :key="d">{{c.value}}</view>
  19. </view>
  20. </scroll-view>
  21. <view class="wenda-text" v-if="item.quiz_type == 1">
  22. {{item.content}}
  23. </view>
  24. </view>
  25. <view class="wenda-box" v-if="item.apply_info">
  26. <view class="box-top u-flex u-row-between">
  27. <text class="text1" style="background-color: #04B578;">答</text>
  28. <image class="img" :src="item.apply_info.user_headimg" mode=""></image>
  29. <text class="text2">{{item.apply_info.user_name}}</text>
  30. <text class="admin" v-if="item.apply_info.reply_type == 2">管理员</text>
  31. <text class="yewu" v-if="item.apply_info.reply_type == 3">业务人员</text>
  32. <text class="text3 u-flex-1">{{item.apply_info.create_time}}</text>
  33. </view>
  34. <view class="wenda-text">
  35. {{item.apply_info.content}}
  36. </view>
  37. </view>
  38. <view class="wenda-more">
  39. {{item.apply_num}}人参与回复
  40. </view>
  41. </view>
  42. <view class="not-wenda u-flex-col u-col-center u-row-center" v-if="list.length == 0">
  43. <image class="img" src="../../static/images/not-wenda.png" mode=""></image>
  44. <text class="text1">当前楼房还没有问答?</text>
  45. <text class="text2">请您提出的您的问题</text>
  46. </view>
  47. <view class="" style="height: 170rpx;"></view>
  48. <view class="houses-btn u-flex u-row-between">
  49. <view class="btn-left u-flex u-row-center" @click="opentiwen">
  50. <image src="../../static/images/tiwen.png" mode=""></image>
  51. <text>立即提问</text>
  52. </view>
  53. <view class="btn-right" @click="tochat">在线咨询</view>
  54. </view>
  55. <u-popup v-model="showlogin" mode="center" background="rgba(0,0,0,0)">
  56. <view class="tocall-box u-flex-col u-col-center">
  57. <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
  58. <view class="u-flex-col u-col-center tocall-text">你目前处于未登录状态请前往登录</view>
  59. <view class="u-flex u-row-between tocall-btn">
  60. <text @click="showlogin = false">取消</text>
  61. <text @click="tologin">确定</text>
  62. </view>
  63. </view>
  64. </u-popup>
  65. <u-popup v-model="showtiwen" mode="center" border-radius="20">
  66. <view class="tiwen-popup">
  67. <view class="tiwen-zhiding u-flex" v-if="quiz_type == 2 && is_allow == 1">
  68. <text class="text">置顶</text>
  69. <u-switch v-model="checked"></u-switch>
  70. </view>
  71. <view class="table-header u-flex u-row-center" v-if="quiz_type == 2">
  72. <input type="text" placeholder="请输入" class="u-flex-1" v-model="tabletitle">
  73. </view>
  74. <scroll-view v-if="quiz_type == 2" scroll-x="true" scroll-y="true" :enhanced="false" class="wenda-table1">
  75. <view class="table-row" v-for="(a,b) in table" :key="b">
  76. <input type="text" placeholder="请输入" class="table-col" v-for="(c,d) in a" :key="d" v-model="c.value">
  77. </view>
  78. </scroll-view>
  79. <view v-if="quiz_type == 1" class="textarea">
  80. <textarea placeholder="请输入提问内容" v-model="content"></textarea>
  81. </view>
  82. <view class="tiwen-btn u-flex u-row-between">
  83. <view v-if="is_allow == 1" class="u-flex u-row-center tiwen-btn-item u-flex-1" style="background: #1677FF;" @click="showtable = true">
  84. <image src="../../static/images/table.png" mode=""></image>
  85. <text>添加表格</text>
  86. </view>
  87. <view class="u-flex u-row-center tiwen-btn-item u-flex-1" style="background: #FFA120;" @click="totiwen">
  88. <image src="../../static/images/tiwen.png" mode=""></image>
  89. <text>提问</text>
  90. </view>
  91. </view>
  92. </view>
  93. </u-popup>
  94. <u-popup v-model="showtable" mode="center" border-radius="20">
  95. <view class="table-popup">
  96. <view class="table-header">
  97. 表格属性
  98. </view>
  99. <view class="table-row-col u-flex u-row-between">
  100. <view class="row-col-item u-flex-col">
  101. <text>行数</text>
  102. <input type="number" placeholder="请输入" v-model="row">
  103. </view>
  104. <view class="row-col-item u-flex-col">
  105. <text>列数</text>
  106. <input type="number" placeholder="请输入" v-model="col">
  107. </view>
  108. </view>
  109. <!-- <view class="table-title u-flex-col">
  110. <text>标题</text>
  111. <input type="text" placeholder="请输入">
  112. </view>
  113. <view class="table-title u-flex-col">
  114. <text>摘要</text>
  115. <input type="text" placeholder="请输入">
  116. </view> -->
  117. <view class="add-table-btn u-flex u-row-between">
  118. <text @click="showtable = false">取消</text>
  119. <text @click="createtable">确定</text>
  120. </view>
  121. </view>
  122. </u-popup>
  123. <gf-chat ref="chatlist" @over="getuser"></gf-chat>
  124. </view>
  125. </template>
  126. <script>
  127. export default {
  128. data() {
  129. return {
  130. showtiwen: false,
  131. showlogin: false,
  132. showtable: false,
  133. checked: false,
  134. page: 1,
  135. list: [],
  136. detail: {},
  137. quiz_type: 1,
  138. content: '',
  139. table: [],
  140. tabletitle: '',
  141. is_allow: 0,
  142. row: '',
  143. col: '',
  144. worker_id: 0,
  145. worker_phone: '',
  146. worker_hx_username: ''
  147. }
  148. },
  149. onLoad(option) {
  150. this.id = option.id
  151. this.getlist()
  152. this.getlou()
  153. },
  154. onShow() {
  155. if (uni.getStorageSync("token")) {
  156. this.getuser()
  157. }
  158. },
  159. methods: {
  160. totiwen() {
  161. if (this.quiz_type == 1) {
  162. if (!this.content) {
  163. this.$u.toast("请输入问答内容")
  164. return
  165. }
  166. } else {
  167. if (!this.tabletitle) {
  168. this.$u.toast("请输入表格标题")
  169. return
  170. }
  171. for (let i = 0; i < this.table.length; i++) {
  172. for (let j = 0; j < this.table[i].length; j++) {
  173. if (!this.table[i][j].value) {
  174. this.$u.toast("请完善表格")
  175. return
  176. }
  177. }
  178. }
  179. }
  180. uni.showLoading({
  181. mask: true,
  182. title: "请稍后"
  183. })
  184. this.$u.post('/api/Comment/submit_comment', {
  185. id: this.id,
  186. type: this.quiz_type,
  187. is_top: this.value ? 1 : 0,
  188. content: this.quiz_type == 1 ? this.content : JSON.stringify({ list: this.table, title: this.tabletitle })
  189. }).then(res => {
  190. this.$u.toast(res.msg)
  191. if (res.code == 1) {
  192. this.row = ''
  193. this.col = ''
  194. this.content = ''
  195. this.table = []
  196. this.tabletitle = ''
  197. this.showtiwen = false
  198. setTimeout(() => {
  199. this.page = 1
  200. this.list = []
  201. this.getlist()
  202. }, 800)
  203. }
  204. })
  205. },
  206. createtable() {
  207. if (!this.row || this.row == 0) {
  208. this.$u.toast("请输入行数")
  209. return
  210. }
  211. if (!this.col || this.col == 0) {
  212. this.$u.toast("请输入列数")
  213. return
  214. }
  215. this.quiz_type = 2
  216. this.showtable = false
  217. this.table = []
  218. for (let i = 0; i < this.row; i++) {
  219. var arr = []
  220. for (let j = 0; j < this.col; j++) {
  221. arr.push({
  222. value: ''
  223. })
  224. }
  225. this.table.push(arr)
  226. }
  227. },
  228. opentiwen() {
  229. if (uni.getStorageSync("token")) {
  230. this.quiz_type = 1
  231. this.showtiwen = true
  232. } else {
  233. this.showlogin = true
  234. }
  235. },
  236. getuser() {
  237. this.$u.post('/api/Member/member_info').then(res => {
  238. this.is_allow = res.data.is_allow
  239. this.worker_id = res.data.worker_id
  240. this.worker_phone = res.data.worker_phone
  241. this.worker_hx_username = res.data.worker_hx_username
  242. })
  243. },
  244. getlist() {
  245. this.$u.post('/api/Comment/consult_comment_list', {
  246. id: this.id,
  247. page: this.page
  248. }).then(res => {
  249. if (res.code == 1) {
  250. this.list = this.list.concat(res.data)
  251. }
  252. })
  253. },
  254. getlou() {
  255. this.$u.post('/api/Property/property_detail', {
  256. id: this.id
  257. }).then(res => {
  258. this.detail = res.data
  259. })
  260. },
  261. toinfo(item) {
  262. uni.navigateTo({
  263. url: "/pagesA/index/wenda-info?id=" + item.id + "&louid=" + this.id
  264. })
  265. },
  266. tologin() {
  267. this.showlogin = false
  268. uni.navigateTo({
  269. url: "/pages/mine/login"
  270. })
  271. },
  272. tochat() {
  273. if (uni.getStorageSync("token")) {
  274. if (this.worker_id == 0) {
  275. this.$refs.chatlist.open(this.id)
  276. } else {
  277. this.$u.post('/api/Member/consult_record', {
  278. type: 2
  279. })
  280. uni.navigateTo({
  281. url: "/pages/index/chat?hx_username=" + this.worker_hx_username + "&worker_id=" + this.worker_id
  282. })
  283. }
  284. } else {
  285. this.showlogin = true
  286. }
  287. },
  288. }
  289. }
  290. </script>
  291. <style lang="scss">
  292. page {
  293. background-color: #F5F5F5;
  294. }
  295. .wenda-list {
  296. .not-wenda {
  297. height: 80vh;
  298. .img {
  299. width: 178rpx;
  300. height: 178rpx;
  301. margin-bottom: 20rpx;
  302. }
  303. .text1 {
  304. font-size: 24rpx;
  305. font-family: PingFangSC-Regular, PingFang SC;
  306. font-weight: 400;
  307. color: #CCCCCC;
  308. margin-bottom: 10rpx;
  309. }
  310. .text2 {
  311. font-size: 24rpx;
  312. font-family: PingFangSC-Regular, PingFang SC;
  313. font-weight: 400;
  314. color: #CCCCCC;
  315. }
  316. }
  317. .table-popup {
  318. width: 650rpx;
  319. .add-table-btn {
  320. padding: 40rpx 24rpx;
  321. text:first-child {
  322. width: 284rpx;
  323. line-height: 88rpx;
  324. background: #CCCCCC;
  325. border-radius: 20rpx;
  326. text-align: center;
  327. font-size: 28rpx;
  328. font-family: PingFangSC-Regular, PingFang SC;
  329. font-weight: 400;
  330. color: #FFFFFF;
  331. }
  332. text:last-child {
  333. width: 284rpx;
  334. line-height: 88rpx;
  335. background: #1677FF;
  336. border-radius: 20rpx;
  337. text-align: center;
  338. font-size: 28rpx;
  339. font-family: PingFangSC-Regular, PingFang SC;
  340. font-weight: 400;
  341. color: #FFFFFF;
  342. }
  343. }
  344. .table-title {
  345. margin-bottom: 20rpx;
  346. padding: 0 24rpx;
  347. text {
  348. font-size: 28rpx;
  349. font-family: PingFangSC-Regular, PingFang SC;
  350. font-weight: 400;
  351. color: #666666;
  352. margin-bottom: 20rpx;
  353. }
  354. input {
  355. width: 100%;
  356. height: 88rpx;
  357. background: #FFFFFF;
  358. border-radius: 20rpx;
  359. border: 2rpx solid #E5E5E5;
  360. padding: 0 24rpx;
  361. box-sizing: border-box;
  362. font-size: 28rpx;
  363. font-family: PingFangSC-Regular, PingFang SC;
  364. font-weight: 400;
  365. color: #666666;
  366. }
  367. }
  368. .table-row-col {
  369. padding: 0 24rpx;
  370. margin-bottom: 20rpx;
  371. .row-col-item {
  372. text {
  373. font-size: 28rpx;
  374. font-family: PingFangSC-Regular, PingFang SC;
  375. font-weight: 400;
  376. color: #666666;
  377. margin-bottom: 20rpx;
  378. }
  379. input {
  380. width: 284rpx;
  381. height: 88rpx;
  382. background: #FFFFFF;
  383. border-radius: 20rpx;
  384. border: 2rpx solid #E5E5E5;
  385. padding: 0 24rpx;
  386. box-sizing: border-box;
  387. font-size: 28rpx;
  388. font-family: PingFangSC-Regular, PingFang SC;
  389. font-weight: 400;
  390. color: #666666;
  391. }
  392. }
  393. }
  394. .table-header {
  395. margin-bottom: 40rpx;
  396. line-height: 88rpx;
  397. border-bottom: 2rpx solid #E5E5E5;
  398. font-size: 28rpx;
  399. font-family: PingFangSC-Regular, PingFang SC;
  400. font-weight: 400;
  401. color: #333333;
  402. padding: 0 24rpx;
  403. }
  404. }
  405. .tiwen-popup {
  406. width: 650rpx;
  407. padding: 24rpx;
  408. .tiwen-zhiding {
  409. margin-bottom: 20rpx;
  410. .text {
  411. font-size: 28rpx;
  412. font-family: PingFangSC-Regular, PingFang SC;
  413. font-weight: 400;
  414. color: #666666;
  415. margin-right: 16rpx;
  416. }
  417. }
  418. .table-header {
  419. width: 600rpx;
  420. height: 94rpx;
  421. border: 2rpx solid #F0F0F0;
  422. input {
  423. text-align: center;
  424. color: red;
  425. }
  426. }
  427. .wenda-table1 {
  428. width: 600rpx;
  429. max-height: 378rpx;
  430. border-radius: 16rpx;
  431. margin-bottom: 20rpx;
  432. .table-row {
  433. white-space: nowrap;
  434. height: 94rpx;
  435. .table-col {
  436. width: 150rpx;
  437. height: 94rpx;
  438. border-bottom: 2rpx solid #F0F0F0;
  439. border-left: 2rpx solid #F0F0F0;
  440. padding: 0 16rpx;
  441. display: inline-block;
  442. font-size: 24rpx;
  443. font-family: PingFangSC-Regular, PingFang SC;
  444. font-weight: 400;
  445. color: rgba(102, 102, 102, 0.88);
  446. box-sizing: border-box;
  447. }
  448. .table-col:last-child {
  449. border-right: 2rpx solid #F0F0F0;
  450. }
  451. }
  452. .table-row:last-child {
  453. .table-col {
  454. // border-bottom: 2rpx solid #F0F0F0;
  455. }
  456. }
  457. }
  458. .tiwen-btn {
  459. .tiwen-btn-item {
  460. height: 88rpx;
  461. border-radius: 20rpx;
  462. margin: 0 10rpx;
  463. image {
  464. width: 40rpx;
  465. height: 40rpx;
  466. margin-right: 20rpx;
  467. }
  468. text {
  469. font-size: 28rpx;
  470. font-family: PingFangSC-Regular, PingFang SC;
  471. font-weight: 400;
  472. color: #FFFFFF;
  473. }
  474. }
  475. }
  476. .textarea {
  477. height: 326rpx;
  478. background: #FFFFFF;
  479. border-radius: 20rpx;
  480. border: 2rpx solid #CCCCCC;
  481. padding: 20rpx;
  482. margin-bottom: 24rpx;
  483. textarea {
  484. width: 100%;
  485. height: 100%;
  486. }
  487. }
  488. }
  489. .tocall-box {
  490. position: relative;
  491. .tocall-img {
  492. width: 650rpx;
  493. height: 476rpx;
  494. }
  495. .tocall-btn {
  496. position: absolute;
  497. bottom: 70rpx;
  498. left: 0;
  499. width: 100%;
  500. padding: 0 48rpx;
  501. text:first-child {
  502. width: 254rpx;
  503. line-height: 80rpx;
  504. background: #FFA120;
  505. border-radius: 20rpx;
  506. text-align: center;
  507. font-size: 34rpx;
  508. font-family: PingFangSC-Medium, PingFang SC;
  509. font-weight: 500;
  510. color: #FFFFFF;
  511. }
  512. text:last-child {
  513. width: 254rpx;
  514. line-height: 80rpx;
  515. background: #1F7EFF;
  516. border-radius: 20rpx;
  517. text-align: center;
  518. font-size: 34rpx;
  519. font-family: PingFangSC-Medium, PingFang SC;
  520. font-weight: 500;
  521. color: #FFFFFF;
  522. }
  523. }
  524. .tocall-text {
  525. text-align: center;
  526. font-size: 24rpx;
  527. font-family: PingFangSC-Regular, PingFang SC;
  528. font-weight: 400;
  529. color: #999999;
  530. position: absolute;
  531. top: 244rpx;
  532. left: 0;
  533. z-index: 10;
  534. width: 100%;
  535. }
  536. }
  537. .houses-btn {
  538. position: fixed;
  539. bottom: 0;
  540. left: 0;
  541. width: 750rpx;
  542. height: 166rpx;
  543. background: #FFFFFF;
  544. padding: 0 24rpx 54rpx 24rpx;
  545. z-index: 1;
  546. .btn-left {
  547. width: 338rpx;
  548. height: 84rpx;
  549. background: #FFA120;
  550. border-radius: 20rpx;
  551. font-size: 28rpx;
  552. font-family: PingFangSC-Regular, PingFang SC;
  553. font-weight: 400;
  554. color: #FFFFFF;
  555. image {
  556. width: 40rpx;
  557. height: 40rpx;
  558. margin-right: 20rpx;
  559. }
  560. }
  561. .btn-right {
  562. width: 338rpx;
  563. line-height: 84rpx;
  564. background: #1F7EFF;
  565. border-radius: 20rpx;
  566. text-align: center;
  567. font-size: 28rpx;
  568. font-family: PingFangSC-Regular, PingFang SC;
  569. font-weight: 400;
  570. color: #FFFFFF;
  571. }
  572. }
  573. .fangchan-wenda {
  574. width: 702rpx;
  575. background: #FFFFFF;
  576. border-radius: 20rpx;
  577. margin: 20rpx auto;
  578. padding: 24rpx 24rpx 20rpx 24rpx;
  579. .wenda-more {
  580. font-size: 24rpx;
  581. font-family: PingFangSC-Regular, PingFang SC;
  582. font-weight: 400;
  583. color: #666666;
  584. padding: 0 20rpx;
  585. }
  586. .wenda-box {
  587. padding: 0 20rpx;
  588. .table-header {
  589. width: 620rpx;
  590. height: 94rpx;
  591. border: 2rpx solid #F0F0F0;
  592. input {
  593. text-align: center;
  594. color: red;
  595. }
  596. }
  597. .wenda-table {
  598. width: 620rpx;
  599. max-height: 378rpx;
  600. border-radius: 16rpx;
  601. margin-bottom: 20rpx;
  602. .table-row {
  603. white-space: nowrap;
  604. height: 94rpx;
  605. .table-col {
  606. width: 155rpx;
  607. line-height: 94rpx;
  608. height: 94rpx;
  609. border-bottom: 2rpx solid #F0F0F0;
  610. border-left: 2rpx solid #F0F0F0;
  611. padding: 0 16rpx;
  612. display: inline-block;
  613. font-size: 24rpx;
  614. font-family: PingFangSC-Regular, PingFang SC;
  615. font-weight: 400;
  616. color: rgba(102, 102, 102, 0.88);
  617. }
  618. .table-col:last-child {
  619. border-right: 2rpx solid #F0F0F0;
  620. }
  621. }
  622. .table-row:last-child {
  623. .table-col {
  624. // border-bottom: 2rpx solid #F0F0F0;
  625. }
  626. }
  627. }
  628. .wenda-text {
  629. font-size: 24rpx;
  630. font-family: PingFangSC-Regular, PingFang SC;
  631. font-weight: 400;
  632. color: #666666;
  633. margin-bottom: 20rpx;
  634. }
  635. .box-top {
  636. margin-bottom: 20rpx;
  637. .yewu {
  638. width: 118rpx;
  639. line-height: 36rpx;
  640. border-radius: 8rpx;
  641. border: 2rpx solid #1677FF;
  642. text-align: center;
  643. font-size: 24rpx;
  644. font-family: PingFangSC-Regular, PingFang SC;
  645. font-weight: 400;
  646. color: #1677FF;
  647. }
  648. .admin {
  649. width: 118rpx;
  650. line-height: 36rpx;
  651. border-radius: 8rpx;
  652. border: 2rpx solid #FF9F18;
  653. text-align: center;
  654. font-size: 24rpx;
  655. font-family: PingFangSC-Regular, PingFang SC;
  656. font-weight: 400;
  657. color: #FF9F18;
  658. }
  659. .text2 {
  660. font-size: 24rpx;
  661. font-family: PingFangSC-Regular, PingFang SC;
  662. font-weight: 400;
  663. color: #666666;
  664. margin-right: 20rpx;
  665. }
  666. .text3 {
  667. font-size: 24rpx;
  668. font-family: PingFangSC-Regular, PingFang SC;
  669. font-weight: 400;
  670. color: #999999;
  671. text-align: right;
  672. }
  673. .img {
  674. width: 36rpx;
  675. height: 36rpx;
  676. border-radius: 100rpx;
  677. margin: 0 20rpx;
  678. }
  679. .text1 {
  680. width: 36rpx;
  681. line-height: 36rpx;
  682. background: #1677FF;
  683. border-radius: 8rpx;
  684. text-align: center;
  685. font-size: 24rpx;
  686. font-family: PingFangSC-Semibold, PingFang SC;
  687. font-weight: 600;
  688. color: #FFFFFF;
  689. }
  690. }
  691. }
  692. }
  693. }
  694. </style>