115 lines
2.7 KiB
Vue
115 lines
2.7 KiB
Vue
<template>
|
|
<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">
|
|
<search-box v-model="val1" />
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">母卷</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box v-model="val2" />
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">区域</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
|
|
</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" @tap="_queryRawFoil">查询</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {queryProductArea, queryRawFoil} from '@/utils/getData1.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
val1: '',
|
|
val2: '',
|
|
options: [],
|
|
index: '',
|
|
dataList: []
|
|
};
|
|
},
|
|
created () {
|
|
this._queryProductArea()
|
|
},
|
|
methods: {
|
|
handleChange (e) {
|
|
console.log(e)
|
|
},
|
|
/** 选择器 */
|
|
selectChange(e) {
|
|
this.index = e
|
|
},
|
|
/** 生产区域下拉框查询 */
|
|
async _queryProductArea () {
|
|
let res = await queryProductArea()
|
|
this.options = [...res.data]
|
|
},
|
|
/** 初始化查询 */
|
|
async _queryRawFoil () {
|
|
let res = await _queryRawFoil(this.val1, this.val2, this.index)
|
|
this.dataList = [...res.data]
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
.slide_new table td:first-child, .slide_new table th:first-child
|
|
width 92rpx
|
|
.slide_new table td:nth-child(2), .slide_new table th:nth-child(2)
|
|
position sticky
|
|
left 92rpx
|
|
z-index 102
|
|
</style>
|