2022-10-11 08:39:10 +08:00
|
|
|
<template>
|
2022-10-12 15:14:01 +08:00
|
|
|
<view class="container">
|
|
|
|
|
<nav-bar title="生箔生产进度"></nav-bar>
|
|
|
|
|
<view class="content">
|
|
|
|
|
<view class="wrapper">
|
|
|
|
|
<view class="filter_item">
|
|
|
|
|
<view class="filter_label_wraper">
|
|
|
|
|
<span class="filter_label">设备</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="filter_input_wraper">
|
|
|
|
|
<input type="text" class="filter_input">
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="filter_item">
|
|
|
|
|
<view class="filter_label_wraper">
|
|
|
|
|
<span class="filter_label">母卷</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="filter_input_wraper">
|
|
|
|
|
<input type="text" class="filter_input">
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="wrapper grid-wraper">
|
|
|
|
|
<view class="slide_new">
|
|
|
|
|
<table>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>母卷号</th>
|
|
|
|
|
<th>开始时间</th>
|
|
|
|
|
<th>预计结束时间</th>
|
|
|
|
|
<th>机台编码</th>
|
|
|
|
|
<th>产品编码</th>
|
|
|
|
|
<th>理论长度</th>
|
|
|
|
|
<th>工单号</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr v-for="(e, i) in dataList" :key="i">
|
|
|
|
|
<td>{{e.container_name}}</td>
|
|
|
|
|
<td>{{e.up_coiler_date}}</td>
|
|
|
|
|
<td>{{e.end_date}}</td>
|
|
|
|
|
<td>{{e.point_code}}</td>
|
|
|
|
|
<td>{{e.pcsn}}</td>
|
|
|
|
|
<td>{{e.product_name}}</td>
|
|
|
|
|
<td>{{e.mfg_order_name}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="submit-bar">
|
|
|
|
|
<button class="submit-button">查询</button>
|
|
|
|
|
</view>
|
2022-10-11 08:39:10 +08:00
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-10-12 15:14:01 +08:00
|
|
|
import {queryProductArea, queryRawFoil} from '@/utils/getData1.js'
|
|
|
|
|
import NavBar from '@/components/NavBar.vue'
|
2022-10-11 08:39:10 +08:00
|
|
|
export default {
|
2022-10-12 15:14:01 +08:00
|
|
|
components: {
|
|
|
|
|
NavBar
|
|
|
|
|
},
|
2022-10-11 08:39:10 +08:00
|
|
|
data() {
|
|
|
|
|
return {
|
2022-10-12 15:14:01 +08:00
|
|
|
dataList: [{container_name: '1111111'}]
|
2022-10-11 08:39:10 +08:00
|
|
|
};
|
2022-10-12 15:14:01 +08:00
|
|
|
},
|
|
|
|
|
methods: {
|
2022-10-11 08:39:10 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="stylus">
|
2022-10-12 15:14:01 +08:00
|
|
|
.grid-wraper
|
|
|
|
|
height calc(100% - 238rpx)
|
2022-10-11 08:39:10 +08:00
|
|
|
</style>
|
2022-10-12 15:14:01 +08:00
|
|
|
|