Browse Source

no message

feature/v2.1
xpz2018 4 years ago
parent
commit
6cc0f4a7ba
2 changed files with 25 additions and 24 deletions
  1. 2
      pages/agent/appointment/index.wxml
  2. 47
      pages/storage/pound-info/index.wxml

2
pages/agent/appointment/index.wxml

@ -107,7 +107,7 @@
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">其他信息</view>
</view>
<view class="bg-white" style="padding:24rpx 30rpx" catchtap="noop">
<textarea name="evaluation" style="padding-top:16rpx" class="textarea {{ platform ? 'textatrea_ios_bug' : '' }}" maxlength="100" focus="{{ editing }}" bindfocus="handleEvaluationFocus" bindinput="handleEvaluationInput" bindconfirm="handleEvaluationConfirm" bindblur="handleEvaluationBlur" show-confirm-bar="{{ false }}" adjust-position="{{ false }}" value="{{ form.remark }}" fixed="{{ true }}" placeholder-style="color:#aaa" placeholder="{{'点击输入备注,最多100字'}}"></textarea>
<textarea name="evaluation" style="padding:8rpx 12rpx" class="textarea {{ platform ? 'textatrea_ios_bug' : '' }}" maxlength="100" focus="{{ editing }}" bindfocus="handleEvaluationFocus" bindinput="handleEvaluationInput" bindconfirm="handleEvaluationConfirm" bindblur="handleEvaluationBlur" show-confirm-bar="{{ false }}" adjust-position="{{ false }}" value="{{ form.remark }}" fixed="{{ true }}" placeholder-style="color:#aaa" placeholder="{{'点击输入备注,最多100字'}}"></textarea>
</view>
</view>
</view>

47
pages/storage/pound-info/index.wxml

@ -4,22 +4,24 @@
<view slot="content">磅单处理</view>
</cu-custom>
<van-cell wx:if="{{form.firstWeight}}" border="{{false}}">
<van-cell wx:if="{{form.firstWeight}}">
<view slot="title" class="flex flex-justify">
<view class="text-black">第一次过磅(皮重)</view>
<view class="text-gray">重量(公斤):{{formate.minWeight(form.firstWeight, form.secondWeight)}}</view>
</view>
</van-cell>
<view class="bg-white flex flex-justify" style="padding:0rpx 32rpx" wx:if="{{form.emptyWeighingPicture.length}}">
<van-image wx:for="{{form.emptyWeighingPicture}}" wx:key="index" use-loading-slot width="330rpx" height="240rpx"
data-url="{{item}}" fit="cover" data-type="0" src="{{item}}" bind:click="viewImage">
<view class="image-load" slot="loading">
<van-loading type="spinner" size="32" />
</view>
</van-image>
</view>
<view class="van-hairline--top" style="height:1px;margin-top: 24rpx;margin-left: 24rpx" wx:if="{{form.secondWeight}}"></view>
<van-cell wx:if="{{form.secondWeight}}" border="{{false}}">
<van-cell wx:if="{{form.emptyWeighingPicture.length}}">
<view slot="title" class="bg-white flex flex-justify">
<van-image wx:for="{{form.emptyWeighingPicture}}" wx:key="index" use-loading-slot width="330rpx" height="240rpx"
data-url="{{item}}" fit="cover" data-type="0" src="{{item}}" bind:click="viewImage">
<view class="image-load" slot="loading">
<van-loading type="spinner" size="32" />
</view>
</van-image>
</view>
</van-cell>
<van-cell wx:if="{{form.secondWeight}}">
<view slot="title" class="flex flex-justify">
<view class="text-black">第二次过磅(毛重)</view>
<view class="text-gray flex flex-justify">
@ -28,19 +30,18 @@
</view>
</view>
</van-cell>
<view class="bg-white flex flex-justify" style="padding:0rpx 32rpx" wx:if="{{form.totalWeighingPicture.length}}">
<van-image wx:for="{{form.totalWeighingPicture}}" wx:key="index" use-loading-slot width="330rpx" height="240rpx"
data-url="{{item}}" fit="cover" data-type="1" src="{{item}}" bind:click="viewImage">
<view class="image-load" slot="loading">
<van-loading type="spinner" size="32" />
</view>
</van-image>
</view>
<view class="van-hairline--top" style="height:1px;margin-top: 24rpx;margin-left: 24rpx"></view>
<!-- <view class="bg-white flex justify-end" style="padding-right:32rpx" wx:if="{{form.secondWeight}}">
<van-button plain type="info" size="small" bind:click="repeatForm">重新过磅</van-button>
</view> -->
<van-cell wx:if="{{form.totalWeighingPicture.length}}">
<view slot="title" class="bg-white flex flex-justify">
<van-image wx:for="{{form.totalWeighingPicture}}" wx:key="index" use-loading-slot width="330rpx" height="240rpx"
data-url="{{item}}" fit="cover" data-type="1" src="{{item}}" bind:click="viewImage">
<view class="image-load" slot="loading">
<van-loading type="spinner" size="32" />
</view>
</van-image>
</view>
</van-cell>
<view style="margin-top: 16rpx"></view>
<van-cell wx:if="{{form.netWeight}}">
<view slot="title" class="flex flex-justify">
<view class="text-black">净重(公斤)</view>

Loading…
Cancel
Save