【修改】修改汉字显示
This commit is contained in:
@@ -62,7 +62,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="report-jug">
|
<div class="report-jug">
|
||||||
<div class="report-jug-left">
|
<div class="report-jug-left">
|
||||||
<div>报告满意度</div>
|
<div>报告评级:</div>
|
||||||
|
|
||||||
<el-rate allow-half :max="5" v-model="userRating" @click.native="saveScore"></el-rate>
|
<el-rate allow-half :max="5" v-model="userRating" @click.native="saveScore"></el-rate>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -101,7 +101,7 @@
|
|||||||
<el-form-item label="上传报告:" prop="fileId">
|
<el-form-item label="上传报告:" prop="fileId">
|
||||||
<el-upload action="#" :http-request="(params) => uploadFile(params)" :show-file-list="false"
|
<el-upload action="#" :http-request="(params) => uploadFile(params)" :show-file-list="false"
|
||||||
:before-upload="beforeUploadFile" :on-remove="handleRemove"
|
:before-upload="beforeUploadFile" :on-remove="handleRemove"
|
||||||
:file-list="fileList">
|
:file-list="fileList" :disabled="formControl">
|
||||||
<el-button class="uploadBtn" :disabled="formControl">选择文件</el-button>
|
<el-button class="uploadBtn" :disabled="formControl">选择文件</el-button>
|
||||||
|
|
||||||
</el-upload>
|
</el-upload>
|
||||||
@@ -278,12 +278,12 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
downFile(id){
|
downFile(id){
|
||||||
if(this.formControl) return
|
|
||||||
this.$api.report.reportDownload({reportId:null,fileId:id}).then(res=>{
|
this.$api.report.reportDownload({reportId:null,fileId:id}).then(res=>{
|
||||||
downloadFile(res)
|
downloadFile(res)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleClick(){
|
handleClick(){
|
||||||
|
if(this.formControl) return
|
||||||
if(this.form.departmentName){
|
if(this.form.departmentName){
|
||||||
this.orgTableVal=this.form.department
|
this.orgTableVal=this.form.department
|
||||||
this.orgTableValName=this.form.departmentName
|
this.orgTableValName=this.form.departmentName
|
||||||
@@ -445,6 +445,7 @@ export default {
|
|||||||
this.form.fileName = data.name;
|
this.form.fileName = data.name;
|
||||||
this.form.fileId = data.key;
|
this.form.fileId = data.key;
|
||||||
this.fileList = [data]
|
this.fileList = [data]
|
||||||
|
this.$refs.processFormRef.clearValidate(['fileId'])
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 上传文件前
|
// 上传文件前
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
<script src="../../api/modules/process.js"></script>
|
|
||||||
<template>
|
<template>
|
||||||
<!-- 此页面主要展示审核和已完成-->
|
<!-- 此页面主要展示审核和已完成-->
|
||||||
<div class="process">
|
<div class="process">
|
||||||
<div class="process_box">
|
<div class="process_box">
|
||||||
<process-header v-if="$route.query.type !== 'yiban'" :title="'权限审批'" :proceesNum="prcNum"></process-header>
|
<process-header v-if="$route.query.type !== 'yiban'" :title="'报告审批'" :proceesNum="prcNum"></process-header>
|
||||||
<process-header v-else :title="'已办流程'" :proceesNum="prcNum"></process-header>
|
<process-header v-else :title="'已办流程'" :proceesNum="prcNum"></process-header>
|
||||||
<div class="procedure">
|
<div class="procedure">
|
||||||
<div class="process_content">
|
<div class="process_content">
|
||||||
|
|||||||
@@ -227,7 +227,7 @@ export default {
|
|||||||
department:'',
|
department:'',
|
||||||
name:'',
|
name:'',
|
||||||
year:'',
|
year:'',
|
||||||
labelList:'',
|
labelList:[],
|
||||||
confidentialLevel:'',
|
confidentialLevel:'',
|
||||||
secrecyLast:'',
|
secrecyLast:'',
|
||||||
privacyLevel:'',
|
privacyLevel:'',
|
||||||
|
|||||||
Reference in New Issue
Block a user