122 lines
3.1 KiB
Vue
122 lines
3.1 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<nav-bar 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">
|
|
<input type="text" class="filter_input filter_input_disabled" disabled v-model="val1">
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">维修单</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<input type="text" class="filter_input filter_input_disabled" disabled v-model="val2">
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">生产配合人</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<input type="text" class="filter_input" v-model="val3">
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>序号</th>
|
|
<th>是否完成</th>
|
|
<th>维修项目编号</th>
|
|
<th>维修项目名称</th>
|
|
<th>要求</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.repair_id === pkId}">
|
|
<td>{{e.indexId}}</td>
|
|
<td>
|
|
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
|
|
</td>
|
|
<td>{{e.repair_item_code}}</td>
|
|
<td>{{e.repair_item_name}}</td>
|
|
<td>{{e.requirement}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="submit-bar">
|
|
<button class="submit-button" :class="{'btn-disabled': !val1 || !pkId || !index}" :disabled="disabled" @tap="_confirmInstor">确认</button>
|
|
<button class="submit-button" @tap="searchList">取消</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {coolIOQuery, confirmInstor, statusList} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
val1: '',
|
|
dataList: [],
|
|
pkId: '',
|
|
pkObj: {},
|
|
disabled: false
|
|
};
|
|
},
|
|
created () {
|
|
},
|
|
methods: {
|
|
/** 下拉框查询 */
|
|
async _statusList () {
|
|
let res = await statusList()
|
|
this.options = [...res.data]
|
|
},
|
|
/** 确认 */
|
|
async _confirmInstor () {
|
|
this.disabled = true
|
|
if (!this.val1 || !this.pkId || !this.index) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await confirmInstor(this.pkObj, this.val1, this.index)
|
|
this.disabled = false
|
|
this.pkId = ''
|
|
this.pkObj = {}
|
|
this.searchList()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
toCheck (e) {
|
|
this.pkId = this.pkId === e.repair_id ? '' : e.repair_id
|
|
this.pkObj = this.pkId === e.repair_id ? e : {}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
</style>
|