33 lines
485 B
Vue
33 lines
485 B
Vue
|
<template>
|
|||
|
<view>
|
|||
|
<view class="hint">
|
|||
|
客户服务,重在回访仔细倾听,以服务质量求发展
|
|||
|
|
|||
|
|
|||
|
</view>
|
|||
|
<view class="123123">
|
|||
|
12312313
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
|
|||
|
}
|
|||
|
},
|
|||
|
methods: {
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style>
|
|||
|
.hint{
|
|||
|
color: #358ff0;
|
|||
|
padding:30rpx;
|
|||
|
}
|
|||
|
</style>
|