kaiguan-zfb/page_user/Feedback.vue

515 lines
10 KiB
Vue
Raw Normal View History

2024-05-10 17:37:36 +08:00
<template>
<view class="pages">
2024-09-05 18:00:53 +08:00
<u-navbar title="咨询客服" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff"
title-size='36' height='50'></u-navbar>
2024-09-23 18:01:24 +08:00
<image class="topimg" src="https://api.ccttiot.com/smartmeter/img/static/uzjRZtHgttsXPNCWi4PF" mode=""></image>
2024-09-05 18:00:53 +08:00
<!-- 咨询客服 -->
2024-09-23 18:01:24 +08:00
<view class="list" style="margin-top: 360rpx;">
<view v-for="(item, index) in list" :key="index" class="kflist">
<!-- 判断索引的奇偶性 -->
<template v-if="index % 2 === 0">
<!-- 当索引为偶数时内容在左侧 -->
<view class="kflt">
<image src="https://api.ccttiot.com/smartmeter/img/static/uMSwHVPLeC3CFbPtwt9c" mode=""></image>
<view class="kfname">{{item.name}}</view>
2024-09-05 18:00:53 +08:00
</view>
2024-09-23 18:01:24 +08:00
<view class="kfrt">
<view class="wz">
<view class="" style="z-index: 1;">
微信号{{item.wx == null ? '--' : item.wx}}
</view>
<view class="fz" @click="btnfzwx(item.wx)">
复制
</view>
</view>
<view class="wz">
<view class="" style="z-index: 1;">
手机号{{item.mobile == null ? '--' : item.mobile}}
</view>
<view class="fz" @click="btnfzsj(item.mobile)">
复制
</view>
</view>
<image src="https://api.ccttiot.com/smartmeter/img/static/uwX5ob5jDuugNnd8cCaX" mode=""></image>
2024-09-05 18:00:53 +08:00
</view>
2024-09-23 18:01:24 +08:00
</template>
<template v-else>
<!-- 当索引为奇数时内容在右侧 -->
<view class="kfrt">
<view class="wz">
<view class="" style="z-index: 1;">
微信号{{item.wx == null ? '--' : item.wx}}
</view>
<view class="fz" @click="btnfzwx(item.wx)">
复制
</view>
</view>
<view class="wz">
<view class="" style="z-index: 1;">
手机号{{item.mobile == null ? '--' : item.mobile}}
</view>
<view class="fz" @click="btnfzsj(item.mobile)">
复制
</view>
</view>
<image src="https://api.ccttiot.com/smartmeter/img/static/ueTBM3ydsEvrLcm5Hp59" mode=""></image>
2024-09-05 18:00:53 +08:00
</view>
2024-09-23 18:01:24 +08:00
<view class="kflt">
<image src="https://api.ccttiot.com/smartmeter/img/static/uMSwHVPLeC3CFbPtwt9c" mode=""></image>
<view class="kfname">{{item.name}}</view>
2024-09-05 18:00:53 +08:00
</view>
2024-09-23 18:01:24 +08:00
</template>
</view>
<view class="" style="width: 100%;text-align: center;font-size: 30rpx;color: #3D3D3D;margin-top: 82rpx;">
复制可帮您快速拨打电话及搜索微信
2024-09-05 18:00:53 +08:00
</view>
</view>
2024-09-23 18:01:24 +08:00
2024-05-10 17:37:36 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2024-09-05 18:00:53 +08:00
btnmsk: false,
2024-05-10 17:37:36 +08:00
bgc: {
2024-08-02 18:00:50 +08:00
backgroundColor: "#8883f0",
2024-05-10 17:37:36 +08:00
},
textValue: '',
currentCount: 0,
cutidx: -1,
imglist: [],
token: '',
contact: '',
2024-09-23 18:01:24 +08:00
stause: false,
list:[]
2024-05-10 17:37:36 +08:00
}
},
computed: {
},
onLoad() {
2024-09-23 18:01:24 +08:00
this.getstause()
2024-05-10 17:37:36 +08:00
},
2024-07-17 17:59:51 +08:00
// 分享到好友(会话)
2024-09-05 18:00:53 +08:00
onShareAppMessage: function() {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
// 分享到朋友圈
onShareTimeline: function() {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
2024-05-10 17:37:36 +08:00
methods: {
2024-09-23 18:01:24 +08:00
btnfzsj(text) {
2024-09-05 18:00:53 +08:00
uni.setClipboardData({
2024-09-23 18:01:24 +08:00
data:text,
2024-09-05 18:00:53 +08:00
success: () => {
uni.showToast({
title: '复制成功',
duration: 2000,
icon: 'success'
});
}
})
},
2024-09-23 18:01:24 +08:00
btnfzwx(text) {
2024-09-05 18:00:53 +08:00
uni.setClipboardData({
2024-09-23 18:01:24 +08:00
data:text,
2024-09-05 18:00:53 +08:00
success: () => {
uni.showToast({
title: '复制成功',
duration: 2000,
icon: 'success'
});
}
})
},
2024-05-10 17:37:36 +08:00
getstause() {
2024-09-23 18:01:24 +08:00
this.$u.get(`/app/customerService/list?pageSize=999&pageNum=1&orderByColumn=sort&isAsc=desc`).then((res) => {
2024-05-10 17:37:36 +08:00
if (res.code == 200) {
2024-09-23 18:01:24 +08:00
this.list = res.rows
2024-05-10 17:37:36 +08:00
}
})
},
hidePlaceholder() {
2024-08-06 18:04:09 +08:00
this.placeholderVisible = false
2024-05-10 17:37:36 +08:00
},
showPlaceholder() {
if (!this.textValue) {
2024-08-06 18:04:09 +08:00
this.placeholderVisible = true
2024-05-10 17:37:36 +08:00
}
},
updateWordCount() {
2024-08-06 18:04:09 +08:00
this.currentCount = this.textValue.trim().replace(/\s+/g, '').length
2024-05-10 17:37:36 +08:00
},
sub() {
if (this.cutidx == -1) {
uni.showToast({
title: '请选择反馈类型',
icon: 'none',
duration: 2000
});
} else if (this.textValue == '') {
uni.showToast({
title: '请输入问题描述',
icon: 'none',
duration: 2000
});
} else {
2024-08-02 18:00:50 +08:00
this.btnmsk = true
2024-08-06 18:04:09 +08:00
var imgString = this.imglist.join(',')
2024-05-10 17:37:36 +08:00
let data = {
type: this.cutidx,
content: this.textValue,
picture: imgString,
contact: this.contact
}
2024-08-02 18:00:50 +08:00
// console.log(data, 'dadada');
2024-05-10 17:37:36 +08:00
this.$u.post("/app/complaint", data).then((res) => {
if (res.code == 200) {
// this.token=res.token
uni.showToast({
title: '提交成功',
2024-08-02 18:00:50 +08:00
icon: 'success',
duration: 2000
})
2024-09-05 18:00:53 +08:00
setTimeout(() => {
2024-08-02 18:00:50 +08:00
this.btnmsk = false
uni.navigateBack()
2024-09-05 18:00:53 +08:00
}, 1000)
} else {
2024-08-02 18:00:50 +08:00
uni.showToast({
title: res.msg,
2024-05-10 17:37:36 +08:00
icon: 'none',
duration: 2000
2024-08-02 18:00:50 +08:00
})
this.btnmsk = false
2024-05-10 17:37:36 +08:00
}
2024-08-02 18:00:50 +08:00
})
2024-05-10 17:37:36 +08:00
}
},
2024-06-11 18:03:16 +08:00
getImage(e) {
2024-05-10 17:37:36 +08:00
let _this = this
let math = 'static/' + _this.$u.guid(20)
2024-06-11 18:03:16 +08:00
uni.chooseImage({
2024-05-10 17:37:36 +08:00
count: 9,
type: 'all',
success(res) {
2024-06-11 18:03:16 +08:00
console.log(res);
const tempFilePaths = res.tempFilePaths[0]
2024-05-10 17:37:36 +08:00
wx.uploadFile({
url: 'https://up-z2.qiniup.com',
name: 'file',
2024-06-11 18:03:16 +08:00
filePath: tempFilePaths,
2024-05-10 17:37:36 +08:00
formData: {
token: _this.token, //后端返回的token
key: 'smartmeter/img/' + math
},
success: function(res) {
2024-08-06 18:04:09 +08:00
// console.log(res, 'resres');
2024-05-10 17:37:36 +08:00
let str = JSON.parse(res.data)
_this.userImgs = 'https://api.ccttiot.com/' + str.key
_this.imglist.push(_this.userImgs)
}
2024-06-11 18:03:16 +08:00
})
2024-05-10 17:37:36 +08:00
}
})
},
// 获取上传七牛云token
getQiniuToken() {
this.$u.get("/common/qiniu/uploadInfo").then((res) => {
if (res.code == 200) {
this.token = res.token
}
2024-06-11 18:03:16 +08:00
})
2024-05-10 17:37:36 +08:00
},
}
}
</script>
<style lang="scss">
2024-08-02 18:00:50 +08:00
/deep/ .u-title {
padding-bottom: 22rpx;
}
2024-09-05 18:00:53 +08:00
2024-08-02 18:00:50 +08:00
/deep/ .u-icon__icon {
padding-bottom: 22rpx;
}
2024-09-23 18:01:24 +08:00
.topimg{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 498rpx;
}
.list{
position: fixed;
top: 30rpx;
left: 50%;
transform: translateX(-50%);
z-index: 1;
height: 71vh;
overflow: scroll;
}
2024-09-05 18:00:53 +08:00
.kflist {
display: flex;
2024-09-23 18:01:24 +08:00
margin-top: 32rpx;
background-color: #fff;
padding: 22rpx;
box-sizing: border-box;
border-radius: 30rpx;
width: 662rpx;
2024-09-05 18:00:53 +08:00
.kflt {
text-align: center;
2024-09-23 18:01:24 +08:00
// margin-right: 16rpx;
2024-09-05 18:00:53 +08:00
image {
width: 118rpx;
height: 104rpx;
}
}
.kfrt {
2024-09-23 18:01:24 +08:00
width:100%;
2024-09-05 18:00:53 +08:00
height: 154rpx;
border-radius: 14rpx 14rpx 14rpx 14rpx;
2024-09-23 18:01:24 +08:00
padding: 4rpx 30rpx;
2024-09-05 18:00:53 +08:00
box-sizing: border-box;
2024-09-23 18:01:24 +08:00
position: relative;
image{
width: 500rpx;
height: 151rpx;
position: absolute;
top: 0;
left: 0;
}
2024-09-05 18:00:53 +08:00
.wz {
display: flex;
justify-content: space-between;
align-items: center;
2024-09-23 18:01:24 +08:00
padding-top: 20rpx;
box-sizing: border-box;
2024-09-05 18:00:53 +08:00
font-size: 32rpx;
2024-09-23 18:01:24 +08:00
color: #3D3D3D;
2024-09-05 18:00:53 +08:00
.fz {
width: 72rpx;
2024-09-23 18:01:24 +08:00
height: 38rpx;
2024-09-05 18:00:53 +08:00
border-radius: 4rpx 4rpx 4rpx 4rpx;
2024-09-23 18:01:24 +08:00
border: 1rpx solid #8883F0;
2024-09-05 18:00:53 +08:00
font-size: 24rpx;
2024-09-23 18:01:24 +08:00
color: #8883F0;
2024-09-05 18:00:53 +08:00
text-align: center;
2024-09-23 18:01:24 +08:00
z-index: 1;
2024-09-05 18:00:53 +08:00
}
}
}
.kfname {
font-weight: 600;
2024-09-25 18:30:46 +08:00
font-size: 28rpx;
width: 120rpx;
2024-09-23 18:01:24 +08:00
color: #3D3D3D;
2024-09-05 18:00:53 +08:00
}
}
2024-05-10 17:37:36 +08:00
.btn {
width: 590rpx;
height: 84rpx;
background: #8883F0;
filter: blur(0px);
color: #fff;
font-size: 36rpx;
line-height: 84rpx;
text-align: center;
border-radius: 50rpx;
2024-06-11 18:03:16 +08:00
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: 96rpx;
2024-05-10 17:37:36 +08:00
}
page {
background-color: #F7FAFE !important;
}
.pages {
2024-09-05 18:00:53 +08:00
padding: 0 30rpx;
2024-05-10 17:37:36 +08:00
box-sizing: border-box;
}
.leix {
margin-top: 34rpx;
.title {
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
line-height: 50rpx;
}
.lxxz {
display: flex;
view {
2024-06-11 18:03:16 +08:00
border-radius: 15rpx;
2024-05-10 17:37:36 +08:00
border: 2rpx solid #C4C4C4;
padding: 14rpx 34rpx 14rpx 34rpx;
box-sizing: border-box;
margin-right: 28rpx;
margin-top: 40rpx;
position: relative;
overflow: hidden;
text {
position: absolute;
bottom: 0;
right: 0;
display: inline-block;
width: 31rpx;
height: 19rpx;
background: #8883F0;
color: #fff;
border-radius: 5rpx;
font-size: 18rpx;
text-align: center;
line-height: 19rpx;
}
}
}
}
.active {
border: 2rpx solid #8883F0 !important;
2024-09-05 18:00:53 +08:00
image {
2024-06-11 18:03:16 +08:00
display: block !important;
}
2024-09-05 18:00:53 +08:00
}
2024-05-10 17:37:36 +08:00
.problem {
margin-top: 40rpx;
.title {
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
line-height: 50rpx;
}
}
.lxfs {
margin-top: 40rpx;
.title {
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
line-height: 50rpx;
}
input {
margin-top: 32rpx;
width: 612rpx;
height: 80rpx;
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
border-radius: 20rpx;
padding-left: 20rpx;
}
}
.scpic {
margin-top: 40rpx;
.title {
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
line-height: 50rpx;
}
text {
display: block;
margin-top: 40rpx;
font-size: 28rpx;
color: #95989D;
line-height: 38rpx;
}
.icon {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-top: 40rpx;
.imgbox {
width: 33%;
image {
width: 142rpx;
height: 142rpx;
}
}
}
}
.input-container {
position: relative;
width: 612rpx;
height: 248rpx;
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
border-radius: 20rpx;
margin-top: 40rpx;
overflow: hidden;
padding-right: 38rpx;
box-sizing: border-box;
}
.placeholder {
position: absolute;
top: 18rpx;
left: 38rpx;
color: #999;
/* placeholder颜色 */
pointer-events: none;
/* 确保点击事件可以穿透到textarea上 */
}
.custom-textarea {
width: 100%;
height: 100%;
/* 设置一个合适高度 */
padding-top: 18rpx;
/* 为placeholder留出空间 */
padding-left: 38rpx;
box-sizing: border-box;
border: 1px solid #ccc;
padding-bottom: 50rpx;
}
.word-count {
position: absolute;
right: 10px;
bottom: 10px;
font-size: 12px;
color: #999;
}
</style>