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