多个功能修改

This commit is contained in:
2025-06-12 18:20:58 +08:00
parent 32dbc00bbe
commit 89c0f32aa6
12 changed files with 407 additions and 28 deletions

View File

@@ -33,7 +33,7 @@
<span class="filter_label filter_input_disabled">单位</span>
</view>
<view class="zd-col-24">
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.unit_id" disabled>
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.unit_name" disabled>
</view>
</view>
<view class="zd-row border-bottom">
@@ -41,7 +41,7 @@
<span class="filter_label">物料单重</span>
</view>
<view class="zd-col-24">
<input type="number" class="filter_input" v-model="currentData.single_weight">
<NumberInput v-model="currentData.single_weight" />
</view>
</view>
<view class="zd-row border-bottom">
@@ -57,7 +57,7 @@
<span class="filter_label">物料数量</span>
</view>
<view class="zd-col-24">
<input type="number" class="filter_input" v-model="currentData.qty">
<NumberInput v-model="currentData.qty" />
</view>
</view>
<view class="zd-row border-bottom">
@@ -89,11 +89,13 @@
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import NumberInput from '@/components/NumberInput.vue'
import {storList, groupMaterIn} from '@/utils/getData2.js'
export default {
components: {
NavBar,
SearchBox
SearchBox,
NumberInput
},
data() {
return {