add 分切下轴
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
"button.surerolldown": "Confirm roll down",
|
||||
"button.returnaxis": "Withdrawal axis",
|
||||
"button.stockup": "Stock up",
|
||||
"button.confirmlowershaft": "Confirm axis below",
|
||||
"filter.bill-code": "Bill code",
|
||||
"filter.warehouse": "Warehouse",
|
||||
"filter.woodenbox": "Woodenbox",
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"button.surerolldown": "Buku berikutnya",
|
||||
"button.returnaxis": "Pulang",
|
||||
"button.stockup": "Persediaan",
|
||||
"button.confirmlowershaft": "Konfirmasi sumbu bawah",
|
||||
"filter.bill-code": "Kode dokumen",
|
||||
"filter.warehouse": "gudang",
|
||||
"filter.woodenbox": "Kotak kayu",
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"button.surerolldown": "确认下卷",
|
||||
"button.returnaxis": "退轴",
|
||||
"button.stockup": "备货",
|
||||
"button.confirmlowershaft": "确认下轴",
|
||||
"filter.bill-code": "单据编码",
|
||||
"filter.warehouse": "仓库",
|
||||
"filter.woodenbox": "木箱",
|
||||
|
||||
@@ -328,6 +328,14 @@
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
|
||||
}
|
||||
,{
|
||||
"path" : "pages/SecondPhase/slitting/Cutaxis",
|
||||
"style" :
|
||||
{
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
|
||||
}
|
||||
,{
|
||||
"path" : "pages/SecondPhase/slitting/RollCacheManage",
|
||||
|
||||
172
pages/SecondPhase/slitting/Cutaxis.vue
Normal file
172
pages/SecondPhase/slitting/Cutaxis.vue
Normal file
@@ -0,0 +1,172 @@
|
||||
<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">{{$t('filter.area')}}</span>
|
||||
</view>
|
||||
<view class="filter_input_wraper">
|
||||
<uni-data-select v-model="index2" :placeholder="$t('uni.dataSelect.placeholder')" :localdata="options2" @change="selectChange2"></uni-data-select>
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item">
|
||||
<!-- <view class="filter_label">设备</view> -->
|
||||
<view class="filter_label_wraper">
|
||||
<span class="filter_label">{{$t('filter.device')}}</span>
|
||||
</view>
|
||||
<view class="filter_input_wraper">
|
||||
<uni-data-select v-model="index" :placeholder="$t('uni.dataSelect.placeholder')" :localdata="options" @change="selectChange"></uni-data-select>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd_wrapper">
|
||||
<view class="zd-row">
|
||||
<view class="zd-col-19">
|
||||
<view class="filter_item">
|
||||
<view class="filter_label">{{$t('grid.axisposition')}}</view>
|
||||
<view class="filter_input_wraper">
|
||||
<radio-group @change="radioChange">
|
||||
<label class="mgr20" v-for="(item, index) in options1" :key="item.value">
|
||||
<radio :value="item.value" :checked="index === current" style="transform:scale(0.8)" />
|
||||
<text class="filter_unit">{{item.text}}</text>
|
||||
</label>
|
||||
</radio-group>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd-col-4">
|
||||
<button class="mini-btn" size="mini" style="display: block;" type="primary" @tap="handleAdd">{{$t('button.add')}}</button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd_wrapper grid-wraper">
|
||||
<view class="slide_new slide">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="60%">{{$t('grid.sub-roll-number')}}</th>
|
||||
<th width="20%">{{$t('grid.axisposition')}}</th>
|
||||
<th width="20%">{{$t('grid.operate')}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(e, i) in dataList" :key="i">
|
||||
<td>{{e.container_name}}</td>
|
||||
<td>{{ options1 | findByValue(e.site)}}</td>
|
||||
<td><button class="mini-btn" size="mini" type="primary" @tap="handleDelete(i)">{{$t('button.delete')}}</button></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd-row submitbar">
|
||||
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">{{$t('button.clear')}}</button>
|
||||
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !index || !dataList.length}" :disabled="disabled" @tap="_downShafts">{{$t('button.confirmlowershaft')}}</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} from '@/utils/getData3.js'
|
||||
import {downShafts} from '@/utils/getData4.js'
|
||||
export default {
|
||||
components: {
|
||||
NavBar,
|
||||
SearchBox
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
title: '',
|
||||
options: [],
|
||||
index: '',
|
||||
options2: [],
|
||||
index2: '',
|
||||
options1: [{value: '1', text: this.$t('select.uppershaft')}, {value: '2', text: this.$t('select.lowershaft')}],
|
||||
index1: '1',
|
||||
current: 0,
|
||||
val1: '',
|
||||
dataList: [],
|
||||
disabled: false
|
||||
};
|
||||
},
|
||||
onLoad (options) {
|
||||
this.title = options.title
|
||||
},
|
||||
created () {
|
||||
this._queryProductArea()
|
||||
},
|
||||
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
|
||||
},
|
||||
radioChange (e) {
|
||||
this.index1 = e.detail.value
|
||||
},
|
||||
handleAdd () {
|
||||
if (!this.val1.trim()) {
|
||||
return
|
||||
}
|
||||
const index = this.dataList.findIndex(item => item === this.val1)
|
||||
if (index !== -1) {
|
||||
this.dataList.splice(index, 1)
|
||||
}
|
||||
this.dataList.push({container_name: this.val1, site: this.index1})
|
||||
this.val1 = ''
|
||||
},
|
||||
handleDelete (index) {
|
||||
this.dataList.splice(index, 1)
|
||||
},
|
||||
async _downShafts () {
|
||||
this.disabled = true
|
||||
if (!this.index || !this.dataList.length) {
|
||||
this.disabled = false
|
||||
return
|
||||
}
|
||||
try {
|
||||
let res = await downShafts(this.index, this.dataList)
|
||||
if (res) {
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
icon: 'none'
|
||||
})
|
||||
this.dataList = []
|
||||
}
|
||||
this.disabled = false
|
||||
} catch (e) {
|
||||
this.disabled = false
|
||||
}
|
||||
},
|
||||
clearUp () {
|
||||
this.index = ''
|
||||
this.index2 = ''
|
||||
this.options = []
|
||||
this.val1 = ''
|
||||
this.dataList = []
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@@ -33,3 +33,13 @@ export const queryPaperMaterial = () => request({
|
||||
url:'api/pda/paper/queryPaperMaterial',
|
||||
data: {}
|
||||
})
|
||||
/**
|
||||
* 分切下轴-确认下轴
|
||||
*/
|
||||
export const downShafts = (device, code) => request({
|
||||
url:'api/pda/slitter/downShafts',
|
||||
data: {
|
||||
device_code: device,
|
||||
container: code
|
||||
}
|
||||
})
|
||||
@@ -31,6 +31,7 @@ export const allAuthority = () => {
|
||||
{menu_id: '5', path: 'RF03', title: '分切管理', sonTree: [
|
||||
{menu_id: '1', title: '分切上料', path: '/pages/SecondPhase/slitting/SlittingFeeding'},
|
||||
{menu_id: '6', title: '分切下料2', path: '/pages/SecondPhase/slitting/SlittingCutting2'},
|
||||
{menu_id: '6', title: '分切下轴', path: '/pages/SecondPhase/slitting/Cutaxis'},
|
||||
{menu_id: '7', title: '穿拔轴初始化', path: '/pages/SecondPhase/slitting/DoInitShaft'},
|
||||
{menu_id: '8', title: '纸管绑定', path: '/pages/SecondPhase/slitting/PaperBind'},
|
||||
{menu_id: '8', title: '分切暂存下料', path: '/pages/SecondPhase/slitting/CacheCut'},
|
||||
|
||||
Reference in New Issue
Block a user