94 lines
2.2 KiB
Vue
94 lines
2.2 KiB
Vue
<template>
|
|
<view>
|
|
<u-row 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/eye-off.svg`)">
|
|
</image>
|
|
</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 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/eye-line.svg`)">
|
|
</image>
|
|
</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,
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.shet-cont{
|
|
padding: 10rpx 0 30rpx 0;
|
|
}
|
|
.jsfm-item{
|
|
margin-top: 30rpx;
|
|
}
|
|
|
|
</style> |