169 lines
4.3 KiB
Vue
169 lines
4.3 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<!-- <nav-bar title="生箔生产进度"></nav-bar> -->
|
|
<nav-bar :title="title"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper">
|
|
<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 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>
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>母卷号</th>
|
|
<th>开始时间</th>
|
|
<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" :class="['bgred', 'bgyellow'][Number(e.color_type) - 1]">
|
|
<td>{{e.container_name}}</td>
|
|
<td>{{e.up_coiler_date}}</td>
|
|
<td>{{e.end_date}}</td>
|
|
<td>{{e.resource_name}}</td>
|
|
<td>{{e.point_code}}</td>
|
|
<td>{{e.pcsn}}</td>
|
|
<td>{{e.product_name}}</td>
|
|
<td>{{e.mfg_order_name}}</td>
|
|
<td>{{e.remaining_time}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
<uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/>
|
|
</view>
|
|
<view class="zd-row submitbar">
|
|
<button class="zd-col-22 btn-submit btn-success" @tap="searchList">查询</button>
|
|
</view>
|
|
<up-top ref="UT" :scrollTop="top"></up-top>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import UpTop from '@/components/upTop.vue'
|
|
import {queryProductArea, queryRawFoil} from '@/utils/getData1.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox,
|
|
UpTop
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
top: 0,
|
|
val1: '',
|
|
val2: '',
|
|
options: [],
|
|
index: '',
|
|
dataList: [],
|
|
reload: false,
|
|
status: 'more',
|
|
contentText: {
|
|
contentdown: '查看更多',
|
|
contentrefresh: '加载中',
|
|
contentnomore: '没有更多'
|
|
},
|
|
totalCount: 0,
|
|
pageNum: 1,
|
|
pageSize: 10
|
|
};
|
|
},
|
|
onPageScroll(e) {
|
|
this.$refs.UT.topData(e.scrollTop)
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
created () {
|
|
this._queryRawFoil()
|
|
this._queryProductArea()
|
|
},
|
|
methods: {
|
|
handleChange (e) {
|
|
console.log(e)
|
|
},
|
|
/** 选择器 */
|
|
selectChange(e) {
|
|
this.index = e
|
|
},
|
|
searchList () {
|
|
this.dataList = []
|
|
this.pageNum = 1
|
|
this._queryRawFoil()
|
|
},
|
|
/** 生产区域下拉框查询 */
|
|
async _queryProductArea () {
|
|
let res = await queryProductArea()
|
|
this.options = [...res.data]
|
|
},
|
|
/** 初始化查询 */
|
|
async _queryRawFoil () {
|
|
let res = await queryRawFoil(this.val1, this.val2, this.index, this.pageNum + '', this.pageSize + '')
|
|
this.totalCount = res.size
|
|
if (res.size > 0) {
|
|
const dataMap = res.data
|
|
this.dataList = this.reload ? dataMap : this.dataList.concat(dataMap)
|
|
this.reload = false
|
|
} else {
|
|
this.dataList = []
|
|
}
|
|
if (this.totalCount == this.dataList.length) {
|
|
this.reload = false
|
|
this.status = 'noMore'
|
|
}
|
|
|
|
},
|
|
onReachBottom () {
|
|
if (this.totalCount > this.dataList.length) {
|
|
this.status = 'loading'
|
|
setTimeout(() => {
|
|
this.pageNum++
|
|
this._queryRawFoil()
|
|
}, 1000)
|
|
} else { //停止加载
|
|
this.status = 'noMore'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.slide_new table .bgred td:first-child
|
|
background-image linear-gradient(to right,#E9B451,#fff)
|
|
.slide_new table .bgyellow td:first-child
|
|
background-image linear-gradient(to right,#c2cde3,#fff)
|
|
</style>
|