缓存线盘点

This commit is contained in:
2023-03-29 11:26:08 +08:00
parent 2cd3517298
commit 0aba260ab5
11 changed files with 376 additions and 66 deletions

View File

@@ -23,11 +23,15 @@
/>
</view>
</view>
<view class="search-item search-item-btns">
<button class="confirm-button" @tap="toSearch">查询</button>
<button class="confirm-button" :disabled="disabled" @tap="toSure">确认</button>
</view>
</view>
<view class="confirm-button-wrap">
<!-- <view class="confirm-button-wrap">
<button class="confirm-button" @tap="toSearch()">查询</button>
<button class="confirm-button" :disabled="disabled" @tap="toSure()">确认</button>
</view>
</view> -->
</view>
<view class="grid-wrap">
<table class="grid-table">
@@ -82,12 +86,16 @@
disabled: false
};
},
created() {
this._getCacheLine('A1')
},
methods: {
/** 选择器1 */
selectChange1(e) {
this.index1 = e
if (this.index1) {
this._getCacheLine(e)
this.index2 = ''
}
},
/** 选择器2 */
@@ -138,9 +146,3 @@
}
}
</script>
<style lang="stylus" scoped>
@import '../../common/style/mixin.styl';
.grid-wrap
height calc(100% - 237px) /** 42+ 15*6+ 35*3 */
</style>