This commit is contained in:
parent
bdcd881e3c
commit
77e2dce7cd
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -15,9 +15,9 @@ export default {
|
|||
created() {
|
||||
NProgress.configure({ showSpinner: false });
|
||||
},
|
||||
mounted() {
|
||||
this.load();
|
||||
},
|
||||
mounted() {
|
||||
this.load();
|
||||
},
|
||||
watch: {
|
||||
$route: function () {
|
||||
this.load();
|
||||
|
|
|
|||
|
|
@ -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', // 接口地址
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ export default {
|
|||
},
|
||||
selectionList: [],
|
||||
treeDataList: [],
|
||||
projectList: [], // 新增:存储项目列表数据
|
||||
projectList: [],
|
||||
option: {
|
||||
height: 'auto',
|
||||
calcHeight: 32,
|
||||
|
|
|
|||
Loading…
Reference in New Issue