|
@@ -4,12 +4,13 @@
|
|
|
<div class="title">
|
|
|
<span>{{ title }}</span>
|
|
|
</div>
|
|
|
+
|
|
|
<div class="location flex flex-row flex-row-cic">
|
|
|
- <van-icon name="chat-o" />
|
|
|
+ <img v-show="subjectLogo" :src="subjectLogo" :alt="schoolName">
|
|
|
<span>{{ schoolName }}</span>
|
|
|
</div>
|
|
|
|
|
|
- <!-- TODO: 审核样式 -->
|
|
|
+ <!-- 审核样式 -->
|
|
|
<div :class="[
|
|
|
'status-bar',
|
|
|
renderStatusBarClass
|
|
@@ -17,12 +18,44 @@
|
|
|
<span>{{ approveStatusMap }}</span>
|
|
|
</div>
|
|
|
|
|
|
- <!-- TODO: 配置审核通过/撤销/拒绝 -->
|
|
|
- <div class="float-status">
|
|
|
- 审核状态标识:{{ dataDetail && dataDetail.status }}
|
|
|
+ <!-- 配置审核通过/撤销/拒绝 -->
|
|
|
+ <div class="float-status" v-if="dataDetail && [3, 4, 5].includes(dataDetail.status)">
|
|
|
+ <img v-if="dataDetail.status == 3" src="../../assets/approve/yitongguo.png" alt="">
|
|
|
+ <img v-else-if="dataDetail.status == 4" src="../../assets/approve/yibohui.png" alt="">
|
|
|
+ <img v-else-if="dataDetail.status == 5" src="../../assets/approve/yichexiao.png" alt="">
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+ <template v-if="module === 8">
|
|
|
+ <div class="maintain-result" v-if="dataDetail && dataDetail.module_info.feedback_status == 1">
|
|
|
+ <div class="m__header">
|
|
|
+ 维修结果
|
|
|
+ </div>
|
|
|
+ <p class="m__msg">
|
|
|
+ {{ dataDetail && dataDetail.module_info.feedback }}
|
|
|
+ </p>
|
|
|
+ <div class="m__imgs flex flex-row flex-row-aic" v-if="dataDetail && dataDetail.module_info.feedback_images">
|
|
|
+ <template v-for="(imgUrl, idx) in dataDetail.module_info.feedback_images.split(',')">
|
|
|
+ <img :src="imgUrl" :key="idx"
|
|
|
+ @click="handleReviewImages(dataDetail.module_info.feedback_images.split(','), idx)">
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 维修满意度调查 -->
|
|
|
+ <div class="maintain-form" v-if="dataDetail && dataDetail.module_info.comment_status == 1">
|
|
|
+ <layout title="满意度评价">
|
|
|
+ <van-rate :void-icon="require('../../assets/approve/flower.png')"
|
|
|
+ :icon="require('../../assets/approve/flower-fill.png')" :size="28" readonly
|
|
|
+ :value="dataDetail.module_info.comment_score" />
|
|
|
+ </layout>
|
|
|
+ <c-input title="评价" :readonly="true" :value="dataDetail.module_info.comment" />
|
|
|
+ </div>
|
|
|
+ <div v-else-if="pageType === 'info' && dataDetail && dataDetail.status === 3" class="evaluate">
|
|
|
+ 请对维修结果做出评价,<span @click="showInputResd = true" class="evaluate__event">点击评价</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
<!-- 各种审批内容组件 -->
|
|
|
<div class="examine-detail__main">
|
|
|
<detail-rows class="detail-row" v-for="(row, idx) in datalist" :key="idx" v-bind="row" />
|
|
@@ -39,12 +72,29 @@
|
|
|
<!-- operate. 操作台 -->
|
|
|
<!-- 集成 提醒, 修改, 下载, 拒绝,同意 5种 -->
|
|
|
<div class="approve-control">
|
|
|
- <approve-control :id="id" :module="module" :flag="pageType" :flag-state="dataDetailStatusComputed" />
|
|
|
+ <approve-control :edit-data="dataDetail" :id="id" :module="module" :flag="pageType"
|
|
|
+ :flag-state="dataDetailStatusComputed" />
|
|
|
</div>
|
|
|
+
|
|
|
+ <!-- NOTE: 添加 Popup 提交评价 -->
|
|
|
+ <van-popup v-model="showInputResd" style="background-color: transparent;" position="center">
|
|
|
+ <div class="popup-content">
|
|
|
+ <layout title="满意度评价" :required="true">
|
|
|
+ <van-rate :size="28" v-model="resdScore" />
|
|
|
+ </layout>
|
|
|
+
|
|
|
+ <c-input title="评价" :required="true" input-type="textarea" v-model="resd" />
|
|
|
+
|
|
|
+ <div class="btn-container">
|
|
|
+ <div class="btn-span" @click="handleSubmitEvaluate">提交</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </van-popup>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+
|
|
|
import * as dd from 'dingtalk-jsapi'
|
|
|
|
|
|
import setLeft from 'dingtalk-jsapi/api/biz/navigation/setLeft'
|
|
@@ -61,15 +111,20 @@ import * as approveApi from '@/api/approve'
|
|
|
|
|
|
import { mapState } from 'vuex'
|
|
|
|
|
|
-
|
|
|
import { formatApplyforRows } from '@/utils/applyfor-item'
|
|
|
|
|
|
+import { ImagePreview } from 'vant'
|
|
|
+import Layout from '../applyfor/components/Layout.vue'
|
|
|
+import CInput from '../applyfor/components/CInput.vue'
|
|
|
+
|
|
|
export default {
|
|
|
name: 'ExamineDetail',
|
|
|
components: {
|
|
|
DetailRows,
|
|
|
ApproveFlowPath,
|
|
|
- ApproveControl
|
|
|
+ ApproveControl,
|
|
|
+ CInput,
|
|
|
+ Layout
|
|
|
},
|
|
|
computed: {
|
|
|
dataDetailStatusComputed() {
|
|
@@ -77,7 +132,7 @@ export default {
|
|
|
let from = this.pageFrom
|
|
|
switch (from) {
|
|
|
case 'approve_3':
|
|
|
- return 4 // 审批详情。 我收到的 没有任何操作权限
|
|
|
+ return 4 // 审批详情。我收到的 没有任何操作权限
|
|
|
default:
|
|
|
return status
|
|
|
}
|
|
@@ -104,13 +159,15 @@ export default {
|
|
|
title() {
|
|
|
if (!this.dataDetail) return ''
|
|
|
const { create_user } = this.dataDetail
|
|
|
- return `${create_user.name}提交的申请单`
|
|
|
+ if (create_user.name) return `${create_user.name}提交的申请单`
|
|
|
+ else return ''
|
|
|
},
|
|
|
...mapState('enum', [
|
|
|
'evectionTypeList',
|
|
|
]),
|
|
|
...mapState('user', [
|
|
|
- 'schoolName'
|
|
|
+ 'schoolName',
|
|
|
+ 'subjectLogo'
|
|
|
]),
|
|
|
approveStatusMap() {
|
|
|
if (!this.dataDetail) return ''
|
|
@@ -125,95 +182,6 @@ export default {
|
|
|
isiOS: checkPlatform() === 'iOS',
|
|
|
|
|
|
datalist: [],
|
|
|
- // datalist: [
|
|
|
- // {
|
|
|
- // title: '审批编号',
|
|
|
- // value: '20222110741458005442684',
|
|
|
- // },
|
|
|
- // {
|
|
|
- // title: '合同编号',
|
|
|
- // value: '20222110741458005442684',
|
|
|
- // type: 'link' // 代表它是一个链接
|
|
|
- // },
|
|
|
- // {
|
|
|
- // title: '所在部门',
|
|
|
- // value: '深圳市第二特殊教育学校-教师部'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // title: '申请日期',
|
|
|
- // value: '2022-11-07',
|
|
|
- // type: 'date' // 代表返回的是unixtime 时间戳需要自己转义`dayjs`
|
|
|
- // },
|
|
|
- // {
|
|
|
- // title: '申请人',
|
|
|
- // value: '刘辉'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // title: '申请事由',
|
|
|
- // value: '学生生活用品购买'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // title: '申购类型',
|
|
|
- // value: '货物申购',
|
|
|
- // type: 'type' // 类型字段意味着这是枚举需要自己配置
|
|
|
- // },
|
|
|
- // {
|
|
|
- // type: 'projects',
|
|
|
- // title: '申购明细',
|
|
|
- // value: [
|
|
|
- // {
|
|
|
- // projectName: '学生冬季校服',
|
|
|
- // count: 20,
|
|
|
- // tags: ['蓝色', '165cm'],
|
|
|
- // money: 56025
|
|
|
- // },
|
|
|
- // {
|
|
|
- // projectName: '学生冬季校服',
|
|
|
- // count: 30,
|
|
|
- // tags: ['蓝色', '175cm'],
|
|
|
- // money: 65025
|
|
|
- // }
|
|
|
- // ]
|
|
|
- // },
|
|
|
- // {
|
|
|
- // title: '总金额',
|
|
|
- // value: '100000'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // title: '预计申购完成日期',
|
|
|
- // value: '2022-11-08'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // type: 'files', // 代表当前是 上传的文件
|
|
|
- // title: '附件材料',
|
|
|
- // value: [
|
|
|
- // {
|
|
|
- // type: 'pdf',
|
|
|
- // name: '采购说明.pdf',
|
|
|
- // size: '264.45KB'
|
|
|
- // }
|
|
|
- // ]
|
|
|
- // },
|
|
|
- // {
|
|
|
- // type: 'images', // 代表当前是图片组
|
|
|
- // title: '图片',
|
|
|
- // value: [
|
|
|
- // {
|
|
|
- // url: 'http://xxxxx'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // url: 'http://xxxxx'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // url: 'http://xxxxx'
|
|
|
- // }
|
|
|
- // ]
|
|
|
- // },
|
|
|
- // {
|
|
|
- // title: '支付方式',
|
|
|
- // value: '银行转账'
|
|
|
- // }
|
|
|
- // ],
|
|
|
|
|
|
pageType: '', // 页面类型 info and approve
|
|
|
pageFrom: '',
|
|
@@ -225,6 +193,11 @@ export default {
|
|
|
approveCopyList: [],
|
|
|
dataDetailStatus: -1,
|
|
|
module: undefined,
|
|
|
+
|
|
|
+
|
|
|
+ showInputResd: false,
|
|
|
+ resd: '', // 评价
|
|
|
+ resdScore: 3, // 评价分
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
@@ -273,6 +246,7 @@ export default {
|
|
|
const params = {
|
|
|
[paramsId]: this.id
|
|
|
}
|
|
|
+
|
|
|
const res = await this.apiFunc(params)
|
|
|
if (res.code === 1) {
|
|
|
this.dataDetail = res.data
|
|
@@ -291,79 +265,110 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
+ // NOTE: 预览图片
|
|
|
+ handleReviewImages(list, idx) {
|
|
|
+ ImagePreview({
|
|
|
+ images: list,
|
|
|
+ startPosition: idx
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
handleBackEvent() {
|
|
|
console.log('press back btn');
|
|
|
// NOTE: 通过路由返回
|
|
|
this.$router.push('/approve')
|
|
|
},
|
|
|
|
|
|
- // NOTE: 渲染`module_info`字段函数; 让其更好的渲染
|
|
|
- async formatModuleInfoData(data) {
|
|
|
- const { module, order_no, module_info, department_data } = data
|
|
|
- let evectionTypeMap = this.evectionTypeList
|
|
|
- if (module === 5 && evectionTypeMap) {
|
|
|
- let vops = evectionTypeMap.filter(option => (option.id === module_info.type))[0]
|
|
|
- module_info.type_text = vops.name
|
|
|
+ handleSubmitEvaluate() {
|
|
|
+ let comment_score = this.resdScore
|
|
|
+ let comment = this.resd
|
|
|
+ if (!comment) {
|
|
|
+ return this.$store('请填写维修评价')
|
|
|
}
|
|
|
- let temporaryList = [
|
|
|
- {
|
|
|
- title: '审批编号',
|
|
|
- value: order_no
|
|
|
+
|
|
|
+ approveInfoApi.postEvaluate({
|
|
|
+ comment,
|
|
|
+ comment_score,
|
|
|
+ id: this.dataDetail.id
|
|
|
+ }).then(res => {
|
|
|
+ if (res.code === 1) {
|
|
|
+ this.$toast(res.msg)
|
|
|
+
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.showInputResd = false
|
|
|
+ this.__detail__()
|
|
|
+ })
|
|
|
}
|
|
|
- ]
|
|
|
- switch (module) {
|
|
|
- case 5:
|
|
|
- temporaryList.push(...[
|
|
|
- {
|
|
|
- title: '所在部门',
|
|
|
- value: department_data.map(department => (department.name)).join('-')
|
|
|
- },
|
|
|
- {
|
|
|
- title: '申请日期',
|
|
|
- value: data.create_at
|
|
|
- // type: 'date'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '发起人',
|
|
|
- value: data.user_id
|
|
|
- },
|
|
|
- { title: '外出事由', value: module_info.reason },
|
|
|
- { title: '同行人员', value: data.peer_user.map(user => (user.name)).join('、') },
|
|
|
- { title: '出差开始时间', value: module_info.start_time },
|
|
|
- { title: '出差结束时间', value: module_info.end_time },
|
|
|
-
|
|
|
- module_info.document_text.length ? {
|
|
|
- title: '附件材料',
|
|
|
- type: 'files',
|
|
|
- value: module_info.document_text
|
|
|
- } : undefined,
|
|
|
-
|
|
|
- module_info.images_text.length ? {
|
|
|
- type: 'images',
|
|
|
- title: '图片',
|
|
|
- value: module_info.images_text
|
|
|
- } : undefined,
|
|
|
-
|
|
|
- {
|
|
|
- title: '类型',
|
|
|
- value: module_info.type_text
|
|
|
- },
|
|
|
- {
|
|
|
- title: '是否跨关内关外',
|
|
|
- value: module_info.is_who ? '是' : '否'
|
|
|
- },
|
|
|
- {
|
|
|
- title: module_info.is_who ? '预算金额' : '备注',
|
|
|
- value: module_info.remark
|
|
|
- }
|
|
|
- ])
|
|
|
- break
|
|
|
- }
|
|
|
- // NOTE: 过滤undefined的数组值
|
|
|
- temporaryList = temporaryList.filter(row => row)
|
|
|
- console.log('%c Render Temporary List >>>', 'background: blue; color: #fff', temporaryList.filter(row => row));
|
|
|
- return Promise.resolve(temporaryList)
|
|
|
- }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 渲染`module_info`字段函数; 让其更好的渲染
|
|
|
+ // async formatModuleInfoData(data) {
|
|
|
+ // const { module, order_no, module_info, department_data } = data
|
|
|
+ // let evectionTypeMap = this.evectionTypeList
|
|
|
+ // if (module === 5 && evectionTypeMap) {
|
|
|
+ // let vops = evectionTypeMap.filter(option => (option.id === module_info.type))[0]
|
|
|
+ // module_info.type_text = vops.name
|
|
|
+ // }
|
|
|
+ // let temporaryList = [
|
|
|
+ // {
|
|
|
+ // title: '审批编号',
|
|
|
+ // value: order_no
|
|
|
+ // }
|
|
|
+ // ]
|
|
|
+ // switch (module) {
|
|
|
+ // case 5:
|
|
|
+ // temporaryList.push(...[
|
|
|
+ // {
|
|
|
+ // title: '所在部门',
|
|
|
+ // value: department_data.map(department => (department.name)).join('-')
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // title: '申请日期',
|
|
|
+ // value: data.create_at
|
|
|
+ // // type: 'date'
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // title: '发起人',
|
|
|
+ // value: data.user_id
|
|
|
+ // },
|
|
|
+ // { title: '外出事由', value: module_info.reason },
|
|
|
+ // { title: '同行人员', value: data.peer_user.map(user => (user.name)).join('、') },
|
|
|
+ // { title: '出差开始时间', value: module_info.start_time },
|
|
|
+ // { title: '出差结束时间', value: module_info.end_time },
|
|
|
+
|
|
|
+ // module_info.document_text.length ? {
|
|
|
+ // title: '附件材料',
|
|
|
+ // type: 'files',
|
|
|
+ // value: module_info.document_text
|
|
|
+ // } : undefined,
|
|
|
+
|
|
|
+ // module_info.images_text.length ? {
|
|
|
+ // type: 'images',
|
|
|
+ // title: '图片',
|
|
|
+ // value: module_info.images_text
|
|
|
+ // } : undefined,
|
|
|
+
|
|
|
+ // {
|
|
|
+ // title: '类型',
|
|
|
+ // value: module_info.type_text
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // title: '是否跨关内关外',
|
|
|
+ // value: module_info.is_who ? '是' : '否'
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // title: module_info.is_who ? '预算金额' : '备注',
|
|
|
+ // value: module_info.remark
|
|
|
+ // }
|
|
|
+ // ])
|
|
|
+ // break
|
|
|
+ // }
|
|
|
+ // // NOTE: 过滤undefined的数组值
|
|
|
+ // temporaryList = temporaryList.filter(row => row)
|
|
|
+ // console.log('%c Render Temporary List >>>', 'background: blue; color: #fff', temporaryList.filter(row => row));
|
|
|
+ // return Promise.resolve(temporaryList)
|
|
|
+ // }
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
if (this.isAndroid) {
|
|
@@ -375,7 +380,7 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style lang="less">
|
|
|
+<style lang="less" scoped>
|
|
|
@import url('@/styles/variables.less');
|
|
|
|
|
|
.examine-detail {
|
|
@@ -383,23 +388,61 @@ export default {
|
|
|
.detail-row {
|
|
|
margin-bottom: 10px;
|
|
|
}
|
|
|
+
|
|
|
+ .maintain-result {
|
|
|
+ background-color: #fff;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ padding: 10px 12px;
|
|
|
+
|
|
|
+ .m {
|
|
|
+ &__header {
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #191A1E;
|
|
|
+ line-height: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &__msg {
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #9A9A9A;
|
|
|
+ line-height: 20px;
|
|
|
+ margin: 4px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ &__imgs {
|
|
|
+ font-size: 0;
|
|
|
+ gap: 6px;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 48px;
|
|
|
+ height: 48px;
|
|
|
+ border-radius: 6px;
|
|
|
+ vertical-align: middle;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
&__header {
|
|
|
position: relative;
|
|
|
padding: 10px 12px;
|
|
|
background-color: @white;
|
|
|
- margin-bottom: 6px;
|
|
|
+ margin-bottom: 10px;
|
|
|
|
|
|
.float-status {
|
|
|
position: absolute;
|
|
|
- right: 12px;
|
|
|
- bottom: -30%;
|
|
|
+ right: 22px;
|
|
|
+ bottom: -40%;
|
|
|
width: 80px;
|
|
|
height: 80px;
|
|
|
- background-color: #eee;
|
|
|
- border-radius: 80px;
|
|
|
- overflow: hidden;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 110%;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.title {
|
|
@@ -411,14 +454,20 @@ export default {
|
|
|
}
|
|
|
|
|
|
.location {
|
|
|
+ font-size: 0;
|
|
|
+ vertical-align: middle;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ vertical-align: middle;
|
|
|
+ }
|
|
|
+
|
|
|
span {
|
|
|
- width: 137px;
|
|
|
- height: 18px;
|
|
|
- font-size: 12px;
|
|
|
+ font-size: 14px;
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #727273;
|
|
|
- line-height: 18px;
|
|
|
margin-left: 6px;
|
|
|
}
|
|
|
}
|
|
@@ -450,4 +499,43 @@ export default {
|
|
|
background-color: @white;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+.popup-content {
|
|
|
+ width: 80vw;
|
|
|
+ background-color: #fff;
|
|
|
+ border-radius: 6px;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .layout-container {
|
|
|
+ border-bottom: 1px solid #eee;
|
|
|
+
|
|
|
+ &:nth-last-child(2) {
|
|
|
+ border-bottom: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-container {
|
|
|
+ border-top: 10px solid #f2f1f6;
|
|
|
+ padding-bottom: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-span {
|
|
|
+ margin: 0 auto;
|
|
|
+ width: 40%;
|
|
|
+ height: initial !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.maintain-form {
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.evaluate {
|
|
|
+ padding: 0 10px 10px;
|
|
|
+ font-size: 14px;
|
|
|
+
|
|
|
+ &__event {
|
|
|
+ color: @link-color;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|