diff --git a/jwtech-admin-page/src/api/build/account.js b/jwtech-admin-page/src/api/build/account.js new file mode 100644 index 00000000..ad5ec0fd --- /dev/null +++ b/jwtech-admin-page/src/api/build/account.js @@ -0,0 +1,53 @@ +import request from '@/utils/request' + +// 查询农民工工资专用账户列表 +export function listAccount(query) { + return request({ + url: '/build/account/list', + method: 'post', + data: query + }) +} + +// 查询农民工工资专用账户详细 +export function getAccount(id) { + return request({ + url: '/build/account/' + id, + method: 'get' + }) +} + +// 新增农民工工资专用账户 +export function addAccount(data) { + return request({ + url: '/build/account', + method: 'post', + data: data + }) +} + +// 修改农民工工资专用账户 +export function updateAccount(data) { + return request({ + url: '/build/account', + method: 'put', + data: data + }) +} + +// 删除农民工工资专用账户 +export function delAccount(id) { + return request({ + url: '/build/account/' + id, + method: 'delete' + }) +} + +// 导出农民工工资专用账户 +export function exportAccount(query) { + return request({ + url: '/build/account/export', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/earlyWarningManage/warning/options/index.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/earlyWarningManage/warning/options/index.vue index 0087b28d..6790e950 100644 --- a/jwtech-admin-page/src/views/evaluationEarlyWarning/earlyWarningManage/warning/options/index.vue +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/earlyWarningManage/warning/options/index.vue @@ -146,7 +146,7 @@ > - - + --> - - + --> - + /> - + /> --> { + this.downloadFile(res, true, res.msg); + }); }, changeProjectType() { this.handleQuery();