Files
pad-hl-hcx-new/pages/management/HcxErrorHandle.vue
2023-03-23 14:13:31 +08:00

81 lines
1.8 KiB
Vue

<template>
<view class="content">
<nav-bar title="缓存线异常处理"></nav-bar>
<view class="search-confirm-wrap">
<view class="search-wrap">
<view class="search-item">
<label class="search-label">缓存线</label>
<view class="filter_input_wraper">
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
</view>
</view>
</view>
<view class="confirm-button-wrap">
<button class="confirm-button" :disabled="disabled" @tap="toSure()">暂停</button>
<button class="confirm-button" :disabled="disabled" @tap="toSure()">启动</button>
</view>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryInstraction, instOperation} from '@/utils/getData2.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
options1: [],
index1: '',
val1: '',
val2: '',
dataList: [],
pkId: '',
disabled: false
};
},
methods: {
/** 选择器1 */
selectChange1(e) {
this.index1 = e
},
toSearch () {
this.dataList = []
this._queryInstraction()
},
async _queryInstraction () {
let res = await queryInstraction()
this.dataList = [...res.data]
},
toSure () {
this.disabled = true
if (!this.pkId) {
uni.showToast({
title: '请选择',
icon: 'none'
})
this.disabled = false
return
}
this._instOperation()
},
async _instOperation () {
let res = await instOperation()
this.dataList = [...res.data]
},
toRadio (e) {
this.pkId = this.pkId === e.instruct_uuid ? '' : e.instruct_uuid
}
}
}
</script>
<style lang="stylus" scoped>
@import '../../common/style/mixin.styl';
.grid-wrap
height calc(100% - 526rpx)
</style>