|
|
@ -8,170 +8,132 @@ |
|
|
<van-cell clickable center> |
|
|
<van-cell clickable center> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">客户姓名</view> |
|
|
<view class="text-black">客户姓名</view> |
|
|
<view class="{{form.factoryCustomerName ? 'text-black' : 'text-gray'}}">{{form.factoryCustomerName || '请选择客户'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-gray">{{form.factoryCustomerName || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell clickable center> |
|
|
<van-cell clickable center> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">车牌号码</view> |
|
|
<view class="text-black">车牌号码</view> |
|
|
<view class="{{form.plateNumber ? 'text-black' : 'text-gray'}}">{{form.plateNumber || '请输入车牌号码'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-gray">{{form.plateNumber || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell clickable center> |
|
|
<van-cell clickable center> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">司机</view> |
|
|
<view class="text-black">司机</view> |
|
|
<view class="{{form.driverName ? 'text-black' : 'text-gray'}}">{{form.driverName || '请选择司机'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-gray">{{form.driverName || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell clickable center wx:if="{{form.operatorName}}"> |
|
|
<van-cell clickable center wx:if="{{form.operatorName}}"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">操作员</view> |
|
|
<view class="text-black">操作员</view> |
|
|
<view class="{{form.operatorName ? 'text-black' : 'text-gray'}}">{{form.operatorName || '请选择操作员'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-gray">{{form.operatorName || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell clickable center wx:if="{{form.appointDate}}"> |
|
|
|
|
|
|
|
|
<van-cell clickable center wx:if="{{form.predictDeliveryToFactoryTime}}"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">预计到厂时间</view> |
|
|
<view class="text-black">预计到厂时间</view> |
|
|
<view class="{{form.appointDate ? 'text-black' : 'text-gray'}}">{{form.appointDate || '请选择预计到厂时间'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-gray">{{form.predictDeliveryToFactoryTime}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-field label="辅助设备" type="textarea" disabled input-align="right" placeholder="请输入辅助设备" autosize border="{{ false }}" /> |
|
|
|
|
|
|
|
|
<van-field label="辅助设备" type="textarea" disabled input-align="right" value="{{ form.equipmentRemark }}" autosize border="{{ false }}" /> |
|
|
|
|
|
|
|
|
<van-index-anchor index="纸品信息" /> |
|
|
<van-index-anchor index="纸品信息" /> |
|
|
<view wx:for="{{form.productCategoryInfos}}" wx:key="index"> |
|
|
<view wx:for="{{form.productCategoryInfos}}" wx:key="index"> |
|
|
|
|
|
<view style="height:16rpx" wx:if="{{index != 0 }}"></view> |
|
|
<van-cell clickable center> |
|
|
<van-cell clickable center> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">废纸品类{{index + 1}}</view> |
|
|
<view class="text-black">废纸品类{{index + 1}}</view> |
|
|
<view class="{{item.productName ? 'text-black' : 'text-gray'}}">{{item.productName || '请选择废纸品类'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-gray">{{item.productCategoryName || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
<van-cell> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">预估单价(元/公斤)</view> |
|
|
|
|
|
<view class="{{item.unitPrice ? 'text-black' : 'text-gray'}}">{{item.unitPrice || '请输入单价'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-black">结算单价(元/公斤)</view> |
|
|
|
|
|
<view class="text-gray">{{item.settleUnitPrice || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
<van-cell> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<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="totalWeight" data-index="{{index}}" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
|
|
placeholder="请输入毛重" value="{{item.unitPrice || ''}}" bindinput="bindInput" /> |
|
|
|
|
|
|
|
|
<view class="text-black">毛重(公斤)</view> |
|
|
|
|
|
<view class="text-gray">{{item.grossWeight || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
<van-cell> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<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="emptyWeight" data-index="{{index}}" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
|
|
placeholder="请输入皮重" value="{{item.unitPrice || ''}}" bindinput="bindInput" /> |
|
|
|
|
|
|
|
|
<view class="text-black">皮重(公斤)</view> |
|
|
|
|
|
<view class="text-gray">{{item.tareWeight || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
<van-cell> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">净重(公斤)</view> |
|
|
<view class="text-black">净重(公斤)</view> |
|
|
<view class="{{item.netWeight ? 'text-black' : 'text-gray'}}">{{item.netWeight || ''}}</view> |
|
|
|
|
|
|
|
|
<view class="text-gray">{{item.netWeight || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
|
|
|
|
|
|
<!-- <van-cell> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">预估金额(元)</view> |
|
|
<view class="text-black">预估金额(元)</view> |
|
|
<view class="{{item.price ? 'text-black' : 'text-gray'}}">{{item.price || ''}}</view> |
|
|
<view class="{{item.price ? 'text-black' : 'text-gray'}}">{{item.price || ''}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
|
|
|
|
|
|
</van-cell> --> |
|
|
<view class="bg-white" style="padding: 24rpx 32rpx 20rpx 32rpx"> |
|
|
<view class="bg-white" style="padding: 24rpx 32rpx 20rpx 32rpx"> |
|
|
<view class="flex flex-justify" style="padding-bottom: 24rpx"> |
|
|
<view class="flex flex-justify" style="padding-bottom: 24rpx"> |
|
|
<view class="flex flex-center text-black"> |
|
|
|
|
|
<view class="text-red text-xl" style="line-height: 10px; padding-top: 8px">*</view> |
|
|
|
|
|
<text>过磅凭证</text> |
|
|
|
|
|
</view> |
|
|
|
|
|
<text class="text-gray">最多3张,每图片大小限制5M</text> |
|
|
|
|
|
|
|
|
<view class="flex flex-center text-black">过磅凭证</view> |
|
|
</view> |
|
|
</view> |
|
|
<van-uploader name="{{index}}" file-list="{{ item.fileList }}" multiple max-count="6" max-size="{{1024 * 1024 * 5}}" bind:file-change="fileChange" /> |
|
|
|
|
|
|
|
|
<van-uploader file-list="{{ item.fileList }}" deletable="{{false}}" show-upload="{{false}}" /> |
|
|
</view> |
|
|
</view> |
|
|
<van-cell> |
|
|
|
|
|
|
|
|
<van-cell wx:if="{{item.deductWeight}}"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<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="emptyWeight" data-index="{{index}}" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
|
|
placeholder="请输入结算单价" value="{{item.unitPrice || ''}}" bindinput="bindInput" /> |
|
|
|
|
|
|
|
|
<view class="text-black">扣重(公斤)</view> |
|
|
|
|
|
<view class="text-gray">{{item.deductWeight}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
|
|
|
|
|
|
<van-cell wx:if="{{item.deductPercent}}"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="flex flex-center text-black" data-type="1" bindtap="changeDeductType"> |
|
|
|
|
|
<van-checkbox value="{{ item.sign == 1 }}" icon-size="32rpx"></van-checkbox> |
|
|
|
|
|
<text style="margin-left:8rpx">扣重(公斤)</text> |
|
|
|
|
|
</view> |
|
|
|
|
|
<input id="deductWeight" type="digit" disabled="{{item.sign == 2}}" focus="{{focus == 1}}" |
|
|
|
|
|
placeholder-style="color:#aaa" style="text-align: right" maxlength="10" placeholder="请输入扣重重量" |
|
|
|
|
|
value="{{item.deductWeight || ''}}" bindinput="bindInput" data-type="1" bindtap="changeDeductType" /> |
|
|
|
|
|
</view> |
|
|
|
|
|
</van-cell> |
|
|
|
|
|
<van-cell> |
|
|
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
|
|
<view class="flex flex-center text-black" data-type="2" bindtap="changeDeductType"> |
|
|
|
|
|
<van-checkbox value="{{ item.sign == 2 }}" icon-size="32rpx"></van-checkbox> |
|
|
|
|
|
<text style="margin-left:8rpx">扣点(%)</text> |
|
|
|
|
|
</view> |
|
|
|
|
|
<input id="deductPercent" type="digit" disabled="{{form.sign == 1}}" focus="{{focus == 2}}" |
|
|
|
|
|
placeholder-style="color:#aaa" style="text-align: right" maxlength="10" placeholder="请输入扣点比例" |
|
|
|
|
|
value="{{form.deductPercent}}" bindinput="bindInput" data-type="2" bindtap="changeDeductType" /> |
|
|
|
|
|
|
|
|
<view class="text-black">扣点(%)</view> |
|
|
|
|
|
<view class="text-gray">{{item.deductPercent}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
<van-cell> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">结算重量(公斤)</view> |
|
|
<view class="text-black">结算重量(公斤)</view> |
|
|
<view class="text-gray">{{form.settleWeight || '- -'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-gray">{{item.settleWeight || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
<van-cell> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">结算金额(元)</view> |
|
|
<view class="text-black">结算金额(元)</view> |
|
|
<view class="text-gray">{{form.settleWeight || '- -'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-gray">{{item.settlePrice || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
</view> |
|
|
</view> |
|
|
<van-index-anchor index="汇总信息" /> |
|
|
<van-index-anchor index="汇总信息" /> |
|
|
<van-cell clickable center> |
|
|
<van-cell clickable center> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">总净重(公斤)</view> |
|
|
|
|
|
<view class="{{form.driverName ? 'text-black' : 'text-gray'}}">{{form.driverName || '请选择司机'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-black">结算总重量(公斤)</view> |
|
|
|
|
|
<view class="text-gray">{{form.totalNetWeight || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell clickable center> |
|
|
<van-cell clickable center> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<view class="text-black">预计总金额(元)</view> |
|
|
|
|
|
<view class="{{form.driverName ? 'text-black' : 'text-gray'}}">{{form.driverName || '请选择司机'}}</view> |
|
|
|
|
|
|
|
|
<view class="text-black">结算总金额(元)</view> |
|
|
|
|
|
<view class="text-gray">{{form.totalSettleWeight || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
<van-cell> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<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="emptyWeight" data-index="{{index}}" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
|
|
placeholder="请输入厂外皮重" value="{{item.unitPrice || ''}}" bindinput="bindInput" /> |
|
|
|
|
|
|
|
|
<view class="flex flex-center text-black">厂外皮重(公斤)</view> |
|
|
|
|
|
<view class="text-gray">{{form.offsiteTareWeight || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
<van-cell> |
|
|
<van-cell> |
|
|
<view slot="title" class="flex flex-justify"> |
|
|
<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="emptyWeight" data-index="{{index}}" type="digit" placeholder-style="color:#aaa" style="text-align: right" maxlength="8" |
|
|
|
|
|
placeholder="请输入厂外毛重" value="{{item.unitPrice || ''}}" bindinput="bindInput" /> |
|
|
|
|
|
|
|
|
<view class="flex flex-center text-black">厂外毛重(公斤)</view> |
|
|
|
|
|
<view class="text-gray">{{form.offsiteGrossWeight || '- -'}}</view> |
|
|
</view> |
|
|
</view> |
|
|
</van-cell> |
|
|
</van-cell> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<submit-layout wx:if="{{form && admin && form.orderStatus == 3}}"> |
|
|
<submit-layout wx:if="{{form && admin && form.orderStatus == 3}}"> |
|
|
<van-button plain type="default" custom-style="height:88rpx;width:254rpx" bind:click="checkForm">重新定价</van-button> |
|
|
<van-button plain type="default" custom-style="height:88rpx;width:254rpx" bind:click="checkForm">重新定价</van-button> |
|
|
<van-button type="info" custom-style="margin-left:32rpx;height:88rpx;width:400rpx" bind:click="submitForm">审核通过</van-button> |
|
|
<van-button type="info" custom-style="margin-left:32rpx;height:88rpx;width:400rpx" bind:click="submitForm">审核通过</van-button> |
|
|
|