From 72c14acd35a980cda366799dc83afe52b8a51fc3 Mon Sep 17 00:00:00 2001
From: gaoshp <291585735@qq.com>
Date: 星期三, 27 八月 2025 20:43:26 +0800
Subject: [PATCH] 固化旧版本
---
src/views/flow/components/TodolistLeft.vue | 49 +++++++++++++++++++++++++++++++++++++++++++------
1 files changed, 43 insertions(+), 6 deletions(-)
diff --git a/src/views/flow/components/TodolistLeft.vue b/src/views/flow/components/TodolistLeft.vue
index 1e42138..771deed 100644
--- a/src/views/flow/components/TodolistLeft.vue
+++ b/src/views/flow/components/TodolistLeft.vue
@@ -1,19 +1,21 @@
<!--
* @Date: 2025-07-01 20:45:15
* @LastEditors: gaoshp
- * @LastEditTime: 2025-08-20 21:01:55
+ * @LastEditTime: 2025-08-27 20:43:12
* @FilePath: /mdmweb/src/views/flow/components/TodolistLeft.vue
-->
<template>
<basic-container>
<!--'cureProgramTask', 鍥哄寲缂栧埗涓嶈兘娣诲姞鏂囦欢-->
- <div class="tool" v-show="['programmingTask', 'repalceProgrammingTask'].includes(row.taskDefinitionKey)">
+ <div class="tool" v-show="['programmingTask', 'repalceProgrammingTask','appendProgrammingTask'].includes(row.taskDefinitionKey)">
<el-button type="primary" plain @click="addApp">娣诲姞鏂囦欢
</el-button>
</div>
+ <el-text type="danger" v-if="row.variables.curedLocked === 'Y'">鍥哄寲绋嬪簭宸插姞閿侊紝璇疯皑鎱庝娇鐢�</el-text>
<el-table :data="tableData" border @row-click="showContent" max-height="200" highlight-current-row>
<!-- <el-table-column prop="machineCode" label="鍔犲伐鏈哄簥">
</el-table-column> -->
+
<el-table-column type="index" label="#" width="40" align="center" />
<el-table-column prop="name" label="绋嬪簭鍚嶇О">
<template #default="{ row }">
@@ -26,11 +28,11 @@
</div>
</template>
</el-table-column>
- <el-table-column fixed="right" label="鎿嶄綔" width="100" align="center">
+ <el-table-column fixed="right" label="鎿嶄綔" width="150" align="center">
<template #default="scope">
<!--'cureProgramTask', 鍥哄寲缂栧埗锛屼笉鑳藉垹闄ゅ拰涓婁紶-->
<a style="color: blue;margin-right: 4px;cursor: pointer;font-size: 12px;"
- v-show="['programmingTask', 'repalceProgrammingTask'].includes(row.taskDefinitionKey)"
+ v-show="['programmingTask', 'repalceProgrammingTask','appendProgrammingTask'].includes(row.taskDefinitionKey)"
type="text" size="small" @click.stop="del(scope.$index, scope.row)">鍒犻櫎</a>
<a style="color: blue;cursor: pointer;font-size: 12px;margin-right: 4px;" type="text" size="small"
@click.stop="downloadFile(scope.$index, scope.row)">涓嬭浇</a>
@@ -40,6 +42,28 @@
</template>
</el-table-column>
</el-table>
+ <h4>闆剁粍浠跺彿: {{row.variables.drawingNo}} 宸ュ簭鍙�: {{row.variables.processNo }} 宸ュ簭鐗堟: {{ row.variables.processEdition }}</h4>
+ <el-collapse>
+ <el-collapse-item title="鍥哄寲鏃х増鏈�" name="1">
+ <el-table :data="fileData" border @row-click="showContent" max-height="200" highlight-current-row>
+ <el-table-column type="index" label="#" width="40" align="center" />
+ <el-table-column prop="name" label="鏂囦欢鍚�">
+ <template #default="{ row }">
+ <div style="display: flex;align-items: center;">
+ <span>{{ row.name }}</span>
+ </div>
+ </template>
+ </el-table-column>
+ <el-table-column fixed="right" label="鎿嶄綔" width="150" align="center">
+ <template #default="scope">
+ <a style="color: blue;cursor: pointer;font-size: 12px;margin-right: 4px;" type="text" size="small"
+ @click.stop="downloadFile(scope.$index, scope.row)">涓嬭浇</a>
+ </template>
+ </el-table-column>
+ </el-table>
+ </el-collapse-item>
+ </el-collapse>
+
<h4>绋嬪簭鍐呭</h4>
<div v-html="appContent" class="app-content">
</div>
@@ -50,7 +74,7 @@
<el-button type="primary" @click="add">纭� 瀹�</el-button>
</div> -->
</el-dialog>
- <el-dialog title="绋嬪簭閫夋嫨" v-model="diffDialog" width="50%">
+ <el-dialog title="绋嬪簭閫夋嫨" v-model="diffDialog" width="80%">
<code-diff :old-string="this.content1" :new-string="this.content2" output-format="side-by-side"
:hideStat="true" :filename="codeDiffFileName1" :newFilename="codeDiffFileName2" />
</el-dialog>
@@ -58,7 +82,7 @@
</template>
<script>
-import { getAppList, getSelectedAppList, getContent, removeAtt } from '@/api/flow/todolist';
+import { getAppList,getFileData, getSelectedAppList, getContent, removeAtt } from '@/api/flow/todolist';
import { exportBlob } from '@/api/common';
import { getToken } from '@/utils/auth';
import NProgress from 'nprogress';
@@ -130,6 +154,7 @@
},
appData: [],
selectionList: [],
+ fileData: [],//宸查�夋枃浠�
optionApp: {
menu: false,
gridBtn: false,
@@ -166,9 +191,21 @@
},
mounted() {
this.getAttList();
+ this.getFileData();
this.onLoad(this.page);
+
},
methods: {
+ getFileData () {
+ getFileData(this.row.processInstanceId).then(res => {
+ if (res.data.code !== 200) {
+ this.$message.error(res.data.msg || '鑾峰彇鏂囦欢澶辫触');
+ return;
+ } else {
+ this.fileData = res.data.data || [];
+ }
+ })
+ },
diffFile(index, row) {
console.log(row)
axios({
--
Gitblit v1.9.3