From e36456c686cc496e79112fe8157c4af8c1a887a1 Mon Sep 17 00:00:00 2001 From: xzt <1113240624@qq.com> Date: Fri, 21 Jun 2024 15:02:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jwtech-admin-page/src/api/build/account.js | 53 +++++++++++++++++++ .../warning/options/index.vue | 4 +- .../projectProcess/index.vue | 4 +- .../projectStatisticsSort/components/list.vue | 23 +++++--- 4 files changed, 72 insertions(+), 12 deletions(-) create mode 100644 jwtech-admin-page/src/api/build/account.js 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();