生箔生产工序

This commit is contained in:
2024-01-16 15:17:38 +08:00
parent fe83071d9f
commit a4e4a3eec2

View File

@@ -4,14 +4,16 @@
<view class="zd_content"> <view class="zd_content">
<view class="zd_wrapper"> <view class="zd_wrapper">
<view class="filter_item"> <view class="filter_item">
<view class="filter_label">区域</view> <!-- <view class="filter_label">区域</view> -->
<view class="filter_label">{{$t('filter.area')}}</view>
<view class="filter_input_wraper"> <view class="filter_input_wraper">
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select> <uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
</view> </view>
</view> </view>
<view class="filter_item"> <view class="filter_item">
<view class="filter_label_wraper"> <view class="filter_label_wraper">
<span class="filter_label">点位</span> <!-- <span class="filter_label">点位</span> -->
<span class="filter_label">{{$t('filter.point')}}</span>
</view> </view>
<view class="filter_input_wraper"> <view class="filter_input_wraper">
<search-box v-model="val1" /> <search-box v-model="val1" />
@@ -19,7 +21,8 @@
</view> </view>
<view class="filter_item"> <view class="filter_item">
<view class="filter_label_wraper"> <view class="filter_label_wraper">
<span class="filter_label">母卷</span> <!-- <span class="filter_label">母卷</span> -->
<span class="filter_label">{{$t('filter.mother-roll')}}</span>
</view> </view>
<view class="filter_input_wraper"> <view class="filter_input_wraper">
<search-box v-model="val2" /> <search-box v-model="val2" />
@@ -31,7 +34,7 @@
<table> <table>
<thead> <thead>
<tr> <tr>
<th>母卷号</th> <!-- <th>母卷号</th>
<th>开始时间</th> <th>开始时间</th>
<th>预计结束时间</th> <th>预计结束时间</th>
<th>机台编码</th> <th>机台编码</th>
@@ -39,7 +42,16 @@
<th>产品编码</th> <th>产品编码</th>
<th>理论长度</th> <th>理论长度</th>
<th>工单号</th> <th>工单号</th>
<th>剩余时间()</th> <th>剩余时间()</th> -->
<th>{{$t('grid.mother-roll-number')}}</th>
<th>{{$t('grid.start-time')}}</th>
<th>{{$t('grid.expected-end-time')}}</th>
<th>{{$t('grid.machine-code')}}</th>
<th>{{$t('grid.point-code')}}</th>
<th>{{$t('grid.product-code')}}</th>
<th>{{$t('grid.theoretical-length')}}</th>
<th>{{$t('grid.work-order-number')}}</th>
<th>{{$t('grid.remain-time')}}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -61,7 +73,7 @@
<uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/> <uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/>
</view> </view>
<view class="submit-bar"> <view class="submit-bar">
<button class="submit-button" @tap="searchList">查询</button> <button class="submit-button" @tap="searchList">{{$t('button.search')}}</button>
</view> </view>
</view> </view>
</template> </template>