总净重
This commit is contained in:
@@ -70,7 +70,7 @@
|
|||||||
<button class="submit-button" :class="{'btn-disabled': !(val1 && !pkId)}" :disabled="disabled5" @tap="_needEmptyVehicle">呼叫空轴</button>
|
<button class="submit-button" :class="{'btn-disabled': !(val1 && !pkId)}" :disabled="disabled5" @tap="_needEmptyVehicle">呼叫空轴</button>
|
||||||
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled2" @tap="_confirmBlanking">准备就绪</button>
|
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled2" @tap="_confirmBlanking">准备就绪</button>
|
||||||
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled3" @tap="_finishBlanking">确认下卷</button>
|
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled3" @tap="_finishBlanking">确认下卷</button>
|
||||||
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled4" @tap="_finish">结束</button>
|
<!-- <button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled4" @tap="_finish">结束</button> -->
|
||||||
<button class="submit-button" @tap="searchList">查询</button>
|
<button class="submit-button" @tap="searchList">查询</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
@@ -29,6 +29,7 @@
|
|||||||
<th>单据号</th>
|
<th>单据号</th>
|
||||||
<th>状态</th>
|
<th>状态</th>
|
||||||
<th>总重量</th>
|
<th>总重量</th>
|
||||||
|
<th>总净重</th>
|
||||||
<th>明细数</th>
|
<th>明细数</th>
|
||||||
<th>客户编码</th>
|
<th>客户编码</th>
|
||||||
<th>客户名称</th>
|
<th>客户名称</th>
|
||||||
@@ -47,6 +48,7 @@
|
|||||||
<td>{{e.bill_code}}</td>
|
<td>{{e.bill_code}}</td>
|
||||||
<td>{{e.bill_status}}</td>
|
<td>{{e.bill_status}}</td>
|
||||||
<td>{{e.total_qty}}</td>
|
<td>{{e.total_qty}}</td>
|
||||||
|
<td>{{e.net_weight_num}}</td>
|
||||||
<td>{{e.detail_count}}</td>
|
<td>{{e.detail_count}}</td>
|
||||||
<td>{{e.cust_code}}</td>
|
<td>{{e.cust_code}}</td>
|
||||||
<td>{{e.cust_name}}</td>
|
<td>{{e.cust_name}}</td>
|
||||||
|
|||||||
@@ -20,6 +20,14 @@
|
|||||||
<search-box v-model="val2" />
|
<search-box v-model="val2" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="filter_item">
|
||||||
|
<view class="filter_label_wraper">
|
||||||
|
<span class="filter_label">总净重</span>
|
||||||
|
</view>
|
||||||
|
<view class="filter_input_wraper">
|
||||||
|
<input type="number" class="filter_input filter_input_disabled" v-model="net_weight_num" disabled>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="zd_wrapper grid-wraper">
|
<view class="zd_wrapper grid-wraper">
|
||||||
<view class="slide_new">
|
<view class="slide_new">
|
||||||
@@ -72,7 +80,8 @@
|
|||||||
val2: '',
|
val2: '',
|
||||||
billCode: '',
|
billCode: '',
|
||||||
dataList: [],
|
dataList: [],
|
||||||
disabled1: false
|
disabled1: false,
|
||||||
|
net_weight_num: ''
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad (option) {
|
onLoad (option) {
|
||||||
@@ -91,7 +100,8 @@
|
|||||||
/** 初始化查询 */
|
/** 初始化查询 */
|
||||||
async _virtualivtQuery () {
|
async _virtualivtQuery () {
|
||||||
let res = await virtualivtQuery(this.val1, this.val2, this.billCode)
|
let res = await virtualivtQuery(this.val1, this.val2, this.billCode)
|
||||||
this.dataList = [...res.data]
|
this.dataList = [...res.data]
|
||||||
|
this.net_weight_num = res.net_weight_num
|
||||||
},
|
},
|
||||||
async _virtualoutConfirm () {
|
async _virtualoutConfirm () {
|
||||||
this.disabled1 = true
|
this.disabled1 = true
|
||||||
|
|||||||
Reference in New Issue
Block a user