|
|
|
@ -5,10 +5,11 @@ |
|
|
|
</cu-custom> |
|
|
|
|
|
|
|
<view wx:if="{{orderInfo}}"> |
|
|
|
<view style="background-color:#f3f3f3;"> |
|
|
|
<text class="text-sg" style="line-height:64rpx;padding-left:32rpx">结算信息</text> |
|
|
|
<view class="flex flex-center bg-white" style="justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3"> |
|
|
|
<view style="height:24rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view> |
|
|
|
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">结算信息</view> |
|
|
|
</view> |
|
|
|
<van-cell center clickable is-link bind:click="showCategory"> |
|
|
|
<van-cell center clickable is-link arrow-direction="down" bind:click="showCategory"> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="flex flex-center text-black"> |
|
|
|
<view class="text-red text-xl" style="line-height: 10px; padding-top: 8px">*</view> |
|
|
|
@ -17,57 +18,29 @@ |
|
|
|
<view class="{{form.categoryName ? 'text-black' : 'text-gray'}}">{{form.categoryName || '请选择废纸品类'}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="flex flex-center text-black"> |
|
|
|
<view class="text-red text-xl" style="line-height: 10px; padding-top: 8px">*</view> |
|
|
|
<text>结算单价(元/吨)</text> |
|
|
|
</view> |
|
|
|
<input id="settleUnitPrice" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
placeholder="请输入结算单价" value="{{form.settleUnitPrice || ''}}" bindinput="bindInput" /> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="flex flex-center text-black"> |
|
|
|
<view class="text-red text-xl" style="line-height: 10px; padding-top: 8px">*</view> |
|
|
|
<text>净重(吨)</text> |
|
|
|
</view> |
|
|
|
<input id="netWeight" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
placeholder="请输入净重" value="{{form.netWeight || ''}}" bindinput="bindInput" /> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">扣点(%)</view> |
|
|
|
<input id="deductPercent" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="4" |
|
|
|
placeholder="请输入扣点" value="{{form.deductPercent || ''}}" bindinput="bindInput" /> |
|
|
|
<van-field id="settleUnitPrice" value="{{ form.settleUnitPrice || '' }}" type="digit" placeholder="请输入结算单价" clearable input-align="right" bind:change="bindInput"> |
|
|
|
<view slot="label" class="flex text-black" style="width:200rpx"> |
|
|
|
<view class="text-red text-xl" style="line-height: 10px; padding-top: 12px">*</view> |
|
|
|
<text>结算单价(元/吨)</text> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">结算重量(吨)</view> |
|
|
|
<input id="settleWeight" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
placeholder="请输入结算重量" value="{{form.settleWeight || ''}}" bindinput="bindInput" /> |
|
|
|
</van-field> |
|
|
|
<van-field id="netWeight" value="{{ form.netWeight || '' }}" type="digit" placeholder="请输入净重" clearable input-align="right" bind:change="bindInput"> |
|
|
|
<view slot="label" class="flex text-black" style="width:200rpx"> |
|
|
|
<view class="text-red text-xl" style="line-height: 10px; padding-top: 12px">*</view> |
|
|
|
<text>净重(吨)</text> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">其他费用(元)</view> |
|
|
|
<input id="otherFee" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
placeholder="请输入其他费用" value="{{form.otherFee || ''}}" bindinput="bindInput" /> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">结算金额(元)</view> |
|
|
|
<input id="settlePrice" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
placeholder="请输入结算金额" disabled value="{{form.settlePrice || ''}}" bindinput="bindInput" /> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
</van-field> |
|
|
|
<van-field id="deductPercent" value="{{ form.deductPercent || '' }}" label="扣点(%)" maxlength="4" type="digit" placeholder="请输入扣点" clearable input-align="right" bind:change="bindInput"></van-field> |
|
|
|
<van-field id="settleWeight" value="{{ form.settleWeight || '' }}" label="结算重量(吨)" maxlength="8" type="digit" placeholder="请输入结算重量" clearable input-align="right" bind:change="bindInput"></van-field> |
|
|
|
<van-field id="otherFee" value="{{ form.otherFee || '' }}" label="其他费用(吨)" maxlength="8" type="digit" placeholder="请输入其他费用" clearable input-align="right" bind:change="bindInput"></van-field> |
|
|
|
<van-field id="settlePrice" value="{{ form.settlePrice || '' }}" label="结算金额(元)" maxlength="8" type="digit" placeholder="请输入结算金额" clearable input-align="right" bind:change="bindInput"></van-field> |
|
|
|
|
|
|
|
<view class="bg-white" style="padding: 24rpx 32rpx 20rpx 32rpx"> |
|
|
|
<view class="flex flex-justify" style="padding-bottom: 24rpx"> |
|
|
|
<text class="text-black">纸厂磅单</text> |
|
|
|
<view class="flex flex-center" style="justify-content: flex-start;"> |
|
|
|
<view style="height:24rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view> |
|
|
|
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">纸厂磅单</view> |
|
|
|
</view> |
|
|
|
<text class="text-gray">最多3张,每图片大小限制5M</text> |
|
|
|
</view> |
|
|
|
<van-uploader file-list="{{ fileList }}" multiple max-count="3" max-size="{{1024 * 1024 * 5}}" bind:file-change="fileChange" /> |
|
|
|
@ -75,8 +48,11 @@ |
|
|
|
</view> |
|
|
|
<view class="margin-top"></view> |
|
|
|
<van-collapse value="{{ activeNames }}" bind:change="onChange" wx:if="{{orderInfo}}"> |
|
|
|
<van-collapse-item title="出货信息" name="2"> |
|
|
|
<!-- <view slot="title" class="text-gray">出货信息</view> --> |
|
|
|
<van-collapse-item name="2"> |
|
|
|
<view slot="title" class="flex flex-center" style="justify-content: flex-start;"> |
|
|
|
<view style="height:24rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view> |
|
|
|
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">出货信息</view> |
|
|
|
</view> |
|
|
|
<van-cell center> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">收货方名称</view> |
|
|
|
@ -122,7 +98,11 @@ |
|
|
|
<van-field label="备注" type="textarea" input-align="right" readonly autosize border="{{ false }}" /> |
|
|
|
</van-collapse-item> |
|
|
|
<view class="margin-top"></view> |
|
|
|
<van-collapse-item title="过磅信息" content-class="collapse-item" name="1"> |
|
|
|
<van-collapse-item content-class="collapse-item" name="1"> |
|
|
|
<view slot="title" class="flex flex-center" style="justify-content: flex-start;"> |
|
|
|
<view style="height:24rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view> |
|
|
|
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">过磅信息</view> |
|
|
|
</view> |
|
|
|
<van-cell wx:if="{{poundInfo.firstWeight}}"> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">第一次过磅(皮重)</view> |
|
|
|
|