|
@@ -1,8 +1,13 @@
|
|
<template>
|
|
<template>
|
|
<div class="examine-container flex flex-col">
|
|
<div class="examine-container flex flex-col">
|
|
<div class="examine__input">
|
|
<div class="examine__input">
|
|
- <van-field v-model="message" rows="26" autosize type="textarea" maxlength="300" placeholder="请输入审批意见"
|
|
|
|
- show-word-limit />
|
|
|
|
|
|
+ <van-field v-model="message" :rows="showMaintainBox ? 20 : 26" autosize type="textarea" maxlength="300"
|
|
|
|
+ placeholder="请输入审批意见" show-word-limit />
|
|
|
|
+
|
|
|
|
+ <template v-if="showMaintainBox">
|
|
|
|
+ <c-select title="维修人员" v-model="maintain_user_id" :list="maintainList" pickerValueKey="name"
|
|
|
|
+ pickerValueId="id" />
|
|
|
|
+ </template>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="p-h-12">
|
|
<div class="p-h-12">
|
|
@@ -15,11 +20,16 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
|
|
|
+import CSelect from '../applyfor/components/CSelect.vue'
|
|
import * as dd from 'dingtalk-jsapi'
|
|
import * as dd from 'dingtalk-jsapi'
|
|
|
|
|
|
|
|
+import * as commonApi from '@api/common'
|
|
import { putAudit } from '@api/approve'
|
|
import { putAudit } from '@api/approve'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
|
+ components: {
|
|
|
|
+ CSelect
|
|
|
|
+ },
|
|
computed: {
|
|
computed: {
|
|
btnTxt() {
|
|
btnTxt() {
|
|
let t = this.type
|
|
let t = this.type
|
|
@@ -33,22 +43,36 @@ export default {
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
return s
|
|
return s
|
|
|
|
+ },
|
|
|
|
+ showMaintainBox() {
|
|
|
|
+ return this.maintain_type && this.type === 'pass'
|
|
}
|
|
}
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
message: '',
|
|
message: '',
|
|
|
|
+ maintainList: [],
|
|
maintain_user_id: '',
|
|
maintain_user_id: '',
|
|
- type: undefined
|
|
|
|
|
|
+ type: undefined,
|
|
|
|
+
|
|
|
|
+ maintain_type: '',
|
|
|
|
+ // showMaintainBox: false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
|
|
+
|
|
// this.$route.query
|
|
// this.$route.query
|
|
// type: pass通过, refuse拒绝
|
|
// type: pass通过, refuse拒绝
|
|
- this.type = this.$route.query.type || undefined
|
|
|
|
|
|
+ const { type, maintain_type } = this.$route.query
|
|
|
|
+
|
|
|
|
+ this.type = type
|
|
|
|
+ this.maintain_type = maintain_type
|
|
|
|
+ if (maintain_type) { // 有类型展示
|
|
|
|
+ this.__maintain_data__()
|
|
|
|
+ }
|
|
|
|
|
|
// Set Navigation title and back
|
|
// Set Navigation title and back
|
|
- // dd.xxx
|
|
|
|
|
|
+ // TODO: Set Navigation title and other.
|
|
dd.biz.navigation.setTitle({
|
|
dd.biz.navigation.setTitle({
|
|
title: this.btnTxt
|
|
title: this.btnTxt
|
|
})
|
|
})
|
|
@@ -56,8 +80,28 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
handleResetSignature() {
|
|
handleResetSignature() {
|
|
let msg = this.message
|
|
let msg = this.message
|
|
- console.log('msg', msg);
|
|
|
|
|
|
+ if (!msg) return this.$toast('请填写审批理由~')
|
|
|
|
+ this.__put__()
|
|
},
|
|
},
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取维修/信息员工列表
|
|
|
|
+ */
|
|
|
|
+ async __maintain_data__() {
|
|
|
|
+ try {
|
|
|
|
+ const params = {
|
|
|
|
+ type: this.$route.query.maintain_type
|
|
|
|
+ }
|
|
|
|
+ const result = await commonApi.getMaintainData(params)
|
|
|
|
+ if (result.code === 1) {
|
|
|
|
+ const data = result.data || []
|
|
|
|
+ this.maintainList = data
|
|
|
|
+ }
|
|
|
|
+ } catch (error) {
|
|
|
|
+ console.log('%c maintain-data error >>>', 'background: blue; color: #fff', error);
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
// 同意或者拒绝
|
|
// 同意或者拒绝
|
|
async __put__() {
|
|
async __put__() {
|
|
try {
|
|
try {
|
|
@@ -68,18 +112,18 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
// 维修人员
|
|
// 维修人员
|
|
- if (this.$route.query.showm === '1') {
|
|
|
|
|
|
+ if (this.showMaintainBox && this.maintain_user_id) {
|
|
params.maintain_user_id = this.maintain_user_id
|
|
params.maintain_user_id = this.maintain_user_id
|
|
}
|
|
}
|
|
|
|
|
|
const result = await putAudit(params)
|
|
const result = await putAudit(params)
|
|
- if (result.code === 1) {
|
|
|
|
- console.log('%c printlog >>>', 'background: blue; color: #fff', result.data);
|
|
|
|
|
|
|
|
|
|
+ if (result.code === 1) {
|
|
|
|
+ this.$toast(result.msg)
|
|
|
|
+ this.$router.go(-1)
|
|
}
|
|
}
|
|
} catch (error) {
|
|
} catch (error) {
|
|
console.log('%c examine error >>>', 'background: blue; color: #fff', error);
|
|
console.log('%c examine error >>>', 'background: blue; color: #fff', error);
|
|
-
|
|
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
@@ -94,5 +138,11 @@ export default {
|
|
padding-bottom: 20px;
|
|
padding-bottom: 20px;
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ &__input {
|
|
|
|
+ .layout-container {
|
|
|
|
+ margin-top: 10px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|