Commit 03b9be21 authored by jiaxu.yan's avatar jiaxu.yan

fix: 70780 70777 70766

parent 6e1beeb5
......@@ -108,7 +108,7 @@
.standard-result {
color: #303133;
font-weight: bold;
width: 120px;
width: 160px;
}
}
.i-icon {
......
......@@ -9,7 +9,7 @@
}"
>
<logo v-if="showLogo" :collapse="isCollapse" />
<el-scrollbar :class="settings.sideTheme" wrap-class="scrollbar-wrapper">
<el-scrollbar :class="settings.sideTheme" style="padding-bottom: 30px;" wrap-class="scrollbar-wrapper">
<el-menu
:default-active="activeMenu"
:collapse="isCollapse"
......
......@@ -215,7 +215,8 @@
<div v-if="reviewDetail.result">
<div v-if="reviewDetail.result.fileList">
<template v-for="i in reviewDetail.result.fileList">
{{ i.fileName }}{{ i.catalogue }}
{{ i.fileName ? `《${i.fileName}》` : '__' }}
{{ i.catalogue }}
</template>
</div>
<div v-if="reviewDetail.result.comment">
......
......@@ -102,7 +102,8 @@
<div v-if="reviewDetail.result">
<div v-if="reviewDetail.result.fileList">
<template v-for="i in reviewDetail.result.fileList">
{{ i.fileName }}{{ i.catalogue }}
{{ i.fileName ? `《${i.fileName}》` : '__' }}
{{ i.catalogue }}
</template>
</div>
<div v-if="reviewDetail.result.comment">
......
......@@ -127,13 +127,15 @@
:rules="rules"
>
<el-form-item class="right-content-item" label="标准章节">
<span>{{ taskModel.chapter }}</span>
<div style="display: flex">{{ taskModel.chapter }}</div>
</el-form-item>
<el-form-item class="right-content-item" label="标准要求">
<span>{{ taskModel.standardText }}</span>
<div style="display: flex">{{ taskModel.standardText }}</div>
</el-form-item>
<el-form-item class="right-content-item" label="审查要点">
<span>{{ taskModel.reviewKeypointText }}</span>
<div style="display: flex">
{{ taskModel.reviewKeypointText }}
</div>
</el-form-item>
<el-form-item class="right-content-item" label="审查细则">
<div class="scene-content">
......@@ -749,6 +751,8 @@ export default {
*确认车型审查
*/
submitFrom() {
this.$refs.form.validate(valid => {
if (valid) {
this.$modal
.confirm('是否确认提交表单,提交后不可修改', {
type: 'warning',
......@@ -763,6 +767,8 @@ export default {
})
})
.catch(() => {})
}
})
},
/**
*确认细则内容变更
......
......@@ -125,7 +125,7 @@
<span slot="title" style="width: 100%">
<div class="standard-box">
<div class="standard-left">
<div class="standard">标准</div>
<div class="standard">标准要求:</div>
<div class="standard-title">
{{ item.chapter + item.text }}
</div>
......@@ -177,6 +177,11 @@
</collapse>
</div>
</div>
<div class="dialog-button">
<el-button size="mini" @click="dialogManger.dialogVisible = false"
>关 闭</el-button
>
</div>
</el-drawer>
</template>
<script>
......@@ -242,6 +247,15 @@ export default {
</script>
<style lang="scss" scoped>
.dialog-button {
position: fixed;
bottom: 0px;
background: #ffffff;
right: 0;
padding: 20px;
text-align: end;
}
.form-review-questionnaire {
padding: 0 38px;
}
......
......@@ -75,6 +75,7 @@
sortable
min-width="210"
prop="enterpriseName"
show-overflow-tooltip
align="left"
>
</el-table-column>
......@@ -82,6 +83,7 @@
prop="fileName"
label="文件名称"
min-width="220"
show-overflow-tooltip
align="left"
>
</el-table-column>
......@@ -89,6 +91,7 @@
prop="version"
label="文件版本"
min-width="100"
show-overflow-tooltip
align="left"
>
</el-table-column>
......@@ -121,6 +124,7 @@
prop="storage"
label="存储位置"
min-width="210"
show-overflow-tooltip
align="left"
>
</el-table-column>
......@@ -128,6 +132,7 @@
prop="identifyNumber"
label="文件识别号"
min-width="170"
show-overflow-tooltip
align="left"
>
</el-table-column>
......@@ -139,11 +144,13 @@
>
<template slot-scope="scope">
<el-image
v-if="scope.row.photo"
style="width: 36px; height: 36px"
:src="baseUrl + scope.row.photo"
:preview-src-list="[baseUrl + scope.row.photo]"
>
</el-image>
<div v-else>__</div>
</template>
</el-table-column>
<el-table-column
......
......@@ -146,11 +146,13 @@
>
<template slot-scope="scope">
<el-image
v-if="scope.row.photo"
style="width: 36px; height: 36px"
:src="baseUrl + scope.row.photo"
:preview-src-list="[baseUrl + scope.row.photo]"
>
</el-image>
<div v-else>__</div>
</template>
</el-table-column>
<el-table-column
......
......@@ -220,7 +220,8 @@
<div v-if="reviewDetail.result">
<div v-if="reviewDetail.result.fileList">
<template v-for="i in reviewDetail.result.fileList">
{{ i.fileName }}{{ i.catalogue }}
{{ i.fileName ? `《${i.fileName}》` : '__' }}
{{ i.catalogue }}
</template>
</div>
<div v-if="reviewDetail.result.comment">
......
......@@ -102,7 +102,8 @@
<div v-if="reviewDetail.result">
<div v-if="reviewDetail.result.fileList">
<template v-for="i in reviewDetail.result.fileList">
{{ i.fileName }}{{ i.catalogue }}
{{ i.fileName ? `《${i.fileName}》` : '__' }}
{{ i.catalogue }}
</template>
</div>
<div v-if="reviewDetail.result.comment">
......
......@@ -783,6 +783,8 @@ export default {
*确认体系审查
*/
submitFrom() {
this.$refs.form.validate(valid => {
if (valid) {
this.$modal
.confirm('是否确认提交表单,提交后不可修改', {
type: 'warning',
......@@ -793,13 +795,12 @@ export default {
reviewTaskConfirm({
taskId: this.taskId
}).then(res => {
this.$modal.msgSuccess('确认提交成功')
this.$router.push({
path: '/processing/unprocessed-review'
})
this.$router.go(-1)
})
})
.catch(() => {})
}
})
},
confirmDetailChange() {
reviewDetailsConfirm({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment