From 151abbb60177da72ae541e521f01e8e7e4fc6182 Mon Sep 17 00:00:00 2001 From: A0010407 Date: Tue, 17 Oct 2023 17:51:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=87=E5=93=81=E5=A4=87=E4=BB=B6=E9=A2=86?= =?UTF-8?q?=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/device/sparePartsApplicationRecord.js | 44 ++ .../sparePartsApplicationRecord/index.vue | 402 ++++++++++++++++++ 2 files changed, 446 insertions(+) create mode 100644 src/api/device/sparePartsApplicationRecord.js create mode 100644 src/views/device/sparePartsApplicationRecord/index.vue diff --git a/src/api/device/sparePartsApplicationRecord.js b/src/api/device/sparePartsApplicationRecord.js new file mode 100644 index 0000000..ed6fb54 --- /dev/null +++ b/src/api/device/sparePartsApplicationRecord.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询申领记录列表 +export function listSparePartsApplicationRecord(query) { + return request({ + url: '/device/sparePartsApplicationRecord/list', + method: 'get', + params: query + }); +} + +// 查询申领记录详细 +export function getSparePartsApplicationRecord(applyId) { + return request({ + url: '/device/sparePartsApplicationRecord/' + applyId, + method: 'get' + }); +} + +// 新增申领记录 +export function addSparePartsApplicationRecord(data) { + return request({ + url: '/device/sparePartsApplicationRecord', + method: 'post', + data: data + }); +} + +// 修改申领记录 +export function updateSparePartsApplicationRecord(data) { + return request({ + url: '/device/sparePartsApplicationRecord', + method: 'put', + data: data + }); +} + +// 删除申领记录 +export function delSparePartsApplicationRecord(applyId) { + return request({ + url: '/device/sparePartsApplicationRecord/' + applyId, + method: 'delete' + }); +} diff --git a/src/views/device/sparePartsApplicationRecord/index.vue b/src/views/device/sparePartsApplicationRecord/index.vue new file mode 100644 index 0000000..1d3646a --- /dev/null +++ b/src/views/device/sparePartsApplicationRecord/index.vue @@ -0,0 +1,402 @@ + + +