108 lines
1.9 KiB
Vue
108 lines
1.9 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">
|
|
<tpx-input v-model:value="submitParam.danhao" placeholder="运单号"></tpx-input>
|
|
</view>
|
|
<view class="mt-30">
|
|
<tpx-select placeholder="投诉网点" v-model:value="country" :list="[]"
|
|
></tpx-select>
|
|
</view>
|
|
|
|
<view class="mt-30">
|
|
<tpx-select placeholder="投诉原因" v-model:value="country" :list="[]"
|
|
></tpx-select>
|
|
</view>
|
|
|
|
<view class="mt-30">
|
|
<tpx-textarea v-model:value="submitParam.desc" placeholder="投诉描述"></tpx-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 {
|
|
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> |