This commit is contained in:
2025-09-26 15:22:04 +08:00
parent efc5313f80
commit 9d9f3bd270
23 changed files with 684 additions and 207 deletions

View File

@@ -6,7 +6,8 @@
<view class="zd_wrapper">
<view class="zd-row border-bottom">
<view class="zd-col-8">
<span class="filter_label">区域</span>
<!-- <span class="filter_label">区域</span> -->
<span class="filter_label">{{$t('filter.area')}}</span>
</view>
<view class="zd-col-16">
<search-box
@@ -17,15 +18,17 @@
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">物料</span>
<!-- <span class="filter_label">物料</span> -->
<span class="filter_label">{{$t('filter.material')}}</span>
</view>
<view class="zd-col-24 filter_select">
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
<uni-data-select v-model="index" :localdata="options" placeholder="" @change="selectChange"></uni-data-select>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-6">
<span class="filter_label">用料数量</span>
<!-- <span class="filter_label">用料数量</span> -->
<span class="filter_label">{{$t('filter.material-use-number')}}</span>
</view>
<view class="zd-col-16">
<input type="number" v-model="val3" class="filter_input">
@@ -33,18 +36,21 @@
<view class="zd-col-2"><span class="filter_unit">{{unit}}</span></view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">叫料托盘数</span>
<view class="zd-col-10">
<!-- <span class="filter_label">叫料托盘数</span> -->
<span class="filter_label">{{$t('filter.callmater-pallet-number')}}</span>
</view>
<view class="zd-col-17">
<view class="zd-col-14">
<input type="number" class="filter_input" v-model="val2">
</view>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
<button class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2 || !index}" :disabled="disabled" @tap="_loading">确认</button>
<!-- <button class="zd-col-6 button-default" @tap="clearUp">清空</button>
<button class="zd-col-16 button-primary" :class="{'button-info': !val1 || !val2 || !index}" :disabled="disabled" @tap="_loading">确认</button> -->
<button class="zd-col-8 button-default" @tap="clearUp">{{$t('button.clear')}}</button>
<button class="zd-col-14 button-primary" :class="{'button-info': !val1 || !val2 || !index}" :disabled="disabled" @tap="_loading">{{$t('button.confirm')}}</button>
</view>
</view>
</template>