修改合同查询操作

This commit is contained in:
赵毅 2025-12-05 09:56:37 +08:00
parent b226641a52
commit b9ce0ed741

View File

@ -255,6 +255,17 @@ export default {
ec_apply_id: storeValue.ec_apply_id
}
request(apiArr.ecQuery, "POST", params).then(res => {
if (res.resp_data.ec_status === 'COMPLETED') {
uni.showToast({
title: '申请通过',
icon: 'success'
});
} else {
uni.showToast({
title: '申请未通过',
icon: 'none'
});
}
})
},
//