This commit is contained in:
2025-09-06 19:20:17 +08:00
9 changed files with 230 additions and 337 deletions

View File

@ -168,7 +168,7 @@
</el-link>
</template>
</el-table-column>
<el-table-column label="操作" width="90" align="center" v-if="fileStatus != '1'">
<el-table-column label="操作" align="center" v-if="fileStatus != '1'">
<template #default="scope">
<el-button type="danger" link icon="Delete" @click="handleDeleteFile(scope.row)"> 删除 </el-button>
</template>

View File

@ -33,15 +33,21 @@
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
</template>
<el-table v-loading="loading" :data="listOfFormalitiesList" @selection-change="handleSelectionChange" row-key="id"
default-expand-all>
<el-table
v-loading="loading"
:data="listOfFormalitiesList"
@selection-change="handleSelectionChange"
row-key="id"
default-expand-all
style="height: calc(100vh - 300px); overflow-y: auto"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="名称" prop="name" />
</el-table>
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum"
v-model:limit="queryParams.pageSize" @pagination="getList" />
</el-card>
<!-- 添加或修改手续办理清单模板对话框 -->
<el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
<el-form ref="listOfFormalitiesFormRef" :model="form" :rules="rules" label-width="80px">