120 lines
2.3 KiB
Vue
120 lines
2.3 KiB
Vue
|
|
<template>
|
||
|
|
<tpx-layout>
|
||
|
|
<template v-slot:body>
|
||
|
|
<view class="com-jianju pos-rlt pb-30" style="padding-top: 2rpx;">
|
||
|
|
|
||
|
|
<view class="blcok-white radius-20">
|
||
|
|
<view class="">
|
||
|
|
|
||
|
|
<view class="mt-10">
|
||
|
|
<u-input shape="circle" placeholder="运单号" placeholder-style="color: #0E0708; " custom-style="border:0;border-radius: 20rpx;background-color: #F6F6F6;padding: 20rpx 30rpx;"></u-input>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="mt-30 blcok-grey radius-20">
|
||
|
|
<u-row>
|
||
|
|
<view style="flex: 1;">
|
||
|
|
<u-text text="投诉原因" size="30"></u-text>
|
||
|
|
</view>
|
||
|
|
<u-row>
|
||
|
|
<u-icon size="24" name="arrow-down" color="#333"></u-icon>
|
||
|
|
</u-row>
|
||
|
|
</u-row>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="mt-30">
|
||
|
|
<u-textarea shape="circle" placeholder="投诉描述" placeholder-style="color: #0E0708; " custom-style="border:0;border-radius: 20rpx;background-color: #F6F6F6;padding: 20rpx 30rpx;" height="160"></u-textarea>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<template v-slot:footer>
|
||
|
|
<view class="blcok-white-noradius">
|
||
|
|
<u-button @click="handleSubmit()" type="primary" size="large" shape="circle"
|
||
|
|
custom-style="height:80rpx;font-size: 30rpx;"
|
||
|
|
>确定</u-button>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
</tpx-layout>
|
||
|
|
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import getCdnUrl from "@/common/getCdnUrl"
|
||
|
|
import {
|
||
|
|
ordStaEnum,
|
||
|
|
ordStatusList,
|
||
|
|
payTypeEnum,
|
||
|
|
payTypeList,
|
||
|
|
dlvTypeEnum,
|
||
|
|
dlvTypeList,
|
||
|
|
dateTypeEnum,
|
||
|
|
dateTypeList
|
||
|
|
} from "@/common/enum"
|
||
|
|
import {
|
||
|
|
goto, goBack
|
||
|
|
} from "@/common/untool"
|
||
|
|
export default {
|
||
|
|
props: {
|
||
|
|
// hasLeftWin: {
|
||
|
|
// type: Boolean
|
||
|
|
// }
|
||
|
|
},
|
||
|
|
computed: {
|
||
|
|
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
submitParam: {
|
||
|
|
type: 1,
|
||
|
|
otherDes: ''
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
onShareAppMessage() {
|
||
|
|
return {
|
||
|
|
// title: '',
|
||
|
|
// path: 'TODO'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
onLoad() {
|
||
|
|
this.initData();
|
||
|
|
},
|
||
|
|
onUnload() {
|
||
|
|
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
getCdnUrl,
|
||
|
|
|
||
|
|
initData() {
|
||
|
|
// uni.showLoading({
|
||
|
|
// title: '加载中'
|
||
|
|
// });
|
||
|
|
},
|
||
|
|
handleAnsText(){
|
||
|
|
|
||
|
|
},
|
||
|
|
handleFormChange(){
|
||
|
|
|
||
|
|
},
|
||
|
|
handleSubmit() {
|
||
|
|
goBack()
|
||
|
|
},
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
@import '@/common/uni-nvue.scss';
|
||
|
|
|
||
|
|
page {
|
||
|
|
background-color: #F6F6F6;
|
||
|
|
height: 100% !important;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<style scoped lang="scss">
|
||
|
|
|
||
|
|
</style>
|