生箔工序
This commit is contained in:
@@ -32,6 +32,15 @@
|
||||
<button class="btn-submit btn-success" @tap="searchList">查询</button>
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item">
|
||||
<view class="filter_label_wraper">
|
||||
<span class="filter_label filter_label_1"></span>
|
||||
</view>
|
||||
<view class="filter_input_wraper filter_input_wraper_1">
|
||||
<view class="iconfont icon_unchecked" :class="{'icon_checked': isV === '1'}" @tap="isVirtual"></view>
|
||||
<view class="filter_input_wraper_inn_text">是否大车</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd_wrapper grid-wraper">
|
||||
<view class="slide_new">
|
||||
@@ -119,7 +128,8 @@
|
||||
},
|
||||
totalCount: 0,
|
||||
pageNum: 1,
|
||||
pageSize: 10
|
||||
pageSize: 10,
|
||||
isV: '0'
|
||||
};
|
||||
},
|
||||
onLoad (options) {
|
||||
@@ -135,6 +145,9 @@
|
||||
this.$refs.scanChild.handleFocus()
|
||||
},
|
||||
methods: {
|
||||
isVirtual () {
|
||||
this.isV = this.isV === '0' ? '1' : '0'
|
||||
},
|
||||
searchList () {
|
||||
this.pkId = ''
|
||||
this.pkObj = {}
|
||||
@@ -178,7 +191,7 @@
|
||||
async _needEmptyAxisTest () {
|
||||
this.disabled1 = true
|
||||
try {
|
||||
let res = await needEmptyAxisTest(this.val1, this.val2)
|
||||
let res = await needEmptyAxisTest(this.val1, this.val2, this.isV)
|
||||
this.disabled1 = false
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
|
||||
Reference in New Issue
Block a user