123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482 |
- <template>
- <view class="wenda-info">
- <view class="fangchan-wenda">
- <view class="wenda-box">
- <view class="box-top u-flex u-row-between">
- <text class="text1">问</text>
- <image class="img" :src="pinglundetail.user_headimg" mode=""></image>
- <text class="text2">{{pinglundetail.user_name || ''}}</text>
- <!-- <text class="admin">管理员</text>
- <text class="yewu">业务人员</text> -->
- <text class="text3 u-flex-1">{{pinglundetail.create_time ? pinglundetail.create_time : ''}}</text>
- </view>
- <view class="tiwen-zhiding u-flex" v-if="is_allow == 1 && user_id == pinglundetail.u_id && pinglundetail.quiz_type == 2">
- <text class="text">置顶</text>
- <u-switch v-model="checked"></u-switch>
- </view>
- <view class="table-header u-flex u-row-center" v-if="pinglundetail.quiz_type == 2">
- <input type="text" placeholder="请输入" class="u-flex-1" :value="JSON.parse(pinglundetail.content).title" :disabled="true">
- </view>
- <scroll-view v-if="pinglundetail.quiz_type == 2" scroll-y="true" scroll-x="true" class="wenda-table">
- <view class="table-row" v-for="(a,b) in JSON.parse(pinglundetail.content).list" :key="b">
- <view class="table-col u-line-1" v-for="(c,d) in a" :key="d" @click.stop="$u.toast(c.value)">{{c.value}}</view>
- </view>
- </scroll-view>
- <view class="wenda-text" v-if="pinglundetail.quiz_type == 1">
- {{pinglundetail.content || ''}}
- </view>
- </view>
- <view class="wenda-box" v-for="(item,index) in pinglunlist" :key="index">
- <view class="box-top u-flex u-row-between">
- <text class="text1" style="background-color: #04B578;">答</text>
- <image class="img" :src="item.user_headimg" mode=""></image>
- <text class="text2">{{item.user_name}}</text>
- <text class="admin" v-if="item.reply_type == 2">管理员</text>
- <text class="yewu" v-if="item.reply_type == 3">业务人员</text>
- <text class="text3 u-flex-1">{{item.create_time}}</text>
- </view>
- <view class="wenda-text">
- {{item.content}}
- </view>
- </view>
- </view>
- <view class="" style="height: 170rpx;"></view>
- <view class="houses-btn u-flex u-row-between">
- <view class="btn-left u-flex u-row-center" @click="openhuifu">
- <image src="../../static/images/huifu.png" mode=""></image>
- <text>立即回复</text>
- </view>
- <view class="btn-right" @click="tochat">在线咨询</view>
- </view>
- <u-popup v-model="showlogin" mode="center" background="rgba(0,0,0,0)">
- <view class="tocall-box u-flex-col u-col-center">
- <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
- <view class="u-flex-col u-col-center tocall-text">你目前处于未登录状态请前往登录</view>
- <view class="u-flex u-row-between tocall-btn">
- <text @click="showlogin = false">取消</text>
- <text @click="tologin">确定</text>
- </view>
- </view>
- </u-popup>
- <u-popup v-model="showhuifu" mode="center" border-radius="20">
- <view class="huifu-popup">
- <view class="textarea">
- <textarea placeholder="请输入回复内容" v-model="huifu"></textarea>
- </view>
- <view class="huifu-btn u-flex u-row-center" @click="tohuifu">
- <image src="../../static/images/huifu.png" mode=""></image>
- <text>回复</text>
- </view>
- </view>
- </u-popup>
- <gf-chat ref="chatlist" @over="getuser"></gf-chat>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- checked: false,
- showlogin: false,
- showhuifu: false,
- id: '',
- louid: '',
- detail: {},
- pinglundetail: {},
- pinglunlist: [],
- page: 1,
- is_allow: 0,
- user_id: '',
- huifu: '',
- worker_id: 0,
- worker_phone: '',
- worker_hx_username: ''
- }
- },
- onLoad(option) {
- this.id = option.id
- this.louid = option.louid
- this.getlou()
- this.getdata()
- },
- onShow() {
- if (uni.getStorageSync("token")) {
- this.getuser()
- }
- },
- onReachBottom() {
- if (this.pinglunlist.length % 10 == 0) {
- this.page++
- this.getdata()
- }
- },
- methods: {
- tohuifu() {
- if (!this.huifu) {
- this.$u.toast("请输入回复内容")
- return
- }
- uni.showLoading({
- mask: true,
- title: "请稍后"
- })
- this.$u.post('/api/Comment/reply_comment', {
- comment_id: this.id,
- content: this.huifu
- }).then(res => {
- this.$u.toast(res.msg)
- if (res.code == 1) {
- this.showhuifu = false
- this.huifu = ''
- setTimeout(() => {
- this.page = 1
- this.pinglunlist = []
- this.getdata()
- }, 800)
- }
- })
- },
- getuser() {
- this.$u.post('/api/Member/member_info').then(res => {
- this.is_allow = res.data.is_allow
- this.user_id = res.data.id
- this.worker_id = res.data.worker_id
- this.worker_phone = res.data.worker_phone
- this.worker_hx_username = res.data.worker_hx_username
- })
- },
- getdata() {
- this.$u.post('/api/Comment/consult_reply_comment_list', {
- id: this.id,
- page: this.page
- }).then(res => {
- if (this.page == 1) {
- this.pinglundetail = res.data.comment
- }
- this.pinglunlist = this.pinglunlist.concat(res.data.list)
- })
- },
- openhuifu() {
- if (uni.getStorageSync("token")) {
- this.showhuifu = true
- } else {
- this.showlogin = true
- }
- },
- getlou() {
- this.$u.post('/api/Property/property_detail', {
- id: this.louid
- }).then(res => {
- this.detail = res.data
- })
- },
- tochat() {
- if (uni.getStorageSync("token")) {
- if (this.worker_id == 0) {
- this.$refs.chatlist.open(this.louid)
- } else {
- this.$u.post('/api/Member/consult_record', {
- type: 2
- })
- uni.navigateTo({
- url: "/pages/index/chat?hx_username=" + this.worker_hx_username + "&worker_id=" + this.worker_id
- })
- }
- } else {
- this.showlogin = true
- }
- },
- tologin() {
- this.showlogin = false
- uni.navigateTo({
- url: "/pages/mine/login"
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .wenda-info {
- .huifu-popup {
- width: 650rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- padding: 24rpx;
- .huifu-btn {
- width: 602rpx;
- height: 88rpx;
- background: #04B578;
- border-radius: 20rpx;
- image {
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- }
- text {
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- }
- }
- .textarea {
- width: 602rpx;
- height: 326rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- border: 2rpx solid #CCCCCC;
- padding: 20rpx;
- margin-bottom: 24rpx;
- textarea {
- width: 100%;
- height: 100%;
- }
- }
- }
- .tocall-box {
- position: relative;
- .tocall-img {
- width: 650rpx;
- height: 476rpx;
- }
- .tocall-btn {
- position: absolute;
- bottom: 70rpx;
- left: 0;
- width: 100%;
- padding: 0 48rpx;
- text:first-child {
- width: 254rpx;
- line-height: 80rpx;
- background: #FFA120;
- border-radius: 20rpx;
- text-align: center;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- text:last-child {
- width: 254rpx;
- line-height: 80rpx;
- background: #1F7EFF;
- border-radius: 20rpx;
- text-align: center;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- }
- .tocall-text {
- text-align: center;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- position: absolute;
- top: 244rpx;
- left: 0;
- z-index: 10;
- width: 100%;
- }
- }
- .houses-btn {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 750rpx;
- height: 166rpx;
- background: #FFFFFF;
- padding: 0 24rpx 54rpx 24rpx;
- z-index: 1;
- .btn-left {
- width: 338rpx;
- height: 84rpx;
- background: #04B578;
- border-radius: 20rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- image {
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- }
- }
- .btn-right {
- width: 338rpx;
- line-height: 84rpx;
- background: #1F7EFF;
- border-radius: 20rpx;
- text-align: center;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- }
- }
- .fangchan-wenda {
- width: 702rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin: 20rpx auto;
- padding: 24rpx 24rpx 20rpx 24rpx;
- .wenda-box {
- padding: 0 20rpx;
- .tiwen-zhiding {
- margin-bottom: 20rpx;
- .text {
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- margin-right: 16rpx;
- }
- }
- .table-header {
- width: 620rpx;
- height: 94rpx;
- border: 2rpx solid #F0F0F0;
-
- input {
- text-align: center;
- color: red;
- }
- }
- .wenda-table {
- width: 620rpx;
- max-height: 378rpx;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- .table-row {
- white-space: nowrap;
- height: 94rpx;
- .table-col {
- width: 155rpx;
- line-height: 94rpx;
- height: 94rpx;
- border-bottom: 2rpx solid #F0F0F0;
- border-left: 2rpx solid #F0F0F0;
- padding: 0 16rpx;
- display: inline-block;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(102, 102, 102, 0.88);
- }
- .table-col:last-child {
- border-right: 2rpx solid #F0F0F0;
- }
- }
- .table-row:last-child {
- .table-col {
- border-bottom: 2rpx solid #F0F0F0;
- }
- }
- }
- .wenda-text {
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- margin-bottom: 20rpx;
- }
- .box-top {
- margin-bottom: 20rpx;
- .yewu {
- width: 118rpx;
- line-height: 36rpx;
- border-radius: 8rpx;
- border: 2rpx solid #1677FF;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #1677FF;
- }
- .admin {
- width: 118rpx;
- line-height: 36rpx;
- border-radius: 8rpx;
- border: 2rpx solid #FF9F18;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FF9F18;
- }
- .text2 {
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- margin-right: 20rpx;
- }
- .text3 {
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- text-align: right;
- }
- .img {
- width: 36rpx;
- height: 36rpx;
- border-radius: 100rpx;
- margin: 0 20rpx;
- }
- .text1 {
- width: 36rpx;
- line-height: 36rpx;
- background: #1677FF;
- border-radius: 8rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #FFFFFF;
- }
- }
- }
- }
- }
- </style>
|