Files
hht-ynhl-one-uni/pages/SecondPhase/slitting/Cutaxis.vue
2025-06-23 09:04:05 +08:00

166 lines
4.6 KiB
Vue

<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="50%">{{$t('grid.axisposition')}}</th>
<th width="50%">{{$t('grid.operate')}}</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<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,
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.dataList.length >= 2) {
return
}
if (this.index1 === this.dataList[0].site) {
return
}
this.dataList.push({site: this.index1})
},
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.dataList = []
}
}
}
</script>