This commit is contained in:
liang.chao 2025-11-28 18:27:48 +08:00
parent bdcd881e3c
commit 77e2dce7cd
4 changed files with 16 additions and 6 deletions

View File

@ -38,6 +38,16 @@ export function delTransferProblemApi(id) {
data: data
});
}
export function getTransferProblemById(id) {
const data = {
id: id
};
return request({
url: '/blade-system/transferProblem/getTransferProblemById',
method: 'POST',
data: data
});
}
// 已移交确认工程下拉选
export async function getProSelectApi(data) {

View File

@ -61,13 +61,13 @@ export default {
column: [
{
label: '数据加密名称',
label: '加密名称',
prop: 'encryptName',
search: true,
},
{
label: '数据加密类型',
label: '加密类型',
prop: 'encryptType', //使 key
type: 'select', //
dicUrl: '/blade-system/system/dict/data/type', //

View File

@ -51,7 +51,7 @@ export default {
},
selectionList: [],
treeDataList: [],
projectList: [], //
projectList: [],
option: {
height: 'auto',
calcHeight: 32,