add 子卷包装解绑 118

This commit is contained in:
2025-02-27 18:28:04 +08:00
parent 9a80f155d5
commit 433d92bf20
6 changed files with 93 additions and 2 deletions

View File

@@ -2,8 +2,8 @@
"name" : "海亮铜箔",
"appid" : "__UNI__3A002CD",
"description" : "海亮铜箔二期手持系统",
"versionName" : "1.1.7",
"versionCode" : 117,
"versionName" : "1.1.8",
"versionCode" : 118,
"transformPx" : false,
/* 5+App */
"app-plus" : {

View File

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

View File

@@ -0,0 +1,71 @@
<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>
</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}" :disabled="disabled" @tap="_toEndSub">子卷包装解绑</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {toEndSub} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
clearUp () {
this.val1 = ''
this.disabled = false
},
async _toEndSub () {
this.disabled = true
if (!this.val1) {
this.disabled = false
return
}
try {
let res = await toEndSub(this.val1)
if (res) {
this.clearUp()
uni.showToast({
title: res.message,
icon: 'none'
})
}
} catch (e) {
this.disabled = false
}
}
}
}
</script>

BIN
static/image/menu/RF15.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -420,3 +420,12 @@ export const twoBoxOut = (data) => request({
data: data
}
})
/**
* 子卷包装解绑(二期打包间管理)
*/
export const toEndSub = (code) => request({
url:'api/twoPda/vehicle/toEndSub',
data: {
container_name: code
}
})

View File

@@ -101,6 +101,9 @@ export const allAuthority = () => {
{menu_id: '8', title: '分切上轴2', path: '/pages/SecondPhase/slitting/UpperShaftCut2'},
{menu_id: '8', title: '分切呼叫送轴', path: '/pages/SecondPhase/slitting/CallShaft'}
]},
{menu_id: '10', path: 'RF15', title: '打包间管理', sonTree: [
{menu_id: '1', title: '子卷包装解绑', path: '/pages/SecondPhase/SubRollPackUnbind'}
]},
{menu_id: '6', path: 'RF04', title: '点位管理', sonTree: [
{menu_id: '1', title: '点位管理', path: '/pages/SecondPhase/point/PointManage'},
{menu_id: '2', title: '异常出库解锁', path: '/pages/SecondPhase/point/ErrorOutUnlock'},