意见建议 企获客介绍接口

This commit is contained in:
zdx
2020-12-31 15:49:33 +08:00
parent a3a38b0736
commit 3855eb456f
8 changed files with 60 additions and 26 deletions

View File

@@ -248,4 +248,8 @@ page {
height: 32rpx;
line-height: 32rpx;
text-align: center;
}
image {
height: auto;
}

View File

@@ -1,8 +1,33 @@
Page({
data: {},
besure(){
wx.navigateBack({
delta: 0,
data: {
content: '',
},
input(e) {
this.setData({
content: e.detail.value
})
},
besure() {
if (this.data.content) {
wx.$api.user.suggests({
content: this.data.content
}).then(res => {
wx.showToast({
title: '操作成功,等待客服联系',
icon: 'none',
duration: 1000,
success: res => {
wx.navigateBack({
delta: 0,
})
}
})
})
} else {
wx.showToast({
title: '信息不能为空哦~',
icon: 'none'
})
}
}
})

View File

@@ -1,4 +1,4 @@
<view class="content">
<textarea placeholder="输入您的意见与建议"></textarea>
<textarea bindinput="input" placeholder="输入您的意见与建议"></textarea>
<view catchtap="besure">确认提交</view>
</view>

View File

@@ -3,5 +3,15 @@ Page({
nodes: {
}
},
onLoad() {
wx.$api.user.getQHKIntroduce().then(res => {
if (res.content) {
var nodes = res.content.replace('<img', '<img style="max-width:100%;height:auto""');
this.setData({
nodes: nodes,
})
}
})
}
})

View File

@@ -1,6 +1 @@
<image src="/static/images/company_bg4.png" mode="widthFix" style="width:100%;"></image>
<!-- <rich-text nodes="{{nodes}}"></rich-text> -->
<view>
电子科技有限公司是一家集产品研发生产及销售的大型高科技电子企业是全球专业的液晶广告机液晶电视及液晶拼接墙制造商从创立伊始历经多年的稳健发展以推动国内液晶广告机的普及化为己任以提升人类视听享受为目标公司旗下品牌博视TBOSV已经成为全球普遍赞誉的知名品牌。上海域展电子科技有限公司成立于2006年。我们凭借着"以品质为根本、以创新求发展"的理念;力争以优质的全方位服务为客户提供具有竞争力价...
电子科技有限公司是一家集产品研发生产及销售的大型高科技电子企业是全球专业的液晶广告机液晶电视及液晶拼接墙制造商从创立伊始历经多年的稳健发展以推动国内液晶广告机的普及化为己任以提升人类视听享受为目标公司旗下品牌博视TBOSV已经成为全球普遍赞誉的知名品牌。上海域展电子科技有限公司成立于2006年。我们凭借着"以品质为根本、以创新求发展"的理念;力争以优质的全方位服务为客户提供具有竞争力价...
</view>
<rich-text nodes="{{nodes}}"> </rich-text>

View File

@@ -1,17 +1,4 @@
.item {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
page {
padding: 30rpx;
box-sizing: border-box;
padding: 30rpx 30rpx;
color: #333;
font-weight: 400;
background-color: #fff;
border-top: #f7f7f7 solid 1rpx;
}
.item image {
width: 50rpx;
margin-right: 10rpx;
}

View File

@@ -14,4 +14,8 @@
.item image {
width: 50rpx;
margin-right: 10rpx;
}
image {
height: auto;
}