Files
hht-tongbo/pages/ProductManage/SboProdProgress.vue

160 lines
4.0 KiB
Vue
Raw Normal View History

2022-10-11 08:39:10 +08:00
<template>
2022-10-15 15:29:58 +08:00
<view class="zd_container">
2022-10-12 15:14:01 +08:00
<nav-bar title="生箔生产进度"></nav-bar>
2022-10-15 15:29:58 +08:00
<view class="zd_content">
<view class="zd_wrapper">
2023-02-21 17:15:10 +08:00
<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>
2022-10-12 15:14:01 +08:00
<view class="filter_item">
<view class="filter_label_wraper">
2022-12-12 10:03:29 +08:00
<span class="filter_label">点位</span>
2022-10-12 15:14:01 +08:00
</view>
<view class="filter_input_wraper">
2022-10-15 11:07:18 +08:00
<search-box v-model="val1" />
2022-10-12 15:14:01 +08:00
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">母卷</span>
</view>
<view class="filter_input_wraper">
2022-10-12 17:12:45 +08:00
<search-box v-model="val2" />
</view>
</view>
2022-10-12 15:14:01 +08:00
</view>
2022-10-15 15:29:58 +08:00
<view class="zd_wrapper grid-wraper">
2022-10-12 15:14:01 +08:00
<view class="slide_new">
<table>
<thead>
<tr>
<th>母卷号</th>
<th>开始时间</th>
<th>预计结束时间</th>
<th>机台编码</th>
2022-12-12 10:03:29 +08:00
<th>点位编码</th>
2022-10-12 15:14:01 +08:00
<th>产品编码</th>
<th>理论长度</th>
<th>工单号</th>
2022-12-12 10:42:31 +08:00
<th>剩余时间()</th>
2022-10-12 15:14:01 +08:00
</tr>
</thead>
<tbody>
2022-10-15 14:06:55 +08:00
<tr v-for="(e, i) in dataList" :key="i" :class="['bgred', 'bgyellow'][Number(e.color_type) - 1]">
2022-10-12 15:14:01 +08:00
<td>{{e.container_name}}</td>
<td>{{e.up_coiler_date}}</td>
<td>{{e.end_date}}</td>
2022-12-12 10:03:29 +08:00
<td>{{e.resource_name}}</td>
2022-10-12 15:14:01 +08:00
<td>{{e.point_code}}</td>
<td>{{e.pcsn}}</td>
<td>{{e.product_name}}</td>
<td>{{e.mfg_order_name}}</td>
2022-12-12 10:42:31 +08:00
<td>{{e.remaining_time}}</td>
2022-10-12 15:14:01 +08:00
</tr>
</tbody>
</table>
</view>
</view>
2022-12-08 16:22:27 +08:00
<uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/>
2022-10-12 15:14:01 +08:00
</view>
<view class="submit-bar">
2022-12-09 10:29:28 +08:00
<button class="submit-button" @tap="searchList">查询</button>
2022-10-12 15:14:01 +08:00
</view>
2022-10-11 08:39:10 +08:00
</view>
</template>
<script>
2022-10-12 15:14:01 +08:00
import NavBar from '@/components/NavBar.vue'
2022-10-12 17:12:45 +08:00
import SearchBox from '@/components/SearchBox.vue'
import {queryProductArea, queryRawFoil} from '@/utils/getData1.js'
2022-10-11 08:39:10 +08:00
export default {
2022-10-12 15:14:01 +08:00
components: {
2022-10-12 17:12:45 +08:00
NavBar,
SearchBox
2022-10-12 15:14:01 +08:00
},
2022-10-11 08:39:10 +08:00
data() {
return {
2022-10-12 17:12:45 +08:00
val1: '',
val2: '',
options: [],
index: '',
2022-12-08 16:22:27 +08:00
dataList: [],
reload: false,
status: 'more',
contentText: {
contentdown: '查看更多',
contentrefresh: '加载中',
contentnomore: '没有更多'
},
totalCount: 0,
pageNum: 1,
pageSize: 10
2022-10-11 08:39:10 +08:00
};
2022-10-12 15:14:01 +08:00
},
2022-10-12 17:12:45 +08:00
created () {
2022-10-15 10:36:35 +08:00
this._queryRawFoil()
2022-10-12 17:12:45 +08:00
this._queryProductArea()
},
2022-10-12 15:14:01 +08:00
methods: {
2022-10-12 17:12:45 +08:00
handleChange (e) {
console.log(e)
},
/** 选择器 */
selectChange(e) {
this.index = e
},
2022-12-09 10:29:28 +08:00
searchList () {
this.dataList = []
2022-12-12 09:55:21 +08:00
this.pageNum = 1
2022-12-09 10:29:28 +08:00
this._queryRawFoil()
},
2022-10-12 17:12:45 +08:00
/** 生产区域下拉框查询 */
async _queryProductArea () {
let res = await queryProductArea()
2022-10-14 09:46:35 +08:00
this.options = [...res.data]
2022-10-12 17:12:45 +08:00
},
2022-10-14 09:46:35 +08:00
/** 初始化查询 */
2022-10-12 17:12:45 +08:00
async _queryRawFoil () {
2022-12-08 16:22:27 +08:00
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'
}
2022-10-12 17:12:45 +08:00
}
2022-10-11 08:39:10 +08:00
}
}
</script>
<style lang="stylus">
2022-10-15 15:17:49 +08:00
.slide_new table td:nth-child(1), .slide_new table th:nth-child(1)
box-shadow 1px 0 2px rgba(0,0,0,.12)
2022-10-15 14:06:55 +08:00
.bgred td
background-color #ff6a00
color #ffffff
.bgyellow td
background-color #E9B451
2022-10-11 08:39:10 +08:00
</style>