This commit is contained in:
2025-01-15 15:45:01 +08:00
commit bb77f9bd85
216 changed files with 33343 additions and 0 deletions

View File

@@ -0,0 +1,160 @@
<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_wraper">
<span class="filter_label">点位</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1" @handleChange="handleChange1"/>
</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">
<input type="text" class="filter_input" v-model="val3">
</view>
</view>
<view class="filter_item">
<view class="filter_label">时间</view>
<view class="filter_input_wraper">
<input type="text" class="filter_input" v-model="val4">
</view>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-5 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || !val2 || !val3 || !val4}" :disabled="disabled" @tap="_ovenInAndOut1('1')">入箱</button>
<button class="zd-col-5 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || !val2}" :disabled="disabled" @tap="_ovenInAndOut2('2')">出箱</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" :disabled="disabled3" @tap="_inCoolIvt">质检合格</button>
<button class="zd-col-5 btn-submit btn-success letter-30" :class="{'btn-info': !val1}" :disabled="disabled4" @tap="_bakingrelease">解警</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {ovenInAndOut, inCoolIvt, bakingrelease, bakingquery} from '@/utils/getData1.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
val3: '',
val4: '',
disabled: false,
disabled3: false,
disabled4: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
handleChange1 (e) {
this._bakingquery(e)
},
/** 查询 */
async _bakingquery (val1) {
if (!val1) {
return
}
let res = await bakingquery(val1)
this.val2 = res.data.container_name
},
async _ovenInAndOut1 (type) {
this.disabled = true
if (!this.val1 || !this.val2 ||!this.val3 || !this.val4) {
this.disabled = false
return
}
try {
let res = await ovenInAndOut(this.val1, this.val2,this.val3, this.val4, type)
uni.showToast({
title: res.message,
icon: 'none'
})
this.val1 = ''
this.val2 = ''
this.val3 = ''
this.val4 = ''
this.disabled = false
} catch (e) {
this.disabled = false
}
},
async _ovenInAndOut2 (type) {
this.disabled = true
if (!this.val1 || !this.val2) {
this.disabled = false
return
}
try {
let res = await ovenInAndOut(this.val1, this.val2,'', '', type)
uni.showToast({
title: res.message,
icon: 'none'
})
this.val1 = ''
this.val2 = ''
this.val3 = ''
this.val4 = ''
this.disabled = false
} catch (e) {
this.disabled = false
}
},
async _inCoolIvt () {
this.disabled3 = true
if (!this.val1 || !this.val2) {
this.disabled3 = false
return
}
try {
let res = await inCoolIvt(this.val1, this.val2)
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled3 = false
} catch (e) {
this.disabled3 = false
}
},
async _bakingrelease () {
this.disabled4 = true
if (!this.val1) {
this.disabled4 = false
return
}
try {
let res = await bakingrelease(this.val1)
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled4 = false
} catch (e) {
this.disabled4 = false
}
}
}
}
</script>

View File

@@ -0,0 +1,96 @@
<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_wraper">
<span class="filter_label">子卷号</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1" @handleChange="handleChange" />
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>木箱号</th>
<th>木箱编码</th>
<th>点位</th>
<th>木箱规格</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<td>{{e.box_no}}</td>
<td>{{e.material_name}}</td>
<td>{{e.struct_code}}</td>
<td>{{e.material_code}}</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-6 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success letter-30" @tap="toSure">查询</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 {woodenBoxPoint} from '@/utils/getData1.js'
export default {
components: {
NavBar,
SearchBox,
UpTop
},
data() {
return {
title: '',
top: 0,
val1: '',
dataList: []
};
},
onLoad (options) {
this.title = options.title
},
methods: {
handleChange (e) {
this._woodenBoxPoint(e)
},
clearUp () {
this.val1 = ''
this.dataList = []
},
toSure () {
this._woodenBoxPoint()
},
async _woodenBoxPoint (e) {
let res = await woodenBoxPoint(this.val1)
if (res.content.length) {
this.dataList = [...res.content]
}
}
}
}
</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>

View File

@@ -0,0 +1,157 @@
<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_wraper">
<span class="filter_label">点位</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1" @handleChange="handleChange1"/>
</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">
<input type="text" class="filter_input" v-model="val3">
</view>
</view>
<view class="filter_item">
<view class="filter_label">时间</view>
<view class="filter_input_wraper">
<input type="text" class="filter_input" v-model="val4">
</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="val5" />
</view>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-7 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || !val2 || !val5}" :disabled="disabled" @tap="_handleBakingovenInAndOut1('1')">入箱</button>
<button class="zd-col-7 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || !val2 || !val5}" :disabled="disabled" @tap="_handleBakingovenInAndOut2('2')">出箱</button>
<button class="zd-col-7 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" :disabled="disabled3" @tap="_handleBakingcheckConfirm">质检合格</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {handleBakingovenInAndOut, handleBakingcheckConfirm, bakingquery} from '@/utils/getData1.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
val3: '',
val4: '',
val5: '',
disabled: false,
disabled3: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
handleChange1 (e) {
this._bakingquery(e)
},
/** 查询 */
async _bakingquery (val1) {
if (!val1) {
return
}
let res = await bakingquery(val1)
this.val2 = res.data.container_name
},
async _handleBakingovenInAndOut1 (type) {
this.disabled = true
if (!this.val1 || !this.val2 || !this.val5) {
this.disabled = false
return
}
try {
let res = await handleBakingovenInAndOut(this.val1, this.val2,this.val3, this.val4, this.val5, type)
uni.showToast({
title: res.message,
icon: 'none'
})
this.val1 = ''
this.val2 = ''
this.val3 = ''
this.val4 = ''
this.val5 = ''
this.disabled = false
} catch (e) {
this.disabled = false
}
},
async _handleBakingovenInAndOut2 (type) {
this.disabled = true
if (!this.val1 || !this.val2 || !this.val5) {
this.disabled = false
return
}
try {
let res = await handleBakingovenInAndOut(this.val1, this.val2, '', '', this.val5, type)
uni.showToast({
title: res.message,
icon: 'none'
})
this.val1 = ''
this.val2 = ''
this.val3 = ''
this.val4 = ''
this.val5 = ''
this.disabled = false
} catch (e) {
this.disabled = false
}
},
async _handleBakingcheckConfirm () {
this.disabled3 = true
if (!this.val1 || !this.val2) {
this.disabled3 = false
return
}
try {
let res = await handleBakingcheckConfirm(this.val1, this.val2)
uni.showToast({
title: res.message,
icon: 'none'
})
this.val1 = ''
this.val2 = ''
this.val3 = ''
this.val4 = ''
this.val5 = ''
this.disabled3 = false
} catch (e) {
this.disabled3 = false
}
}
}
}
</script>

View File

@@ -0,0 +1,100 @@
<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_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">打印机</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
</view>
</view>
<view class="filter_item">
<view class="filter_label">标签类型</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
</view>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || !index1 || !index2}" :disabled="disabled" @tap="_printTable">打印</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {getPrint, printTable} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
options1: [],
index1: '',
options2: [{value: '1', text: '内标'}, {value: '2', text: '管标'}],
index2: '',
disabled: false
};
},
onLoad (options) {
this.title = options.title
this._getPrint()
},
methods: {
async _getPrint () {
let res = await getPrint()
this.options1 = [...res.data]
this.options1.map(el => {
this.$set(el, 'value', el.print_id)
this.$set(el, 'text', el.print_name)
})
},
selectChange1 (e) {
this.index1 = e
},
selectChange2 (e) {
this.index2 = e
},
async _printTable () {
this.disabled = true
if (!this.val1 || !this.index1 || !this.index2) {
this.disabled = false
return
}
try {
let res = await printTable(this.val1, this.index1, this.index2)
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
} catch (e) {
this.disabled = false
}
},
clearUp () {
this.val1 = ''
this.index1 = ''
this.index2 = ''
this.disabled = false
}
}
}
</script>

View File

@@ -0,0 +1,298 @@
<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_wraper">
<span class="filter_label">点位</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1"
/>
</view>
</view>
<view class="zd-row">
<view class="zd-col-19">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">母卷</span>
</view>
<view class="filter_input_wraper">
<search-box
ref="scanChild"
v-model="val2"
@handleChange="handleChange"
/>
</view>
</view>
</view>
<view class="zd-col-4">
<button class="btn-submit btn-success" @tap="searchList">查询</button>
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>状态</th>
<th class="th_2">母卷号</th>
<th>工单号</th>
<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" @click="toCheck(e)" :class="{'checked': e.container_name === pkId}">
<td>{{e.status_name}}</td>
<td class="td_2">{{e.container_name}}</td>
<td>{{e.mfg_order_name}}</td>
<td>{{e.point_code}}</td>
<td>{{e.product_name}}</td>
<td>{{e.theory_height}}</td>
<td>{{e.realstart_time}}</td>
<td>{{e.realend_time}}</td>
<td>{{e.productin_qty}}</td>
<td>{{e.agvno}}</td>
<td>{{e.product_area}}</td>
<td>{{e.update_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-3 btn-submit btn-success" :disabled="disabled1" @tap="_needEmptyAxis">呼叫</button>
<button class="zd-col-5 btn-submit btn-success" :disabled="disabled4" @tap="_createOrder">创建工单</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !(val1 && !pkId)}" :disabled="disabled5" @tap="_needEmptyVehicle">呼叫空轴</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="disabled2" @tap="_confirmBlanking">准备就绪</button>
<button class="zd-col-5 btn-submit btn-success" :class="{'btn-info': !pkId}" :disabled="disabled3" @tap="_finishBlanking">确认下卷</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 {queryRawFoilList, needEmptyVehicle, confirmBlanking, finishBlanking, finish} from '@/utils/getData1.js'
import {needEmptyAxis, createOrder} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox,
UpTop
},
data() {
return {
title: '',
top: 0,
val1: '',
val2: '',
dataList: [],
pkId: '',
pkObj: {},
disabled1: false,
disabled2: false,
disabled3: false,
disabled4: false,
disabled5: false,
reload: false,
status: 'more',
contentText: {
contentdown: '查看更多',
contentrefresh: '加载中',
contentnomore: '没有更多'
},
totalCount: 0,
pageNum: 1,
pageSize: 10
};
},
onLoad (options) {
this.title = options.title
},
onPageScroll(e) {
this.$refs.UT.topData(e.scrollTop)
},
created () {
// this._queryRawFoilList()
},
mounted () {
this.$refs.scanChild.handleFocus()
},
methods: {
searchList () {
this.pkId = ''
this.pkObj = {}
this.totalCount = 0
this.dataList = []
this.pageNum = 1
this._queryRawFoilList()
},
handleChange (e) {
// this.searchList()
},
/** 初始化查询 */
async _queryRawFoilList () {
let res = await queryRawFoilList(this.val1, this.val2, 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._queryRawFoilList()
}, 1000)
} else { //停止加载
this.status = 'noMore'
}
},
/** 呼叫 */
async _needEmptyAxis () {
this.disabled1 = true
try {
let res = await needEmptyAxis(this.val1, this.val2)
this.disabled1 = false
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled1 = false
}
},
/** 创建工单 */
async _createOrder () {
this.disabled4 = true
try {
let res = await createOrder(this.val1, this.val2)
this.disabled4 = false
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled4 = false
}
},
async _needEmptyVehicle () {
this.disabled5 = true
if (!(this.val1 && !this.pkId)) {
this.disabled5 = false
return
}
try {
let res = await needEmptyVehicle(this.val1)
this.disabled5 = false
uni.showToast({
title: res.message,
icon: 'none'
})
this.val1 = ''
} catch (e) {
this.disabled5 = false
}
},
async _confirmBlanking () {
this.disabled2 = true
if (!this.pkId) {
this.disabled2 = false
return
}
try {
let res = await confirmBlanking(this.pkObj)
this.disabled2 = false
this.pkId = ''
this.pkObj = {}
this.searchList()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled2 = false
}
},
async _finishBlanking () {
this.disabled3 = true
if (!this.pkId) {
this.disabled3 = false
return
}
try {
let res = await finishBlanking(this.pkObj)
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled3 = false
this.pkId = ''
this.pkObj = {}
this.searchList()
} catch (e) {
this.disabled3 = false
}
},
async _finish () {
this.disabled4 = true
if (!this.pkId) {
this.disabled4 = false
return
}
try {
let res = await finish(this.pkObj)
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled4 = false
this.pkId = ''
this.pkObj = {}
this.searchList()
} catch (e) {
this.disabled4 = false
}
},
toCheck (e) {
this.pkId = this.pkId === e.container_name ? '' : e.container_name
this.pkObj = this.pkId === e.container_name ? e : {}
},
cleanUp () {
this.val1 = ''
this.val2 = ''
this.pkId = ''
this.pkObj = {}
this.totalCount = 0
this.dataList = []
this.pageNum = 1
}
}
}
</script>

View File

@@ -0,0 +1,168 @@
<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>

View File

@@ -0,0 +1,91 @@
<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_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>
<view class="zd-row submitbar">
<button class="zd-col-5 btn-submit btn-default letter-30" @tap="cleanUp">清空</button>
<button class="zd-col-6 btn-submit btn-success letter-30" :disabled="disabled" @tap="_surfaceOperate('1')">上料</button>
<button class="zd-col-6 btn-submit btn-success letter-30" :disabled="disabled" @tap="_surfaceOperate('2')">退料</button>
<button class="zd-col-6 btn-submit btn-success" :disabled="disabled" @tap="_surfaceConfirm">允许进入</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {surfaceOperate, surfaceConfirm} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
cleanUp () {
this.val1 = ''
this.val2 = ''
},
async _surfaceOperate (type) {
this.disabled = true
try {
let res = await surfaceOperate(this.val1, this.val2, type)
this.disabled = false
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled = false
}
},
async _surfaceConfirm () {
this.disabled = true
try {
let res = await surfaceConfirm(this.val1)
this.disabled = false
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled = false
}
}
}
}
</script>

View File

@@ -0,0 +1,90 @@
<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_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">管制点</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
</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>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !val1 && !index1}" :disabled="disabled" @tap="_updatePackageInfo">确认</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {updatePackageInfo} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
options: [{value: '3', text: '合格品'}, {value: '4', text: '管制品'}, {value: '0', text: '空点位'}, {value: '1', text: '有架子'}],
index: '',
options1: [{value: '1', text: '1'}, {value: '2', text: '2'}],
index1: '',
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
selectChange (e) {
this.index = e
},
selectChange1 (e) {
this.index1 = e
},
async _updatePackageInfo () {
this.disabled = true
if (!this.val1 && !this.index1) {
this.disabled = false
return
}
try {
let res = await updatePackageInfo(this.index, this.val1, this.index1)
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled = false
} catch (e) {
this.disabled = false
}
},
clearUp () {
this.val1 = ''
this.index = ''
this.index1 = ''
}
}
}
</script>

View File

@@ -0,0 +1,301 @@
<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_wraper">
<span class="filter_label">子卷号</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1" @handleChange="handleChange" />
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>选择</th>
<th class="th_2">订单号</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><span class="iconfont icon_minus-filled" @click="toCheck(e, i)">&minus;</span></td>
<td class="td_2">{{e.sale_order_name}}</td>
<td>{{e.customer_description}}</td>
<td>{{e.container_name}}</td>
<td>{{e.paper_tube_description}}</td>
<td>{{e.paper_weight}}</td>
<td>{{e.box_weight}}</td>
<td>{{e.box_type}}</td>
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success letter-30" :class="{'btn-info': !dataList.length}" @tap="toSure">组盘</button>
</view>
<view class="msg_wrapper" :class="show ? 'popshow' : 'pophide'">
<view class="pop-line"></view>
<view class="zd_wrapper-2">
<view class="zd-row filter_item">
<view :class="!disabled ? 'zd-col-18' : 'zd-col-24'">
<input type="text" placeholder="输入关键字搜索" class="filter_input" :class="{'filter_input_disabled': disabled}" :disabled="disabled" v-model="val2">
</view>
<view v-show="!disabled" class="zd-col-5"><button class="btn-submit btn-success" @tap="_queryBoxSpec">查询</button></view>
</view>
</view>
<view class="msg_content msg_content_1 pdb110">
<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>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in popData" :key="'pop' + i" @click="popCheck(e)" :class="{'checked': e.material_code === pkId}">
<td>{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.box_length}}</td>
<td>{{e.box_width}}</td>
<td>{{e.box_high}}</td>
<td>{{e.ivt_num}}</td>
<td>{{e.num}}</td>
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-success letter-30" @tap="show = false, pkId = '', pkObj = {}">取消</button>
<button class="zd-col-15 btn-submit btn-success letter-30" :class="{'btn-info': !pkId}" :disabled="disabled1" @tap="popSure">确定</button>
</view>
</view>
<view v-if="show" class="msg_mask"></view>
<view class="msg_modal" :class="modalShow ? 'popshow1' : 'pophide1'">
<view class="msg_tip">提示</view>
<view class="zd_content pdt26">
<view class="msg_p1">请仔细核对子卷与木箱规格是否匹配</view>
<view class="msg_p2">木箱规格为{{this.pkObj.material_name}},</view>
<view class="msg_p2">子卷规格为{{this.current.paper_tube_description}},</view>
<view class="msg_p1">击确定后将立即生成空木箱出库任务无法更改</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-success letter-30" @tap.stop="modalShow = false">取消</button>
<button class="zd-col-15 btn-submit btn-success letter-30" @tap="modalSure">确定</button>
</view>
</view>
<view v-if="modalShow" class="msg_mask msg_mask_1"></view>
<view class="msg_modal" :class="modalShow1 ? 'popshow1' : 'pophide1'">
<view class="msg_tip">提示</view>
<view class="zd_content pdt26">
<view class="msg_p1">请仔细核对当前扫描子卷数与木箱装卷数是否一致</view>
<view class="msg_p2">当前扫描子卷数 {{dataList.length}}该木箱装卷数为{{pkObj.num}}</view>
<view class="msg_p1">点击确定后将立即生成空木箱出库任务无法更改!</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-success letter-30" @tap.stop="modalShow1 = false">取消</button>
<button class="zd-col-15 btn-submit btn-success letter-30" @tap="modalSure1">确定</button>
</view>
</view>
<view v-if="modalShow1" class="msg_mask msg_mask_1"></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 {queryContainerNameBySaleOrder, queryBoxSpec, updateEntityList} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox,
UpTop
},
data() {
return {
title: '',
top: 0,
val1: '',
dataList: [],
popData: [],
show: false,
disabled: false,
val2: '',
pkId: '',
pkObj: {},
paper: '',
modalShow: false,
modalShow1: false,
disabled1: false
};
},
computed: {
current () {
let res = {paper_tube_description: '', sale_order_name: ''}
if (this.dataList.length > 0) {
res = this.dataList[0]
}
return res
}
},
onPageScroll(e) {
this.$refs.UT.topData(e.scrollTop)
},
onLoad (options) {
this.title = options.title
},
methods: {
handleChange (e) {
this._queryContainerNameBySaleOrder(e)
},
async _queryContainerNameBySaleOrder (e) {
let res = await queryContainerNameBySaleOrder(e)
if (res.content.length) {
if (res.content[0].paper_tube_description === null || res.content[0].paper_tube_description === '') {
uni.showToast({
title: '未查询到该子卷规格信息,请检查子卷的分切计划信息!',
icon: 'none',
duration: 5000
})
return
}
if (this.dataList.length >= 1 && res.content[0].paper_tube_description !== this.current.paper_tube_description) {
uni.showToast({
title: `扫描的规格为:${res.content[0].paper_tube_description},与列表中的子卷规格不一致,请检查!`,
icon: 'none',
duration: 5000
})
return
}
if (this.dataList.length >= 1 && res.content[0].sale_order_name !== this.current.sale_order_name) {
uni.showToast({
title: `当前扫描的订单号为:${res.content[0].sale_order_name},与列表中的订单号不一致,请检查!`,
icon: 'none',
duration: 5000
})
return
}
if (res.content[0].status !== '99') {
uni.showToast({
title: `该子卷状态为已分配木箱规格,请检查!`,
icon: 'none'
})
return
}
let flag = false
this.dataList.map(el => {
if (el.container_name === res.content[0].container_name) {
flag = true
}
})
if (flag) {
uni.showToast({
title: `该子卷已存在,请检查!`,
icon: 'none'
})
return
}
this.dataList = [...this.dataList, ...res.content]
}
},
toCheck (e, i) {
this.dataList.splice(i, 1)
},
toSure () {
if (!this.dataList.length) {
return
}
let code = ''
for (let i = 0; i < this.dataList.length; i++) {
if (this.dataList[i].box_type !== '') {
code = this.dataList[i].box_type
break
}
}
this.disabled = code !== ''
this.val2 = code
this._queryBoxSpec()
},
async _queryBoxSpec () {
let res = await queryBoxSpec(this.val2)
if (res.code === 200) {
this.popData = [...res.content]
this.show = true
}
},
clearUp () {
this.val1 = ''
this.dataList = []
this.disabled = false
this.disabled1 = false
this.show = false
this.modalShow = false
},
popCheck (e) {
this.pkId = this.pkId === e.material_code ? '' : e.material_code
this.pkObj = this.pkId === e.material_code ? e : {}
},
async _updateEntityList () {
this.disabled1 = true
try {
let res = await updateEntityList(this.pkId, this.dataList)
uni.showToast({
title: '操作成功!',
icon: 'none'
})
this.clearUp()
} catch (e) {
this.disabled1 = false
}
},
popSure () {
if (this.dataList.length > Number(this.pkObj.num)) {
uni.showToast({
title: '子卷数量超过木箱的最大装卷数!',
icon: 'none',
duration: 5000
})
return
}
if (this.dataList.length < Number(this.pkObj.num)) {
this.modalShow1 = true
return
}
this.modalShow = true
},
modalSure () {
this._updateEntityList()
this.modalShow = false
},
modalSure1 () {
this.modalShow1 = false
this.modalShow = true
}
}
}
</script>

View File

@@ -0,0 +1,125 @@
<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_wraper">
<span class="filter_label">子卷号</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1" @handleChange="handleChange" />
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>木箱码</th>
<th>子卷容量</th>
<th>产品描述</th>
<th>sap批次</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.package_box_sn}}</td>
<td>{{e.quanlity_in_box}}</td>
<td>{{e.product_description}}</td>
<td>{{e.sap_pcsn}}</td>
<td>{{e.width}}</td>
<td>{{e.box_weight}}</td>
<td>{{e.box_length}}</td>
<td>{{e.box_width}}</td>
<td>{{e.box_high}}</td>
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !arr1.length}" :disabled="disabled" @tap="_zjInBoundConfirm">装箱入库</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 {zjInBound, zjInBoundConfirm} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox,
UpTop
},
data() {
return {
title: '',
top: 0,
val1: '',
arr1: [],
dataList: [],
disabled: false
};
},
onPageScroll(e) {
this.$refs.UT.topData(e.scrollTop)
},
onLoad (options) {
this.title = options.title
},
methods: {
handleChange (e) {
let flag = this.arr1.includes(e)
if (!flag) {
this._zjInBound(e)
}
},
async _zjInBound (e) {
try {
let res = await zjInBound(e)
this.dataList = [...this.dataList, ...res.content]
this.arr1.push(e)
} catch (e) {
console.log(e)
}
},
clearUp () {
this.val1 = ''
this.arr1 = []
this.dataList = []
this.disabled = false
},
async _zjInBoundConfirm () {
this.disabled = true
if (!this.arr1.length) {
this.disabled = false
return
}
try {
let res = await zjInBoundConfirm(this.arr1.join(','))
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
} catch (e) {
this.disabled = false
}
}
}
}
</script>