From a90e521d3f37d649e3b9dfc6598c237e6b4771fc Mon Sep 17 00:00:00 2001
From: "JinLu.Yin" <411641505@qq.com>
Date: Tue, 17 May 2022 22:01:51 +0800
Subject: [PATCH] =?UTF-8?q?=E6=A3=80=E6=B5=8B=E9=A1=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/mes/qc/qcindex.js | 44 ++++
src/views/mes/qc/qcindex/index.vue | 366 +++++++++++++++++++++++++++++
2 files changed, 410 insertions(+)
create mode 100644 src/api/mes/qc/qcindex.js
create mode 100644 src/views/mes/qc/qcindex/index.vue
diff --git a/src/api/mes/qc/qcindex.js b/src/api/mes/qc/qcindex.js
new file mode 100644
index 0000000..3db66c8
--- /dev/null
+++ b/src/api/mes/qc/qcindex.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询检测项列表
+export function listQcindex(query) {
+ return request({
+ url: '/mes/qc/qcindex/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询检测项详细
+export function getQcindex(indexId) {
+ return request({
+ url: '/mes/qc/qcindex/' + indexId,
+ method: 'get'
+ })
+}
+
+// 新增检测项
+export function addQcindex(data) {
+ return request({
+ url: '/mes/qc/qcindex',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改检测项
+export function updateQcindex(data) {
+ return request({
+ url: '/mes/qc/qcindex',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除检测项
+export function delQcindex(indexId) {
+ return request({
+ url: '/mes/qc/qcindex/' + indexId,
+ method: 'delete'
+ })
+}
diff --git a/src/views/mes/qc/qcindex/index.vue b/src/views/mes/qc/qcindex/index.vue
new file mode 100644
index 0000000..b0db0d3
--- /dev/null
+++ b/src/views/mes/qc/qcindex/index.vue
@@ -0,0 +1,366 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+