This commit is contained in:
2025-06-13 17:46:05 +08:00
parent 6aa55bb786
commit 4b427a7ad7
3 changed files with 116 additions and 118 deletions

View File

@@ -18,20 +18,6 @@
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
</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" v-model="val3"> -->
<number-input
v-model="numberValue"
:min="0"
:max="999.999"
input-class="filter_input"
/>
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
@@ -86,7 +72,6 @@
},
data() {
return {
numberValue: 1,
// val3: '',
title: '',
top: 0,
@@ -111,7 +96,7 @@
/** 区域下拉框查询 */
async _queryProductArea () {
let res = await queryProductArea()
this.options1 = [...res.data]
this.options1 = [...res.rows]
},
selectChange1(e) {
this.index1 = e
@@ -124,7 +109,7 @@
/** 管芯规格下拉框 */
async _queryPaperMaterial (e) {
let res = await queryPaperMaterial(e)
this.options2 = [...res.data]
this.options2 = [...res.rows]
},
selectChange2(e) {
this.index2 = e