From 32d659432b0e6627758faf39380fc569e56b9799 Mon Sep 17 00:00:00 2001
From: 李喆(开发组) <lzhe@yxqiche.com>
Date: 星期一, 11 八月 2025 16:26:48 +0800
Subject: [PATCH] 1
---
src/views/flow/components/TodolistLeft.vue | 35 +++++++++++++++++++++++++++++------
1 files changed, 29 insertions(+), 6 deletions(-)
diff --git a/src/views/flow/components/TodolistLeft.vue b/src/views/flow/components/TodolistLeft.vue
index 5302b8f..da9210d 100644
--- a/src/views/flow/components/TodolistLeft.vue
+++ b/src/views/flow/components/TodolistLeft.vue
@@ -1,24 +1,25 @@
<!--
* @Date: 2025-07-01 20:45:15
* @LastEditors: gaoshp
- * @LastEditTime: 2025-08-02 13:57:52
+ * @LastEditTime: 2025-08-06 20:40:36
* @FilePath: /mdmweb/src/views/flow/components/TodolistLeft.vue
-->
<template>
<basic-container>
- <div class="tool" v-show="row.taskDefinitionKey === 'programmingTask'">
+ <div class="tool" v-show="['programmingTask','cureProgramTask','repalceProgrammingTask'].includes(row.taskDefinitionKey)">
<avue-form :option="attOption"
v-model="attForm"
- :upload-after="uploadAfter"></avue-form>
+ :upload-after="uploadAfter" class="att-box"></avue-form>
</div>
<el-table :data="tableData" border @row-click="showContent" max-height="200">
<!-- <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="绋嬪簭鍚嶇О">
</el-table-column>
- <el-table-column fixed="right" label="鎿嶄綔" width="100">
- <template #default="scope" v-show="row.taskDefinitionKey === 'programmingTask'">
- <el-button type="text" size="small" @click.stop="del(scope.$index,scope.row)">鍒犻櫎</el-button>
+ <el-table-column fixed="right" label="鎿嶄綔" width="60" align="center">
+ <template #default="scope" >
+ <el-button v-show="['programmingTask','cureProgramTask','repalceProgrammingTask'].includes(row.taskDefinitionKey)" type="text" size="small" @click.stop="del(scope.$index,scope.row)">鍒犻櫎</el-button>
</template>
</el-table-column>
</el-table>
@@ -50,12 +51,14 @@
},
data() {
return {
+ showContentId: '',
attForm: {
att: '',
}, //绋嬪簭涓婁紶琛ㄥ崟
attOption: {
submitBtn: false,
emptyBtn: false,
+ menu: false,
column: [
{
label: '娣诲姞绋嬪簭',
@@ -172,6 +175,11 @@
this.$emit('selection-change',this.tableData)
},
showContent (row, column, event) {
+ if(!row?.id) {
+ this.showContentId = ''
+ return this.appContent = '';
+ }
+ this.showContentId = row.id
getContent(row.id).then(res => {
if(res.data.code === 200) {
this.appContent = res.data.data
@@ -181,6 +189,10 @@
})
},
del (index,row) {
+ if(row.id === this.showContentId) {
+ this.showContentId = '';
+ this.showContent(null, null, null);
+ }
removeAtt(row.id).then(res => {
if(res.data.code === 200) {
this.$message.success('鍒犻櫎鎴愬姛');
@@ -211,4 +223,15 @@
max-height: 400px;
white-space: pre-wrap;
}
+
+</style>
+<style lang="scss">
+ .att-box {
+ .el-form-item--default {
+ margin-bottom: 0;
+ }
+ .avue-form__menu--center {
+ display: none;
+ }
+ }
</style>
\ No newline at end of file
--
Gitblit v1.9.3