diff --git a/src/api/enterpriseLibrary/technical/technical.js b/src/api/enterpriseLibrary/technical/technical.js new file mode 100644 index 0000000..36fc235 --- /dev/null +++ b/src/api/enterpriseLibrary/technical/technical.js @@ -0,0 +1,46 @@ +import request from '@/utils/request' + +// 人员库->查询列表 +export function listAPI(params) { + return request({ + url: '/smartBid/mainDatabase/personnel/getList', + method: 'GET', + params + }) +} + +/* 人员库->新增人员库 */ +export function addDataAPI(data) { + return request({ + url: '/smartBid/mainDatabase/personnel/addData', + method: 'POST', + data + }) +} + +/* 人员库->修改人员库 */ +export function editDataAPI(data) { + return request({ + url: '/smartBid/mainDatabase/personnel/editData', + method: 'POST', + data + }) +} + +/* 人员库->删除人员库 */ +export function delDataAPI(data) { + return request({ + url: '/smartBid/mainDatabase/personnel/delData', + method: 'POST', + data + }) +} + +/* 人员库->查询详情 */ +export function getDetailDataAPI(params) { + return request({ + url: '/smartBid/mainDatabase/personnel/getDetailData', + method: 'GET', + params + }) +} \ No newline at end of file diff --git a/src/views/enterpriseLibrary/enterprise/index.vue b/src/views/enterpriseLibrary/enterprise/index.vue index 0a7e4f8..d4a40d8 100644 --- a/src/views/enterpriseLibrary/enterprise/index.vue +++ b/src/views/enterpriseLibrary/enterprise/index.vue @@ -516,7 +516,7 @@ export default { } span { - font-size: 16px; + font-size: 14px; white-space: nowrap; font-weight: normal; } diff --git a/src/views/enterpriseLibrary/technical/components/TechnicalForm.vue b/src/views/enterpriseLibrary/technical/components/TechnicalForm.vue index ceabf83..bcff310 100644 --- a/src/views/enterpriseLibrary/technical/components/TechnicalForm.vue +++ b/src/views/enterpriseLibrary/technical/components/TechnicalForm.vue @@ -1,15 +1,403 @@ + - \ No newline at end of file diff --git a/src/views/enterpriseLibrary/technical/components/child/BasicInfo.vue b/src/views/enterpriseLibrary/technical/components/child/BasicInfo.vue new file mode 100644 index 0000000..90cc520 --- /dev/null +++ b/src/views/enterpriseLibrary/technical/components/child/BasicInfo.vue @@ -0,0 +1,126 @@ + + + + + \ No newline at end of file diff --git a/src/views/enterpriseLibrary/technical/components/child/FileInfo.vue b/src/views/enterpriseLibrary/technical/components/child/FileInfo.vue new file mode 100644 index 0000000..67bf102 --- /dev/null +++ b/src/views/enterpriseLibrary/technical/components/child/FileInfo.vue @@ -0,0 +1,110 @@ + + + + + \ No newline at end of file