This commit is contained in:
aihe 2023-12-18 01:04:27 +08:00
parent 6bc49b5e3f
commit c37b4b4588

View File

@ -1,8 +1,77 @@
<template>
<tpx-dialog :show="show" title="填写预估重量体积" @onClose="handleCloseModal()">
<view class="shet-cont">
<view style="position: relative;height: calc(60vh);">
<tpx-layout>
<template v-slot:body>
<view class="shet-cont">
<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="长(cm)" v-model="value1"
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 10rpx 20rpx;"
placeholder-style="color: #999; text-align:right;"
></u-input>
</u-col>
<u-col span="3.7">
<u-input placeholder="宽(cm)" v-model="value1"
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 10rpx 20rpx;"
placeholder-style="color: #999; text-align:right;"
></u-input>
</u-col>
<u-col span="3.7">
<u-input placeholder="高(cm)" v-model="value1"
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 10rpx 20rpx;"
placeholder-style="color: #999; text-align:right;"
></u-input>
</u-col>
</u-row>
<u-row customStyle="margin: 20rpx 0 0 0;">
<u-input placeholder="m³" v-model="value1"
custom-style="border:0;border-radius: 10rpx;background-color: #F6F6F6;padding: 10rpx 20rpx;"
placeholder-style="color: #999;text-align:right; "
></u-input>
<!-- <text class="font-26 clr-sub pl-10"></text> -->
</u-row>
</view>
</u-row>
</view>
</view>
</template>
<template v-slot:footer>
<view class="blcok-white-noradius" style="margin-top: 0;margin-bottom: 0;">
<u-button @click="handleSubmitValue()" type="primary" size="large" shape="circle"
custom-style="height:80rpx;font-size: 30rpx;"
>确认</u-button>
</view>
</template>
</tpx-layout>
</view>
</tpx-dialog>
</template>
@ -28,6 +97,8 @@
},
data() {
return {
value1: '',
value2: '',
keyword: ''
}
},
@ -56,5 +127,8 @@
.shet-cont{
padding: 10rpx 0 30rpx 0;
}
.jsfm-item{
margin-top: 30rpx;
}
</style>