add套轴申请

This commit is contained in:
蔡玲
2024-12-10 16:16:38 +08:00
parent 141fab5b98
commit 3a9bce9c60
4 changed files with 226 additions and 1 deletions

View File

@@ -535,6 +535,14 @@
}
}
,{
"path" : "pages/ProductManage/AxisApply",
"style" :
{
"navigationStyle": "custom"
}
}
],
"globalStyle": {
// "pageOrientation": "landscape",

View File

@@ -0,0 +1,198 @@
<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="index1" :localdata="options1" @change="selectChange1"></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">
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></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">
<uni-data-select v-model="index3" :localdata="options3"></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">
<uni-data-select v-model="index4" :localdata="options4"></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>
<!-- <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>纸筒/FRP管</th>
<th>纸筒物料编码</th>
<th>纸筒物料描述</th>
<th>纸筒规格</th>
<th>FRP管物料编码</th>
<th>FRP管物料描述</th>
<th>FRP管规格</th>
<th>订单号</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.checked}" @tap="toCheck(e)">
<td>{{Number(i) + 1}}</td>
<td class="td_2"><span class="iconfont icon_unchecked" :class="{'icon_checked': e.checked}">&#xe66b;</span></td>
<td>{{e.qzzno}}</td>
<td>{{e.point_code}}</td>
<td>{{e.split_group}}</td>
<td>{{e.manufacture_sort}}</td>
<td>{{e.manufacture_date}}</td>
<td>{{e.container_name}}</td>
<td>{{e.paper_tube_or_FRP}}</td>
<td>{{e.paper_tube_material}}</td>
<td>{{e.paper_tube_description}}</td>
<td>{{e.paper_tube_model}}</td>
<td>{{e.FRP_material}}</td>
<td>{{e.FRP_description}}</td>
<td>{{e.FRP_model}}</td>
<td>{{e.mfg_order_name}}</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-8 btn-submit btn-success" :class="{'btn-info': !index1 || !index2}" @tap="_queryMaterialInfoL1400">查询</button> -->
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !index1 || !index3 || !index4 || !val1}" :disabled="disabled" @tap="_shaftRecedesL1400">申请退轴</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryProductArea, queryDeviceByarea, queryMaterialInfoL1400, shaftRecedesL1400} from '@/utils/getData2.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
options1: [],
index1: '',
options2: [],
index2: '',
options3: [{value: '3', text: '3寸'}, {value: '6', text: '6寸'}],
index3: '',
options4: [{value: '4', text: '4'}, {value: '5', text: '5'}],
index4: '',
dataList: [],
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._queryProductArea()
},
methods: {
/** 选择器1 */
selectChange1(e) {
this.index1 = e
if (e) {
this._queryDeviceByarea(e)
} else {
this.index2 = ''
}
},
/** 生产区域下拉框查询 */
async _queryProductArea () {
let res = await queryProductArea()
this.options1 = [...res.data]
},
/** 选择器2 */
selectChange2(e) {
this.index2 = e
},
/** 设备下拉框 */
async _queryDeviceByarea (e) {
let res = await queryDeviceByarea(e)
this.options2 = [...res.data]
},
/** 查询 */
async _queryMaterialInfoL1400 () {
if (!this.index1 || !this.index2) {
return
}
let res = await queryMaterialInfoL1400(this.index1, this.index2)
this.dataList = [...res.data]
},
async _shaftRecedesL1400 () {
this.disabled = true
if (!this.index1 || !this.index3 || !this.index4 || !this.val1) {
this.disabled = false
return
}
try {
let res = await shaftRecedesL1400(this.index1, this.index3, this.index4, this.val1)
this.disabled = false
this.toEmpty()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled = false
}
},
toEmpty () {
this.index1 = ''
this.index2 = ''
this.index3 = ''
this.index4 = ''
this.val1 = ''
this.dataList = []
},
toCheck (e) {
e.checked = !e.checked
this.checkArr = this.dataList.filter(i => { return i.checked === true })
}
}
}
</script>

View File

@@ -511,3 +511,15 @@ export const rgvStatusQuery = () => request({
url:'api/pda/task/rgvStatusQuery',
data: {}
})
/**
* 套轴申请
*/
export const queryMaterialInfoL1400 = (area, code) => request({
url:'api/pda/shipping/queryMaterialInfoL1400',
data: {product_area: area, device_code: code}
})
export const shaftRecedesL1400 = (area, size, qg, sp) => request({
url:'api/pda/shipping/shaftRecedesL1400',
data: {product_area: area, qzz_size: size, qzz_generation: qg, start_point: sp}
})

View File

@@ -20,6 +20,7 @@ export const allAuthority = () => {
{menu_id: '3', title: '空轴配送', path: '/pages/ProductManage/ZjDelivery'},
{menu_id: '4', title: '空轴进站', path: '/pages/ProductManage/ZjInStore'},
{menu_id: '5', title: '子卷出站', path: '/pages/ProductManage/ZjOutStore'},
{menu_id: '6', title: '套轴申请', path: '/pages/ProductManage/AxisApply'}
]},
{menu_id: '4', path: 'RF04', title: '点位管理', sonTree: [
{menu_id: '1', title: '点位管理', path: '/pages/ProductManage/PointManage'},
@@ -230,3 +231,9 @@ export const queryBoxSpec = () => {
}
return res
}
export const queryDeviceByarea = () => {
let res = {
data: [{value: '01', text: 'a'}, {value: '02', text: 'bc'}]
}
return res
}