From 17ddaba0606e4d52a521ec02545c363d68bdc291 Mon Sep 17 00:00:00 2001 From: hongchao <3228015117@qq.com> Date: Wed, 15 Oct 2025 17:17:52 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=80=E6=96=99=E6=89=B9=E9=87=8F=E9=80=80?= =?UTF-8?q?=E6=96=99=E5=A4=B1=E8=B4=A5=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/back/backCode.vue | 1 + src/pages/repair/testExamine/index.vue | 4 ++-- src/services/index.js | 22 ++++++++++++++++------ 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/src/pages/back/backCode.vue b/src/pages/back/backCode.vue index f8f7321..d012c72 100644 --- a/src/pages/back/backCode.vue +++ b/src/pages/back/backCode.vue @@ -728,6 +728,7 @@ const submitCode = async () => { backApplyDetails: obj, } if (param.backApplyInfo.signUrl) delete param.backApplyInfo.signUrl + if(param.backApplyInfo.approveSignList) delete param.backApplyInfo.approveSignList uni.showLoading({ title: '提交中...', mask: true }) insertApp(param) .then((res) => { diff --git a/src/pages/repair/testExamine/index.vue b/src/pages/repair/testExamine/index.vue index c9ac67d..42e6e70 100644 --- a/src/pages/repair/testExamine/index.vue +++ b/src/pages/repair/testExamine/index.vue @@ -94,7 +94,7 @@ - {{index + 1 }}. {{ item.backCode }} + {{index + 1 }}. {{ item.repairNum }}
@@ -118,7 +118,7 @@ 维修单号: - {{ item.repairCode }} + {{ item.repairTaskCode }} diff --git a/src/services/index.js b/src/services/index.js index 850101c..7b6b26c 100644 --- a/src/services/index.js +++ b/src/services/index.js @@ -4,12 +4,12 @@ import { http } from '@/utils/http' * 登录方法 - 调试使用 - 产线环境需注释 */ export const appLoginAPI = (data) => { - return false - // return http({ - // method: 'POST', - // url: '/auth/login', - // data, - // }) + // return false + return http({ + method: 'POST', + url: '/auth/login', + data, + }) } /** * 获取用户信息 @@ -45,4 +45,14 @@ export const getConfigApi = () => { method: 'GET', url: '/auth/getConfig', }) +} + +/** + * 获取用户签名 + */ +export const getSignatureByUser = () => { + return http({ + method: 'GET', + url: '/material/archives/getSignatureByUser', + }) } \ No newline at end of file