2022-03-22 03:38:06 +00:00
|
|
|
|
<template>
|
|
|
|
|
<view class="content">
|
2022-03-25 10:33:33 +00:00
|
|
|
|
<statusNav navBarTitle="工单回访"></statusNav>
|
|
|
|
|
<container-subgroup-two>
|
|
|
|
|
<view slot="content" style="margin: -25rpx -30rpx 0rpx;">
|
|
|
|
|
<view class="hint">
|
|
|
|
|
客户服务,重在回访仔细倾听,以服务质量求发展
|
|
|
|
|
</view>
|
|
|
|
|
<view class="payReturnVisit-from">
|
|
|
|
|
<view class="payReturnVisit-input">
|
|
|
|
|
<view class="title">
|
|
|
|
|
<text>联</text>
|
|
|
|
|
<text>系</text>
|
|
|
|
|
<text>人</text>
|
|
|
|
|
</view>
|
|
|
|
|
<input class="input" placeholder="请填写联系人称呼" type="text" value="" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="payReturnVisit-input">
|
|
|
|
|
<view class="title">
|
|
|
|
|
联系电话
|
|
|
|
|
</view>
|
|
|
|
|
<input class="input" placeholder="请输入手机号码" type="text" value="" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="payReturnVisit-input">
|
|
|
|
|
<view class="title">
|
|
|
|
|
<text>微</text>
|
|
|
|
|
<text>信</text>
|
|
|
|
|
<text>号</text>
|
|
|
|
|
</view>
|
|
|
|
|
<input class="input" placeholder="请输入微信号码" type="text" value="" />
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="payReturnVisit-textarea">
|
|
|
|
|
<view class="title">
|
|
|
|
|
回访内容
|
|
|
|
|
</view>
|
|
|
|
|
<textarea class="textarea" value="" placeholder="请输入回访内容" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="payReturnVisit-input">
|
|
|
|
|
<view class="title">
|
|
|
|
|
客服电话
|
|
|
|
|
</view>
|
|
|
|
|
<input class="input" placeholder="400-765-9876" type="text" value="" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="payReturnVisit-input">
|
|
|
|
|
<view class="title">
|
|
|
|
|
回访时间
|
|
|
|
|
</view>
|
|
|
|
|
<input class="input" placeholder="2022/02/13 14:18:00" type="text" value="" />
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<button class="submit-button" type="default">确认发送</button>
|
|
|
|
|
|
2022-03-22 03:38:06 +00:00
|
|
|
|
</view>
|
2022-03-25 10:33:33 +00:00
|
|
|
|
</container-subgroup-two>
|
2022-03-22 03:38:06 +00:00
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import statusNav from '../../components/status-nav.vue';
|
2022-03-25 10:33:33 +00:00
|
|
|
|
import containerSubgroupTwo from '@/components/containers/container-subgroup-two.vue';
|
2022-03-22 03:38:06 +00:00
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
statusNav,
|
2022-03-25 10:33:33 +00:00
|
|
|
|
containerSubgroupTwo,
|
2022-03-22 03:38:06 +00:00
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
2022-03-25 10:33:33 +00:00
|
|
|
|
|
|
|
|
|
|
2022-03-22 03:38:06 +00:00
|
|
|
|
.hint {
|
|
|
|
|
color: #358ff0;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
padding: 25rpx 30rpx;
|
|
|
|
|
}
|
2022-03-25 10:33:33 +00:00
|
|
|
|
|
|
|
|
|
.submit-button {
|
2022-03-22 03:38:06 +00:00
|
|
|
|
width: 686rpx;
|
|
|
|
|
border-radius: 50rpx;
|
|
|
|
|
height: 90rpx;
|
|
|
|
|
background-color: #02A2ea;
|
|
|
|
|
line-height: 90rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
margin-top: 60rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
}
|
2022-03-25 10:33:33 +00:00
|
|
|
|
|
2022-03-22 03:38:06 +00:00
|
|
|
|
.payReturnVisit-input {
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
height: 103rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 700rpx;
|
2022-03-25 10:33:33 +00:00
|
|
|
|
border-bottom: 2rpx solid #f4f4f4;
|
2022-03-22 03:38:06 +00:00
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payReturnVisit-input .title {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
width: 120rpx;
|
|
|
|
|
color: #333333;
|
|
|
|
|
margin-right: 40rpx;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payReturnVisit-input .input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
margin-top: 2rpx;
|
|
|
|
|
}
|
2022-03-25 10:33:33 +00:00
|
|
|
|
|
|
|
|
|
.payReturnVisit-from {
|
2022-03-22 03:38:06 +00:00
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
}
|
2022-03-25 10:33:33 +00:00
|
|
|
|
|
|
|
|
|
.payReturnVisit-textarea {
|
2022-03-22 03:38:06 +00:00
|
|
|
|
width: 700rpx;
|
2022-03-25 10:33:33 +00:00
|
|
|
|
border-bottom: 2rpx solid #f4f4f4;
|
2022-03-22 03:38:06 +00:00
|
|
|
|
margin: auto;
|
|
|
|
|
padding-bottom: 30rpx;
|
|
|
|
|
}
|
2022-03-25 10:33:33 +00:00
|
|
|
|
|
|
|
|
|
.payReturnVisit-textarea .title {
|
2022-03-22 03:38:06 +00:00
|
|
|
|
padding: 30rpx 0rpx;
|
|
|
|
|
font-size: 30rpx;
|
2022-03-25 10:33:33 +00:00
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payReturnVisit-textarea .textarea {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 200rpx;
|
|
|
|
|
background-color: #F5F5F5;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
box-sizing: border-box;
|
2022-03-22 03:38:06 +00:00
|
|
|
|
}
|
|
|
|
|
</style>
|