You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
8.0 KiB
162 lines
8.0 KiB
<!--pages/storage/index/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">出货结算</view>
|
|
</cu-custom>
|
|
|
|
<view wx:if="{{orderInfo}}">
|
|
<van-cell center is-link bind:click="showCategory">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="flex flex-center text-black">
|
|
<view class="text-red text-xxl" style="line-height: 10px; padding-top: 10px">*</view>
|
|
<text>废纸品类</text>
|
|
</view>
|
|
<view class="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-xxl" style="line-height: 10px; padding-top: 10px">*</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-xxl" style="line-height: 10px; padding-top: 10px">*</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" />
|
|
</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" />
|
|
</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>
|
|
<view class="bg-white" style="padding: 20rpx 32rpx">
|
|
<view class="flex flex-justify" style="padding-bottom: 20rpx">
|
|
<text class="text-black">纸厂磅单</text>
|
|
<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" />
|
|
</view>
|
|
</view>
|
|
<view class="margin-top"></view>
|
|
<van-collapse value="{{ activeNames }}" bind:change="onChange" wx:if="{{orderInfo}}">
|
|
<van-collapse-item title="出货信息" content-class="collapse-item" name="2">
|
|
<van-cell center>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">收货方名称</view>
|
|
<view class="text-gray">{{orderInfo.factoryName || ''}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell center>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">废纸品类</view>
|
|
<view class="text-gray">{{orderInfo.categoryName || ''}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell wx:if="{{orderInfo.packageNumber}}">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">纸品包数</view>
|
|
<view class="text-gray">{{orderInfo.packageNumber || ''}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell center>
|
|
<view class="flex flex-justify text-black">
|
|
<view class="text-black">车牌号码</view>
|
|
<view class="text-gray">{{orderInfo.plateNumber || ''}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell wx:if="{{orderInfo.driverName}}">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">司机姓名</view>
|
|
<view class="text-gray">{{ orderInfo.driverName || ''}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<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-cell wx:if="{{orderInfo.emptyWeighingPicture && orderInfo.emptyWeighingPicture.length}}">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">第一次过磅(皮重)</view>
|
|
<view class="text-gray">{{orderInfo.factoryCustomerName}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<view class="bg-white flex flex-justify" style="padding:24rpx 32rpx" wx:if="{{orderInfo.emptyWeighingPicture && orderInfo.emptyWeighingPicture.length}}">
|
|
<van-image wx:for="{{orderInfo.emptyWeighingPicture}}" wx:key="index" use-loading-slot width="320rpx" height="240rpx"
|
|
data-url="{{item.url}}" fit="cover" data-type="0" src="{{item.url}}" bind:click="viewImage">
|
|
<view class="image-load" slot="loading">
|
|
<van-loading type="spinner" size="32" />
|
|
</view>
|
|
</van-image>
|
|
</view>
|
|
<van-cell wx:if="{{orderInfo.totalWeighingPicture && orderInfo.totalWeighingPicture.length}}">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">第二次过磅(毛重)</view>
|
|
<view class="text-gray">重量(公斤):34250</view>
|
|
</view>
|
|
</van-cell>
|
|
<view class="bg-white flex flex-justify" style="padding:24rpx 32rpx" wx:if="{{orderInfo.totalWeighingPicture && orderInfo.totalWeighingPicture.length}}">
|
|
<van-image wx:for="{{orderInfo.totalWeighingPicture}}" wx:key="index" use-loading-slot width="320rpx" height="240rpx"
|
|
data-url="{{item.url}}" fit="cover" data-type="1" src="{{item.url}}" bind:click="viewImage">
|
|
<view class="image-load" slot="loading">
|
|
<van-loading type="spinner" size="32" />
|
|
</view>
|
|
</van-image>
|
|
</view>
|
|
<van-cell wx:if="{{orderInfo.totalWeighingPicture && orderInfo.totalWeighingPicture.length}}">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">净重(公斤)</view>
|
|
<view class="text-gray">{{orderInfo.createTime}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell wx:if="{{orderInfo.totalWeighingPicture && orderInfo.totalWeighingPicture.length}}">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">过磅人</view>
|
|
<view class="text-gray">{{orderInfo.createTime}}</view>
|
|
</view>
|
|
</van-cell>
|
|
</van-collapse-item>
|
|
</van-collapse>
|
|
|
|
<view style="height:{{136 + safeBottom}}rpx;" wx:if="{{orderInfo }}"></view>
|
|
<view class="cu-bar bg-white foot" style="height:{{120 + safeBottom}}rpx;padding:0rpx 32rpx {{safeBottom}}rpx 32rpx;" wx:if="{{orderInfo && orderInfo.status == 2}}">
|
|
<van-button type="danger" custom-style="height:88rpx;width:254rpx" bind:click="closeForm">关闭订单</van-button>
|
|
<van-button type="info" custom-style="margin-left:32rpx;height:88rpx;width:400rpx" bind:click="settlementForm">确认收款</van-button>
|
|
</view>
|
|
|
|
<van-popup position="bottom" show="{{ visible }}" bind:close="onHide" z-index="29">
|
|
<van-picker show-toolbar title="选择纸品" columns="{{ columns }}" bind:cancel="onHide" bind:confirm="onConfirm" />
|
|
</van-popup>
|
|
<van-dialog id="van-dialog" />
|
|
<notification id="qn-notification"/>
|