This commit is contained in:
2025-06-18 13:38:27 +08:00
parent 9f78abce1d
commit 3e3aa08ce5
13 changed files with 149 additions and 77 deletions

View File

@@ -6,7 +6,7 @@
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">子卷号</span>
<span class="filter_label">{{$t('grid.sub-roll-number')}}</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1" @handleChange="handleChange"/>
@@ -14,7 +14,7 @@
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">管芯重量</span>
<span class="filter_label">{{$t('filter.chipweight')}}</span>
</view>
<view class="filter_input_wraper">
<input type="number" class="filter_input" v-model="val2">
@@ -22,18 +22,18 @@
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">子卷重量</span>
<span class="filter_label">{{$t('grid.sub-roll-weight')}}</span>
</view>
<view class="filter_input_wraper">
<input type="number" class="filter_input" v-model="val3">
</view>
</view>
<view class="msg_item">提示{{obj.tip}}</view>
<view class="msg_item">{{$t('grid.tip')}}{{obj.tip}}</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || (!val2 && !val3)}" :disabled="disabled" @tap="_doSubRollWeightBinding">绑定</button>
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">{{$t('button.clear')}}</button>
<button class="zd-col-15 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || (!val2 && !val3)}" :disabled="disabled" @tap="_doSubRollWeightBinding">{{$t('button.bind')}}</button>
</view>
</view>
</template>