|
@@ -140,8 +140,16 @@
|
|
|
|
|
|
|
|
<view class="table">
|
|
<view class="table">
|
|
|
<view class="tr row rx-sc">
|
|
<view class="tr row rx-sc">
|
|
|
- <view class="item ww25">{{it.extInfo.newWeight ? it.extInfo.newWeight : it.extInfo.weight }}
|
|
|
|
|
- </view>
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <view class="item ww25" v-if="Object.prototype.hasOwnProperty.call(it.extInfo, 'newWeight')">
|
|
|
|
|
+ {{ it.extInfo.newWeight }}
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
|
|
+ <view class="item ww25 content_num" v-if="!Object.prototype.hasOwnProperty.call(it.extInfo, 'newWeight')">
|
|
|
|
|
+ <input class="uni-input " v-model="it.extInfo.weight" type='digit'></input>
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
<view class="item ww25 content_num">
|
|
<view class="item ww25 content_num">
|
|
|
<view v-if='isDetails'>{{it.extInfo.reportWeight }}</view>
|
|
<view v-if='isDetails'>{{it.extInfo.reportWeight }}</view>
|
|
|
<input class="uni-input" v-else v-model="it.extInfo.reportWeight" type='digit'></input>
|
|
<input class="uni-input" v-else v-model="it.extInfo.reportWeight" type='digit'></input>
|