退料批量退料失败问题修复

This commit is contained in:
hongchao 2025-10-15 17:17:52 +08:00
parent fd2015b836
commit 17ddaba060
3 changed files with 19 additions and 8 deletions

View File

@ -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) => {

View File

@ -94,7 +94,7 @@
<checkbox-group v-if="active == 1" @change="onChangeChecked(item)">
<checkbox :checked="item.checked"/>
</checkbox-group>
<span style="font-size: 15px; font-weight: 800;color: #3784fb;"><span style="color: #333">{{index + 1 }}. </span>{{ item.backCode }}</span>
<span style="font-size: 15px; font-weight: 800;color: #3784fb;"><span style="color: #333">{{index + 1 }}. </span>{{ item.repairNum }}</span>
</div>
<div class="title-right">
<uni-tag v-if="item.taskStatus == 10" text="未完成" type="warning" custom-style="warningStyle"/>
@ -118,7 +118,7 @@
<uni-row :gutter="24">
<uni-col :span="6">维修单号</uni-col>
<uni-col :span="18">
<view class="cont">{{ item.repairCode }}</view>
<view class="cont">{{ item.repairTaskCode }}</view>
</uni-col>
</uni-row>
<uni-row :gutter="24">

View File

@ -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',
})
}