240 lines
6.1 KiB
Vue
240 lines
6.1 KiB
Vue
<template>
|
|
<view class="content">
|
|
<statusNav navBarTitle="意见反馈"></statusNav>
|
|
<view class="opinion-type">
|
|
意见类型
|
|
</view>
|
|
|
|
<view class="opinion-type-content">
|
|
<view class="li" @click="opinionType(index)" :class="item.state?'on':''" v-for="(item,index) in typeData">
|
|
{{item.title}}
|
|
</view>
|
|
</view>
|
|
|
|
<view class="feedback-input">
|
|
|
|
<input type="text" class="inputCss" placeholder="请填写您的意见或建议内容" placeholder-class="inputCss-input"
|
|
value="" />
|
|
<input type="text" class="inputCss" placeholder="请输入联系人姓名" placeholder-class="inputCss-input" value="" />
|
|
<input type="text" class="inputCss" placeholder="请输入联系人电话" placeholder-class="inputCss-input" value="" />
|
|
|
|
<view class="fault-pictures">
|
|
<image class="img" src="../../static/iocn/gz.png" mode="aspectFill"></image>
|
|
<view class="text">
|
|
请上传图片
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="feedback-approach">
|
|
<view class="feedback-con">
|
|
<image class="icon" src="../../static/iocn/tel.png" mode=""></image>
|
|
|
|
<view class="feedback-tel-con">
|
|
<view class="text">
|
|
服务监督电话:
|
|
</view>
|
|
<view class="tel">
|
|
156 1566 0510
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="feedback-con">
|
|
<image class="icon" src="../../static/iocn/date.png" mode=""></image>
|
|
|
|
<view class="feedback-tel-con">
|
|
<view class="text">
|
|
反馈受理时间:
|
|
</view>
|
|
<view class="tel">
|
|
9:00 - 18:00
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<button class="submit-button" type="default">提交反馈</button>
|
|
|
|
<footTabOne :current="3"></footTabOne>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import statusNav from '../../components/status-nav.vue';
|
|
import footTabOne from "../../components/foot-tabs/foot-tab-one.vue"
|
|
export default {
|
|
components:{
|
|
footTabOne,
|
|
statusNav
|
|
},
|
|
data() {
|
|
return {
|
|
typeData: [{
|
|
title: "未解决问题",
|
|
state: false
|
|
},
|
|
{
|
|
title: "处理不及时",
|
|
state: false
|
|
},
|
|
{
|
|
title: "软件问题",
|
|
state: false
|
|
},
|
|
{
|
|
title: "报修问题",
|
|
state: true
|
|
},
|
|
{
|
|
title: "服务投诉",
|
|
state: false
|
|
},
|
|
{
|
|
title: "其他问题反馈",
|
|
state: false
|
|
},
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
opinionType(index){
|
|
for (var i = 0; i < this.typeData.length; i++) {
|
|
this.typeData[i].state=false
|
|
}
|
|
this.typeData[index].state=true
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
page {
|
|
background-color: #F7F7F7;
|
|
}
|
|
.content{
|
|
padding-top: 76rpx;
|
|
}
|
|
.opinion-type {
|
|
width: 100%;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
padding: 0 40rpx;
|
|
margin-top: 24rpx;
|
|
background-color: #FFFFFF;
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.opinion-type-content .li {
|
|
width: 214rpx;
|
|
height: 68rpx;
|
|
background-color: #FFFFFF;
|
|
text-align: center;
|
|
line-height: 68rpx;
|
|
color: #dddddd;
|
|
border-radius: 8rpx;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.opinion-type-content {
|
|
padding: 22rpx 40rpx 0rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.opinion-type-content .on {
|
|
background-color: #00A2E9;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.inputCss {
|
|
height: 78rpx;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 0rpx 17rpx;
|
|
font-size: 30rpx;
|
|
border-radius: 10rpx;
|
|
background-color: #FFFFFF;
|
|
color: #9f9898;
|
|
display: flex;
|
|
margin-bottom: 16rpx;
|
|
align-items: center;
|
|
}
|
|
|
|
.inputCss-input {
|
|
font-size: 26rpx;
|
|
color: #9f9898;
|
|
}
|
|
|
|
.feedback-input {
|
|
padding: 0 40rpx;
|
|
}
|
|
|
|
.fault-pictures {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 18rpx;
|
|
height: 388rpx;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
background-color: #FFFFFF;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.fault-pictures .img {
|
|
width: 62rpx;
|
|
margin-bottom: 27rpx;
|
|
height: 62rpx;
|
|
}
|
|
|
|
.fault-pictures .text {
|
|
font-size: 26rpx;
|
|
|
|
color: #9f9898;
|
|
|
|
}
|
|
.feedback-con{
|
|
width: 320rpx;
|
|
height: 100rpx;
|
|
border-radius: 8rpx;
|
|
background-color: #ffe5e5;
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
padding-left: 26rpx;
|
|
}
|
|
.feedback-con .icon{
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
margin-right: 18rpx;
|
|
}
|
|
.feedback-tel-con .text{
|
|
font-size: 24rpx;
|
|
margin-bottom: 10rpx;
|
|
|
|
}
|
|
.feedback-tel-con .tel{
|
|
font-size: 28rpx;
|
|
|
|
}
|
|
.feedback-approach{
|
|
padding: 0 40rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 14rpx;
|
|
}
|
|
.submit-button {
|
|
width: 686rpx;
|
|
margin-top: 58rpx;
|
|
border-radius: 50rpx;
|
|
height: 90rpx;
|
|
background-color: #02A2ea;
|
|
line-height: 90rpx;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
font-size: 30rpx;
|
|
}
|
|
</style>
|