@@ -124,6 +124,13 @@ export const AppointmentConfirmOrderRefuseItemApi = {
data
})
},
+ // 无需处理
+ noProcess: async (data: any) => {
+ return await request.post({
+ url: `/pressure2/appointment-confirm-refuse-year-item/no-process`,
+ data
+ })
+ },
/** 批量退回 */
batchRollback: async (data: any) => {
return await request.post({
@@ -619,9 +619,9 @@ const handleUpdate = (row: AppointmentConfirmOrderRefuseItemVO, prop: string) =>
loading.value = true
const params = {
id: row.id,
- processStatus: 1
+ scene: row.orderType === 3 ? 2 : row.scene
}
- AppointmentConfirmOrderRefuseItemApi.update(params)
+ AppointmentConfirmOrderRefuseItemApi.noProcess(params)
.then((res) => {
console.log(res)
if (res) {