| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <template>
- <div class="audit-remark">
- <h5>审核批注</h5>
- <ul v-if="remarkList.length > 0">
- <li
- v-for="{
- id: remarkId,
- content,
- remark_person_name,
- remark_time,
- content_select,
- component_id,
- audit_flow_node_name,
- file_list,
- } in remarkList"
- :key="remarkId"
- >
- <template v-if="content_select">
- <span class="el-icon-notebook-2"> 原文</span>
- <span class="content-select">{{ content_select }}</span>
- </template>
- <p v-html="content"></p>
- <template v-if="file_list.length > 0">
- <div v-for="(item, index) in file_list" :key="index" class="file-item">
- <SvgIcon :icon-class="item.icon_type" />
- <span class="file-item-name">{{ item.file_name }}</span>
- <SvgIcon icon-class="uploadPreview" @click="viewDialog(item)" />
- <SvgIcon icon-class="download" @click="downLoad(item)" />
- </div>
- </template>
- <div v-if="isAudit" class="remark-bottom">
- <span>{{ remark_person_name + ':' + remark_time }}</span>
- <div class="btn-box">
- <el-link type="primary" class="delete-black delete-btn" @click="deleteRemarks(remarkId)"
- ><SvgIcon icon-class="delete-black" size="12"
- /></el-link>
- <el-link
- type="primary"
- class="el-icon-place linkLocation"
- v-if="component_id !== 'WHOLE'"
- @click="handleLocation(component_id)"
- />
- </div>
- </div>
- <div class="remark-bottom" v-if="audit_flow_node_name">
- <span>{{ '审核流程节点:' + audit_flow_node_name }}</span>
- </div>
- </li>
- </ul>
- <p v-else style="text-align: center">暂无批注</p>
- <el-dialog
- v-if="visible"
- :visible.sync="visible"
- :show-close="true"
- :close-on-click-modal="true"
- :modal-append-to-body="true"
- :append-to-body="true"
- :lock-scroll="true"
- :width="'80%'"
- top="0"
- >
- <iframe v-if="visible" :src="newpath" width="100%" :height="iframeHeight" frameborder="0"></iframe>
- </el-dialog>
- </div>
- </template>
- <script>
- import { getToken, getConfig } from '@/utils/auth';
- export default {
- name: 'AuditRemark',
- props: {
- isAudit: {
- type: Boolean,
- default: false,
- },
- remarkList: {
- type: Array,
- required: true,
- },
- },
- data() {
- return {
- file_preview_url: getConfig() ? getConfig().doc_preview_service_address : '',
- visible: false,
- newpath: '',
- iframeHeight: `${window.innerHeight - 100}px`,
- };
- },
- methods: {
- deleteRemarks(remarkId) {
- this.$emit('deleteRemarks', remarkId);
- },
- handleLocation(componentId) {
- this.$emit('handleLocationRemarks', componentId);
- },
- // 下载文件
- downLoad(file) {
- let userInfor = getToken();
- let AccessToken = '';
- if (userInfor) {
- AccessToken = userInfor.access_token;
- }
- let FileID = file.file_id;
- let data = {
- AccessToken,
- FileID,
- };
- location.href = `${process.env.VUE_APP_EEP}/FileServer/WebFileDownload?AccessToken=${data.AccessToken}&FileID=${data.FileID}`;
- },
- // 预览
- viewDialog(file) {
- this.newpath = `${this.file_preview_url}onlinePreview?url=${Base64.encode(file.file_url)}`;
- this.visible = true;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .audit-remark {
- width: 240px;
- height: 100%;
- overflow: auto;
- border: 1px solid #e5e5e5;
- h5 {
- padding: 0 5px;
- margin: 0;
- font-size: 18px;
- line-height: 40px;
- background: #f2f3f5;
- }
- .btn-box {
- display: flex;
- gap: 8px;
- align-items: center;
- width: 55px;
- padding: 0 10px;
- border-left: 1px solid #e5e5e5;
- }
- .delete-btn {
- color: #f44444;
- }
- ul {
- height: calc(100% - 40px);
- overflow: auto;
- li {
- border-bottom: 1px solid #e5e5e5;
- .el-icon-notebook-2 {
- display: block;
- padding: 10px 10px 0;
- margin-bottom: 4px;
- font-size: 12px;
- color: grey;
- }
- .content-select {
- display: block;
- margin-left: 10px;
- border-bottom: 1px solid #eee;
- }
- > p {
- padding: 5px;
- }
- :deep p {
- margin: 0;
- }
- .remark-bottom {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 5px;
- font-size: 12px;
- color: #555;
- border-top: 1px solid #e5e5e5;
- }
- }
- }
- .file-item {
- display: flex;
- gap: 5px;
- align-items: center;
- padding: 3px;
- margin: 5px;
- background: #f2f3f5;
- border-radius: 3px;
- &-name {
- flex: 1;
- font-size: 12px;
- word-break: break-all;
- }
- .svg-icon {
- flex-shrink: 0;
- font-size: 16px;
- }
- .uploadPreview,
- .download {
- cursor: pointer;
- }
- }
- }
- </style>
|