失去焦点计算数量暂时隐藏,添加仓库名称查询
This commit is contained in:
@@ -3,20 +3,26 @@
|
||||
<nav-bar :title="crType === 'IN' ? '入库' : '出库'"></nav-bar>
|
||||
<view class="search-confirm-wrap">
|
||||
<view class="zd-row">
|
||||
<view class="zd-col-18 zd-row">
|
||||
<view class="zd-col-10"><search-box v-model="val1" /></view>
|
||||
<view class="zd-col-10 select_wraper">
|
||||
<view class="zd-col-24 zd-row">
|
||||
<view class="zd-col-8"><search-box v-model="val1" /></view>
|
||||
<view class="zd-col-7 select_wraper">
|
||||
<uni-data-select
|
||||
placeholder="请选择状态"
|
||||
v-model="value"
|
||||
:localdata="range"
|
||||
></uni-data-select>
|
||||
</view>
|
||||
<button class="confirm-button" @tap="toSearch">查询</button>
|
||||
</view>
|
||||
<view class="zd-col-6 zd-row jcflexend">
|
||||
<!-- <button class="confirm-button" :class="{'confirm-button_disabled': checkArr1.length === 0 || btnActive1}" :disabled="disabled1" @tap="toSure">单据审核</button> -->
|
||||
<button class="confirm-button" :class="{'confirm-button_disabled': checkArr1.length === 0}" :disabled="disabled1" @tap="toSure">单据审核</button>
|
||||
<view class="zd-col-8 select_wraper">
|
||||
<uni-data-select
|
||||
placeholder="请选择仓库名称"
|
||||
v-model="value1"
|
||||
:localdata="range1"
|
||||
></uni-data-select>
|
||||
</view>
|
||||
</view>
|
||||
<button class="confirm-button mgr30" @tap="toSearch">查询</button>
|
||||
<!-- <button class="confirm-button" :class="{'confirm-button_disabled': checkArr1.length === 0 || btnActive1}" :disabled="disabled1" @tap="toSure">单据审核</button> -->
|
||||
<button class="confirm-button" :class="{'confirm-button_disabled': checkArr1.length === 0}" :disabled="disabled1" @tap="toSure">单据审核</button>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd-row jcflexstart table-title_wraper">{{title}}</view>
|
||||
@@ -125,9 +131,12 @@
|
||||
v-model="ele.kwbm"
|
||||
/>
|
||||
</view>
|
||||
<view class="zd-col-4 zd-sec-td zd-pop-td">
|
||||
<!-- <view class="zd-col-4 zd-sec-td zd-pop-td">
|
||||
<input v-show="!ele.checked" type="number" class="pop-input" v-model="ele.sysl" @blur="handleBlur(ele)">
|
||||
<text v-show="ele.checked">{{ele.sysl}}</text>
|
||||
</view> -->
|
||||
<view class="zd-col-4 zd-sec-td zd-pop-td">
|
||||
<input type="number" class="pop-input" v-model="ele.sysl">
|
||||
</view>
|
||||
<view class="zd-col-4 zd-sec-td zd-pop-td"><text>{{ele.kcsl}}</text></view>
|
||||
</view>
|
||||
@@ -205,7 +214,9 @@
|
||||
delShow: false,
|
||||
detailObj: {},
|
||||
value: '',
|
||||
range:[{value: 1, text: '提交'}, {value: 2, text: '审核'}]
|
||||
range:[{value: 1, text: '提交'}, {value: 2, text: '审核'}],
|
||||
value1: '',
|
||||
range1: [{value: '3.03.013', text: '三期原材料库'}]
|
||||
};
|
||||
},
|
||||
onShow() {
|
||||
@@ -236,7 +247,7 @@
|
||||
this._easOutInBillPage()
|
||||
},
|
||||
async _easOutInBillPage () {
|
||||
let res = await easOutInBillPage(this.val1, this.id, this.value, this.queryParams1.pageNum + '', this.queryParams1.pageSize + '')
|
||||
let res = await easOutInBillPage(this.val1, this.id, this.value, this.value1, this.queryParams1.pageNum + '', this.queryParams1.pageSize + '')
|
||||
if (res.code === 1) {
|
||||
this.checkArr1 = []
|
||||
res.result.map(el => {
|
||||
@@ -473,6 +484,8 @@
|
||||
|
||||
<style lang="stylus" scoped>
|
||||
@import '../../common/style/mixin.styl';
|
||||
.mgr30
|
||||
margin-right 30rpx
|
||||
.select_wraper
|
||||
/deep/ .uni-select__selector
|
||||
z-index 11
|
||||
|
||||
Reference in New Issue
Block a user