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

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, backApplyDetails: obj,
} }
if (param.backApplyInfo.signUrl) delete param.backApplyInfo.signUrl if (param.backApplyInfo.signUrl) delete param.backApplyInfo.signUrl
if(param.backApplyInfo.approveSignList) delete param.backApplyInfo.approveSignList
uni.showLoading({ title: '提交中...', mask: true }) uni.showLoading({ title: '提交中...', mask: true })
insertApp(param) insertApp(param)
.then((res) => { .then((res) => {

View File

@ -94,7 +94,7 @@
<checkbox-group v-if="active == 1" @change="onChangeChecked(item)"> <checkbox-group v-if="active == 1" @change="onChangeChecked(item)">
<checkbox :checked="item.checked"/> <checkbox :checked="item.checked"/>
</checkbox-group> </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>
<div class="title-right"> <div class="title-right">
<uni-tag v-if="item.taskStatus == 10" text="未完成" type="warning" custom-style="warningStyle"/> <uni-tag v-if="item.taskStatus == 10" text="未完成" type="warning" custom-style="warningStyle"/>
@ -118,7 +118,7 @@
<uni-row :gutter="24"> <uni-row :gutter="24">
<uni-col :span="6">维修单号</uni-col> <uni-col :span="6">维修单号</uni-col>
<uni-col :span="18"> <uni-col :span="18">
<view class="cont">{{ item.repairCode }}</view> <view class="cont">{{ item.repairTaskCode }}</view>
</uni-col> </uni-col>
</uni-row> </uni-row>
<uni-row :gutter="24"> <uni-row :gutter="24">

View File

@ -4,12 +4,12 @@ import { http } from '@/utils/http'
* 登录方法 - 调试使用 - 产线环境需注释 * 登录方法 - 调试使用 - 产线环境需注释
*/ */
export const appLoginAPI = (data) => { export const appLoginAPI = (data) => {
return false // return false
// return http({ return http({
// method: 'POST', method: 'POST',
// url: '/auth/login', url: '/auth/login',
// data, data,
// }) })
} }
/** /**
* 获取用户信息 * 获取用户信息
@ -45,4 +45,14 @@ export const getConfigApi = () => {
method: 'GET', method: 'GET',
url: '/auth/getConfig', url: '/auth/getConfig',
}) })
}
/**
* 获取用户签名
*/
export const getSignatureByUser = () => {
return http({
method: 'GET',
url: '/material/archives/getSignatureByUser',
})
} }