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 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) { export async function getProSelectApi(data) {

View File

@ -15,9 +15,9 @@ export default {
created() { created() {
NProgress.configure({ showSpinner: false }); NProgress.configure({ showSpinner: false });
}, },
mounted() { mounted() {
this.load(); this.load();
}, },
watch: { watch: {
$route: function () { $route: function () {
this.load(); this.load();

View File

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

View File

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