add 呼叫套轴

This commit is contained in:
2025-07-11 09:52:45 +08:00
parent fa6194b565
commit b53324d8ca
4 changed files with 177 additions and 0 deletions

View File

@@ -703,6 +703,14 @@
} }
} }
,{
"path" : "pages/SecondPhase/slitting/CallAxis",
"style" :
{
"navigationStyle": "custom"
}
}
], ],
"globalStyle": { "globalStyle": {
// "pageOrientation": "landscape", // "pageOrientation": "landscape",

View File

@@ -0,0 +1,153 @@
<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="index2" :localdata="options2" @change="selectChange2"></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 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>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.workorder_id === pkId}">
<td>{{e.resource_name}}</td>
<td>{{e.container_name}}</td>
<td>{{e.parent_container_name}}</td>
<td>{{e.split_group}}</td>
<td>{{e.up_or_down}}</td>
<td>{{['未呼叫', '已呼叫'][Number(e.status)]}}</td>
<td>{{e.qzz_size}}</td>
<td>{{e.start_time}}</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': !index || !pkId}" :disabled="disabled" @tap="_doCallTubeShaft">确认</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryProductArea} from '@/utils/getData2.js'
import {slitterDevices, doCallTubeShaftShow, doCallTubeShaft} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
options: [],
index: '',
options2: [],
index2: '',
dataList: [],
pkId: '',
pkObj: {},
disabled: false
};
},
onLoad (options) {
this.title = options.title
this._queryProductArea()
this._doCallTubeShaftShow()
},
methods: {
selectChange2(e) {
this.index2 = e
if (e) {
this._slitterDevices(e)
} else {
this.index = ''
}
},
/** 生产区域下拉框查询 */
async _queryProductArea () {
let res = await queryProductArea()
this.options2 = [...res.data]
},
async _slitterDevices (e) {
let res = await slitterDevices(e)
this.options = [...res]
},
selectChange (e) {
this.index = e
},
async _doCallTubeShaftShow () {
try {
let res = await doCallTubeShaftShow()
if (res) {
this.dataList = [...res]
} else {
this.dataList = []
}
} catch (e) {
this.dataList = []
}
},
toCheck (e) {
this.pkId = this.pkId === e.workorder_id ? '' : e.workorder_id
this.pkObj = this.pkId === e.workorder_id ? e : {}
},
async _doCallTubeShaft () {
this.disabled = true
if (!this.index || !this.pkId) {
this.disabled = false
return
}
try {
let res = await doCallTubeShaft(this.index, this.pkObj)
if (res) {
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
this._doCallTubeShaftShow()
}
this.disabled = false
} catch (e) {
this.disabled = false
}
},
clearUp () {
this.index = ''
this.index2 = ''
this.options = []
this.pkId = ''
this.pkObj = {}
}
}
}
</script>

View File

@@ -569,3 +569,14 @@ export const cutCacheInventory = (code, type) => request({
url:'/api/pda/slitter/cutCacheInventory', url:'/api/pda/slitter/cutCacheInventory',
data: {point_code: code, type: type} data: {point_code: code, type: type}
}) })
/**
* 呼叫套轴
*/
export const doCallTubeShaftShow = () => request({
url:'api/pda/slitter/doCallTubeShaftShow',
data: {}
})
export const doCallTubeShaft = (code, row) => request({
url:'api/pda/slitter/doCallTubeShaft',
data: {device_code: code, row: row}
})

View File

@@ -110,6 +110,7 @@ export const allAuthority = () => {
{menu_id: '8', title: '空轴绑定', path: '/pages/SecondPhase/slitting/EmptyAxisBind'}, {menu_id: '8', title: '空轴绑定', path: '/pages/SecondPhase/slitting/EmptyAxisBind'},
{menu_id: '8', title: '空轴退回', path: '/pages/SecondPhase/slitting/EmptyAxisReturn'}, {menu_id: '8', title: '空轴退回', path: '/pages/SecondPhase/slitting/EmptyAxisReturn'},
{menu_id: '8', title: '分切暂存维护', path: '/pages/SecondPhase/slitting/CacheSave'}, {menu_id: '8', title: '分切暂存维护', path: '/pages/SecondPhase/slitting/CacheSave'},
{menu_id: '8', title: '呼叫套轴', path: '/pages/SecondPhase/slitting/CallAxis'}
]}, ]},
{menu_id: '10', path: 'RF15', title: '打包间管理', sonTree: [ {menu_id: '10', path: 'RF15', title: '打包间管理', sonTree: [
{menu_id: '1', title: '子卷包装解绑', path: '/pages/SecondPhase/SubRollPackUnbind'}, {menu_id: '1', title: '子卷包装解绑', path: '/pages/SecondPhase/SubRollPackUnbind'},
@@ -282,3 +283,7 @@ export const showManualView = (code) => {
let res = [{resource_name: 'B60FQ00003', up_or_down: '1', qzz_size: '6', status: '01', qzz_generation: '5', start_time: '2025-03-11 15:24:26'}] let res = [{resource_name: 'B60FQ00003', up_or_down: '1', qzz_size: '6', status: '01', qzz_generation: '5', start_time: '2025-03-11 15:24:26'}]
return res return res
} }
export const doCallTubeShaftShow = () => {
let res = [{"workorder_id":"1850909252072378369","resource_name":"B50FQ00001","container_name":"BB3X2410280807A2","parent_container_name":"BB3X24102809","split_group":"A","up_or_down":"2","status":"0","qzz_size":"6","tube":"玻璃纤维及其制品|FRP管|6英寸|15|1700|阶梯","qzz_generation":"4","start_time":"","is_paper_ok":"1","qzzno":"","manufacture_sort":"P1"}]
return res
}