diff --git a/src/App.vue b/src/App.vue index fc8946e..e753102 100644 --- a/src/App.vue +++ b/src/App.vue @@ -37,4 +37,8 @@ body { } +/deep/ .el-message { + z-index: 999; +} + diff --git a/src/api/hwWebDocument.js b/src/api/hwWebDocument.js new file mode 100644 index 0000000..6573af7 --- /dev/null +++ b/src/api/hwWebDocument.js @@ -0,0 +1,43 @@ +import request from '@/utils/request' + +// 查询Hw资料文件列表 +export function listHwWebDocument(query) { + return request({ + url: '/portal/hwWebDocument/list', method: 'get', params: query + }) +} + +// 查询Hw资料文件详细 +export function getHwWebDocument(documentId) { + return request({ + url: '/portal/hwWebDocument/' + documentId, method: 'get' + }) +} + +// 新增Hw资料文件 +export function addHwWebDocument(data) { + return request({ + url: '/portal/hwWebDocument', method: 'post', data: data + }) +} + +// 修改Hw资料文件 +export function updateHwWebDocument(data) { + return request({ + url: '/portal/hwWebDocument', method: 'put', data: data + }) +} + +// 删除Hw资料文件 +export function delHwWebDocument(documentId) { + return request({ + url: '/portal/hwWebDocument/' + documentId, method: 'delete' + }) +} + +// 获取安全文件地址 +export function getSecureDocumentAddress(data) { + return request({ + url: '/portal/hwWebDocument/getSecureDocumentAddress', method: 'post', data: data + }) +} diff --git a/src/components/editEl/editEl14.vue b/src/components/editEl/editEl14.vue index b564a95..0fe7598 100644 --- a/src/components/editEl/editEl14.vue +++ b/src/components/editEl/editEl14.vue @@ -2,11 +2,15 @@