问题修复
This commit is contained in:
parent
d2229aa9cb
commit
2730de2ccc
@ -3,80 +3,7 @@
|
|||||||
<view style="position: relative;height: calc(60vh);">
|
<view style="position: relative;height: calc(60vh);">
|
||||||
<tpx-layout>
|
<tpx-layout>
|
||||||
<template v-slot:body>
|
<template v-slot:body>
|
||||||
<view class="shet-cont">
|
<bpe-goodsize-tmp v-if="show" :value="submitVals"></bpe-goodsize-tmp>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<view class="jsfm-item">
|
|
||||||
<u-row justify="between">
|
|
||||||
<text class="font-28 font-weight">件数</text>
|
|
||||||
<view>
|
|
||||||
<uni-number-box :min="1" :max="10000"></uni-number-box>
|
|
||||||
</view>
|
|
||||||
</u-row>
|
|
||||||
</view>
|
|
||||||
<view class="jsfm-item">
|
|
||||||
<u-row justify="between">
|
|
||||||
<text class="font-28 font-weight">包裹重量</text>
|
|
||||||
<view>
|
|
||||||
<uni-number-box :min="1" :max="10000"></uni-number-box>
|
|
||||||
</view>
|
|
||||||
</u-row>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<view class="jsfm-item">
|
|
||||||
<u-row justify="between" align="top">
|
|
||||||
<text class="font-28 font-weight pt-20">体积</text>
|
|
||||||
<view style="width: 70%;">
|
|
||||||
<u-row justify="between">
|
|
||||||
<u-col span="3.7">
|
|
||||||
<u-input placeholder="长" v-model="value1"
|
|
||||||
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 14rpx 20rpx;"
|
|
||||||
placeholder-style="color: #999; "
|
|
||||||
>
|
|
||||||
<template #suffix>
|
|
||||||
<text class="font-26 clr-sub pl-10">cm</text>
|
|
||||||
</template>
|
|
||||||
</u-input>
|
|
||||||
</u-col>
|
|
||||||
<u-col span="3.7">
|
|
||||||
<u-input placeholder="宽" v-model="value1"
|
|
||||||
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 14rpx 20rpx;"
|
|
||||||
placeholder-style="color: #999;"
|
|
||||||
>
|
|
||||||
<template #suffix>
|
|
||||||
<text class="font-26 clr-sub pl-10">cm</text>
|
|
||||||
</template>
|
|
||||||
</u-input>
|
|
||||||
</u-col>
|
|
||||||
<u-col span="3.7">
|
|
||||||
<u-input placeholder="高" v-model="value1"
|
|
||||||
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 14rpx 20rpx;"
|
|
||||||
placeholder-style="color: #999; "
|
|
||||||
>
|
|
||||||
<template #suffix>
|
|
||||||
<text class="font-26 clr-sub pl-10">cm</text>
|
|
||||||
</template>
|
|
||||||
</u-input>
|
|
||||||
</u-col>
|
|
||||||
</u-row>
|
|
||||||
|
|
||||||
<u-row customStyle="margin: 20rpx 0 0 0;">
|
|
||||||
<u-input placeholder="" v-model="value1"
|
|
||||||
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 14rpx 20rpx;"
|
|
||||||
placeholder-style="color: #999;"
|
|
||||||
>
|
|
||||||
<template #suffix>
|
|
||||||
<text class="font-26 clr-sub pl-10">m³</text>
|
|
||||||
</template>
|
|
||||||
</u-input>
|
|
||||||
</u-row>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
</u-row>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
</view>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-slot:footer>
|
<template v-slot:footer>
|
||||||
@ -92,12 +19,14 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import BpeGoodsizeTmp from "@/components/buns-post-edit-templates/bpe-goodsize-tmp"
|
||||||
export default {
|
export default {
|
||||||
// computed: {
|
components: { BpeGoodsizeTmp },
|
||||||
// filDataList() {
|
watch: {
|
||||||
// return []
|
show(){
|
||||||
// },
|
this.submitVals = JSON.parse(JSON.stringify(this.value))
|
||||||
// },
|
}
|
||||||
|
},
|
||||||
props: {
|
props: {
|
||||||
show: {
|
show: {
|
||||||
default () {
|
default () {
|
||||||
@ -106,32 +35,32 @@
|
|||||||
},
|
},
|
||||||
value: {
|
value: {
|
||||||
default () {
|
default () {
|
||||||
return {}
|
return {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
value1: '',
|
submitVals: {}
|
||||||
value2: '',
|
|
||||||
keyword: ''
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
|
||||||
},
|
},
|
||||||
onHide() {
|
onHide() {
|
||||||
|
|
||||||
},
|
},
|
||||||
destroyed() {},
|
unmounted() {
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleCloseModal() {
|
handleCloseModal() {
|
||||||
this.$emit('update:show', false)
|
this.$emit('update:show', false)
|
||||||
},
|
},
|
||||||
handleSubmitValue(val) {
|
handleSubmitValue() {
|
||||||
this.$emit('onSure', {})
|
const val = this.submitVals
|
||||||
this.$emit('update:value', {})
|
this.$emit('onSure', val)
|
||||||
|
this.$emit('update:value', val)
|
||||||
this.handleCloseModal()
|
this.handleCloseModal()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
101
components/buns-post-edit-templates/bpe-addressinfo-tmp.vue
Normal file
101
components/buns-post-edit-templates/bpe-addressinfo-tmp.vue
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
<u-row @click="handleAddressChoose(1)" custom-style="position:relative;" align="top"
|
||||||
|
justify="between">
|
||||||
|
<view>
|
||||||
|
<image style="height: 50rpx;width: 42rpx;" :src="getCdnUrl(`post/ji.png`)"></image>
|
||||||
|
</view>
|
||||||
|
<view style="flex: 1;padding: 0 30rpx;">
|
||||||
|
<u-text text="寄件人信息" size="28" :bold="true"></u-text>
|
||||||
|
<view style="margin: 8rpx 0 0 0;">
|
||||||
|
<u-text text="请新建您的寄件地址信息" size="26" color="#999"></u-text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="flex-column-center">
|
||||||
|
<image style="height: 32rpx;width: 28rpx;" :src="getCdnUrl(`post/adress.png`)">
|
||||||
|
</image>
|
||||||
|
<u-text align="center" text="地址薄" size="26" :bold="true"
|
||||||
|
margin="8rpx 0 0 0"></u-text>
|
||||||
|
</view>
|
||||||
|
<view style="position: absolute;left: 20rpx;bottom: -20rpx;top: 46rpx;">
|
||||||
|
<u-line custom-style="height:100%;" direction="col" dashed="true"></u-line>
|
||||||
|
</view>
|
||||||
|
</u-row>
|
||||||
|
<view style="padding-left: 76rpx;">
|
||||||
|
<u-line margin="20rpx 0"></u-line>
|
||||||
|
</view>
|
||||||
|
<u-row @click="handleAddressChoose(2)" custom-style="position:relative;" align="top"
|
||||||
|
justify="between">
|
||||||
|
<view style="position: absolute;left: 20rpx;top: -20rpx;bottom: 100%;">
|
||||||
|
<u-line custom-style="height:100%;" direction="col" dashed="true"></u-line>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
|
<image style="height: 50rpx;width: 42rpx;" :src="getCdnUrl(`post/shou.png`)">
|
||||||
|
</image>
|
||||||
|
</view>
|
||||||
|
<view class="pr-30 pl-30" style="flex: 1;">
|
||||||
|
<u-text text="收件人信息" size="28" :bold="true"></u-text>
|
||||||
|
<view style="margin: 8rpx 0 0 0;">
|
||||||
|
<u-text text="请填写收件人国家、姓名,电话" size="26" color="#999"></u-text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="flex-column-center">
|
||||||
|
<image style="height: 32rpx;width: 28rpx;" :src="getCdnUrl(`post/adress.png`)">
|
||||||
|
</image>
|
||||||
|
<u-text align="center" text="地址薄" size="26" :bold="true"
|
||||||
|
margin="8rpx 0 0 0"></u-text>
|
||||||
|
</view>
|
||||||
|
</u-row>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import getCdnUrl from "@/common/getCdnUrl"
|
||||||
|
import { goto } from "@/common/untool"
|
||||||
|
|
||||||
|
export default {
|
||||||
|
computed: {
|
||||||
|
submitInfo: {
|
||||||
|
get(){
|
||||||
|
return this.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
value: {
|
||||||
|
default () {
|
||||||
|
return { }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
},
|
||||||
|
onHide() {
|
||||||
|
|
||||||
|
},
|
||||||
|
unmounted() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
getCdnUrl,
|
||||||
|
handleAddressChoose(type) { // 1 寄件地址 2收件地址
|
||||||
|
goto(`address/list?tab=${type}&type=choose`)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.shet-cont{
|
||||||
|
padding: 10rpx 0 30rpx 0;
|
||||||
|
}
|
||||||
|
.jsfm-item{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
118
components/buns-post-edit-templates/bpe-goodsize-tmp.vue
Normal file
118
components/buns-post-edit-templates/bpe-goodsize-tmp.vue
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
<template>
|
||||||
|
<view class="shet-cont">
|
||||||
|
<view class="jsfm-item">
|
||||||
|
<u-row justify="between">
|
||||||
|
<text class="font-28 font-weight">件数</text>
|
||||||
|
<view>
|
||||||
|
<uni-number-box v-model="submitInfo.jianshu" :min="1" :max="10000"></uni-number-box>
|
||||||
|
</view>
|
||||||
|
</u-row>
|
||||||
|
</view>
|
||||||
|
<view class="jsfm-item">
|
||||||
|
<u-row justify="between">
|
||||||
|
<text class="font-28 font-weight">包裹重量</text>
|
||||||
|
<view>
|
||||||
|
<uni-number-box v-model="submitInfo.zhl" :min="1" :max="10000"></uni-number-box>
|
||||||
|
</view>
|
||||||
|
</u-row>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="jsfm-item">
|
||||||
|
<u-row justify="between" align="top">
|
||||||
|
<text class="font-28 font-weight pt-20">体积</text>
|
||||||
|
<view style="width: 70%;">
|
||||||
|
<u-row justify="between">
|
||||||
|
<u-col span="3.7">
|
||||||
|
<u-input placeholder="长" v-model="submitInfo.chang"
|
||||||
|
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 14rpx 20rpx;"
|
||||||
|
placeholder-style="color: #999; "
|
||||||
|
>
|
||||||
|
<template #suffix>
|
||||||
|
<text class="font-26 clr-sub pl-10">cm</text>
|
||||||
|
</template>
|
||||||
|
</u-input>
|
||||||
|
</u-col>
|
||||||
|
<u-col span="3.7">
|
||||||
|
<u-input placeholder="宽" v-model="submitInfo.kuan"
|
||||||
|
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 14rpx 20rpx;"
|
||||||
|
placeholder-style="color: #999;"
|
||||||
|
>
|
||||||
|
<template #suffix>
|
||||||
|
<text class="font-26 clr-sub pl-10">cm</text>
|
||||||
|
</template>
|
||||||
|
</u-input>
|
||||||
|
</u-col>
|
||||||
|
<u-col span="3.7">
|
||||||
|
<u-input placeholder="高" v-model="submitInfo.gao"
|
||||||
|
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 14rpx 20rpx;"
|
||||||
|
placeholder-style="color: #999; "
|
||||||
|
>
|
||||||
|
<template #suffix>
|
||||||
|
<text class="font-26 clr-sub pl-10">cm</text>
|
||||||
|
</template>
|
||||||
|
</u-input>
|
||||||
|
</u-col>
|
||||||
|
</u-row>
|
||||||
|
|
||||||
|
<u-row customStyle="margin: 20rpx 0 0 0;">
|
||||||
|
<u-input placeholder="" v-model="submitInfo.pingfang"
|
||||||
|
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 14rpx 20rpx;"
|
||||||
|
placeholder-style="color: #999;"
|
||||||
|
>
|
||||||
|
<template #suffix>
|
||||||
|
<text class="font-26 clr-sub pl-10">m³</text>
|
||||||
|
</template>
|
||||||
|
</u-input>
|
||||||
|
</u-row>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
</u-row>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
computed: {
|
||||||
|
submitInfo: {
|
||||||
|
get(){
|
||||||
|
return this.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
value: {
|
||||||
|
default () {
|
||||||
|
return { }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
|
||||||
|
},
|
||||||
|
onHide() {
|
||||||
|
|
||||||
|
},
|
||||||
|
unmounted() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.shet-cont{
|
||||||
|
padding: 10rpx 0 30rpx 0;
|
||||||
|
}
|
||||||
|
.jsfm-item{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
@ -59,7 +59,7 @@
|
|||||||
onHide() {
|
onHide() {
|
||||||
|
|
||||||
},
|
},
|
||||||
destroyed() {},
|
unmounted() {},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
async handleScan() {
|
async handleScan() {
|
||||||
|
|||||||
@ -2,7 +2,6 @@
|
|||||||
<tpx-layout>
|
<tpx-layout>
|
||||||
<template v-slot:body>
|
<template v-slot:body>
|
||||||
<view class="com-jianju pos-rlt pb-30" style="padding-top: 2rpx;">
|
<view class="com-jianju pos-rlt pb-30" style="padding-top: 2rpx;">
|
||||||
|
|
||||||
<view class="blcok-white">
|
<view class="blcok-white">
|
||||||
<u-row justify="between">
|
<u-row justify="between">
|
||||||
<view style="width: 130rpx;">运单号</view>
|
<view style="width: 130rpx;">运单号</view>
|
||||||
@ -32,54 +31,7 @@
|
|||||||
</u-row>
|
</u-row>
|
||||||
</view>
|
</view>
|
||||||
<view class="blcok-white">
|
<view class="blcok-white">
|
||||||
<view>
|
<bpe-addressinfo-tmp v-model:value="submitParam"></bpe-addressinfo-tmp>
|
||||||
<u-row @click="handleAddressChoose(1)" custom-style="position:relative;" align="top"
|
|
||||||
justify="between">
|
|
||||||
<view>
|
|
||||||
<image style="height: 50rpx;width: 42rpx;" :src="getCdnUrl(`post/ji.png`)"></image>
|
|
||||||
</view>
|
|
||||||
<view style="flex: 1;padding: 0 30rpx;">
|
|
||||||
<u-text text="寄件人信息" size="28" :bold="true"></u-text>
|
|
||||||
<view style="margin: 8rpx 0 0 0;">
|
|
||||||
<u-text text="请新建您的寄件地址信息" size="26" color="#999"></u-text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="flex-column-center">
|
|
||||||
<image style="height: 32rpx;width: 28rpx;" :src="getCdnUrl(`post/adress.png`)">
|
|
||||||
</image>
|
|
||||||
<u-text align="center" text="地址薄" size="26" :bold="true"
|
|
||||||
margin="8rpx 0 0 0"></u-text>
|
|
||||||
</view>
|
|
||||||
<view style="position: absolute;left: 20rpx;bottom: -20rpx;top: 46rpx;">
|
|
||||||
<u-line custom-style="height:100%;" direction="col" dashed="true"></u-line>
|
|
||||||
</view>
|
|
||||||
</u-row>
|
|
||||||
<view style="padding-left: 76rpx;">
|
|
||||||
<u-line margin="20rpx 0"></u-line>
|
|
||||||
</view>
|
|
||||||
<u-row @click="handleAddressChoose(2)" custom-style="position:relative;" align="top"
|
|
||||||
justify="between">
|
|
||||||
<view style="position: absolute;left: 20rpx;top: -20rpx;bottom: 100%;">
|
|
||||||
<u-line custom-style="height:100%;" direction="col" dashed="true"></u-line>
|
|
||||||
</view>
|
|
||||||
<view>
|
|
||||||
<image style="height: 50rpx;width: 42rpx;" :src="getCdnUrl(`post/shou.png`)">
|
|
||||||
</image>
|
|
||||||
</view>
|
|
||||||
<view class="pr-30 pl-30" style="flex: 1;">
|
|
||||||
<u-text text="收件人信息" size="28" :bold="true"></u-text>
|
|
||||||
<view style="margin: 8rpx 0 0 0;">
|
|
||||||
<u-text text="请填写收件人国家、姓名,电话" size="26" color="#999"></u-text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="flex-column-center">
|
|
||||||
<image style="height: 32rpx;width: 28rpx;" :src="getCdnUrl(`post/adress.png`)">
|
|
||||||
</image>
|
|
||||||
<u-text align="center" text="地址薄" size="26" :bold="true"
|
|
||||||
margin="8rpx 0 0 0"></u-text>
|
|
||||||
</view>
|
|
||||||
</u-row>
|
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="blcok-white">
|
<view class="blcok-white">
|
||||||
@ -238,14 +190,16 @@
|
|||||||
<buns-paytype-sheet v-model:show="paytypeModal.show" v-model:value="submitParam.paytype"></buns-paytype-sheet>
|
<buns-paytype-sheet v-model:show="paytypeModal.show" v-model:value="submitParam.paytype"></buns-paytype-sheet>
|
||||||
<buns-privacy-dialog v-model:show="privacyModal.show"> </buns-privacy-dialog>
|
<buns-privacy-dialog v-model:show="privacyModal.show"> </buns-privacy-dialog>
|
||||||
<buns-revtime-sheet v-model:show="revtimeModal.show" v-model:value="submitParam.revtime"></buns-revtime-sheet>
|
<buns-revtime-sheet v-model:show="revtimeModal.show" v-model:value="submitParam.revtime"></buns-revtime-sheet>
|
||||||
<buns-goodsize-sheet v-model:show="goodChooseModal.show" v-model:value="submitParam.goods"></buns-goodsize-sheet>
|
<buns-goodsize-sheet v-model:show="goodChooseModal.show" v-model:value="submitParam"></buns-goodsize-sheet>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import getCdnUrl from "@/common/getCdnUrl"
|
import getCdnUrl from "@/common/getCdnUrl"
|
||||||
import { sendTypeEnum, sendTypeList } from "@/common/enum"
|
import { sendTypeEnum, sendTypeList } from "@/common/enum"
|
||||||
import { goto } from "@/common/untool"
|
import { goto } from "@/common/untool"
|
||||||
|
import BpeAddressinfoTmp from "@/components/buns-post-edit-templates/bpe-addressinfo-tmp"
|
||||||
export default {
|
export default {
|
||||||
|
components: { BpeAddressinfoTmp },
|
||||||
props: {
|
props: {
|
||||||
// hasLeftWin: {
|
// hasLeftWin: {
|
||||||
// type: Boolean
|
// type: Boolean
|
||||||
@ -322,9 +276,7 @@
|
|||||||
// title: '加载中'
|
// title: '加载中'
|
||||||
// });
|
// });
|
||||||
},
|
},
|
||||||
handleAddressChoose(type) { // 1 寄件地址 2收件地址
|
|
||||||
goto(`address/list?tab=${type}&type=choose`)
|
|
||||||
},
|
|
||||||
handleAgree() {
|
handleAgree() {
|
||||||
this.agreePrivateRule = !this.agreePrivateRule
|
this.agreePrivateRule = !this.agreePrivateRule
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user