档案移交申请

This commit is contained in:
cwchen 2025-09-18 15:56:28 +08:00
parent 9144a584c6
commit ea411b153d
3 changed files with 42 additions and 3 deletions

View File

@ -0,0 +1,37 @@
import request from '@/utils/request'
// 档案移交申请列表
export function getTransferApplyListApi(params) {
return request({
url: '/smartArchives/transferApply/getTransferApplyList',
method: 'GET',
params: params,
})
}
// 新增档案移交申请
export function saveTransferApplyApi(data) {
return request({
url: '/smartArchives/transferApply/saveTransferApply',
method: 'POST',
data
})
}
// 编辑档案移交申请
export function editTransferApplyApi(data) {
return request({
url: '/smartArchives/transferApply/editTransferApply',
method: 'POST',
data
})
}
// 删除档案移交申请
export function delTransferApplyApi(data) {
return request({
url: '/smartArchives/transferApply/delTransferApply',
method: 'POST',
data
})
}

View File

@ -184,7 +184,7 @@
<el-table-column <el-table-column
align="center" align="center"
label="操作" label="操作"
:min-width="dynamicWidth" :width="handleColWidth"
:show-overflow-tooltip="false" :show-overflow-tooltip="false"
v-if="handleShow && showOperation" v-if="handleShow && showOperation"
> >
@ -340,6 +340,8 @@ export default {
columnCheckList: [], columnCheckList: [],
// //
dynamicWidth: 0, dynamicWidth: 0,
//
handleColWidth: 250,
// id // id
idCount: 1, idCount: 1,
// //
@ -393,7 +395,7 @@ export default {
this.getTableList() this.getTableList()
}, },
updated() { updated() {
// // 使 handleColWidth
this.dynamicWidth = this.getOperatorWidth() this.dynamicWidth = this.getOperatorWidth()
}, },
methods: { methods: {

View File

@ -1,5 +1,5 @@
<template> <template>
<!-- 项目管理 --> <!-- 档案移交申请 -->
<div class="app-container"> <div class="app-container">
<TableModel :formLabel="formLabel" :showOperation="true" :showRightTools="true" ref="proTableRef" <TableModel :formLabel="formLabel" :showOperation="true" :showRightTools="true" ref="proTableRef"
:columnsList="columnsList" :request-api="getProListAPI"> :columnsList="columnsList" :request-api="getProListAPI">