Files
hht-tongbo-two/pages/SecondPhase/slitting/ShaftSave.vue

67 lines
1.7 KiB
Vue
Raw Normal View History

2024-07-11 15:38:58 +08:00
<template>
<view class="zd_container">
2024-07-16 15:50:04 +08:00
<!-- <nav-bar title="气胀轴库维护"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
2024-07-11 15:38:58 +08:00
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label">点位</view>
<view class="filter_input_wraper">
<search-box v-model="val1" />
</view>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-5 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
<button class="zd-col-8 btn-submit btn-success letter-30" :class="{'btn-info': !val1}" :disabled="disabled" @tap="_shaftMaintenanceInventory('0')">清轴</button>
<button class="zd-col-8 btn-submit btn-success letter-30" :class="{'btn-info': !val1}" :disabled="disabled" @tap="_shaftMaintenanceInventory('1')">放轴</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {shaftMaintenanceInventory} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
2024-07-16 15:50:04 +08:00
title: '',
2024-07-11 15:38:58 +08:00
val1: '',
disabled: false
};
},
2024-07-16 15:50:04 +08:00
onLoad (options) {
this.title = options.title
},
2024-07-11 15:38:58 +08:00
methods: {
async _shaftMaintenanceInventory (type) {
this.disabled = true
if (!this.val1) {
this.disabled = false
return
}
try {
let res = await shaftMaintenanceInventory(this.val1, type)
uni.showToast({
title: res.message,
icon: 'none'
})
2025-06-12 13:09:12 +08:00
this.clearUp()
2024-07-11 15:38:58 +08:00
this.disabled = false
} catch (e) {
this.disabled = false
}
},
clearUp () {
this.val1 = ''
this.disabled = false
}
}
}
</script>