no message
parent
fd1c7e7325
commit
cf76e7d7b2
|
|
@ -240,11 +240,8 @@
|
||||||
* 任务取消事件
|
* 任务取消事件
|
||||||
*/
|
*/
|
||||||
async function hanndleCancel(record) {
|
async function hanndleCancel(record) {
|
||||||
const params = {
|
|
||||||
taskID: record.id,
|
|
||||||
};
|
|
||||||
try {
|
try {
|
||||||
const res = await cancelTes(params);
|
const res = await cancelTes(record.id);
|
||||||
if (res && res.returnCode === 0) {
|
if (res && res.returnCode === 0) {
|
||||||
createMessage.success('操作成功');
|
createMessage.success('操作成功');
|
||||||
handleSuccess();
|
handleSuccess();
|
||||||
|
|
|
||||||
|
|
@ -75,6 +75,7 @@
|
||||||
let tenantId = getTenantId();
|
let tenantId = getTenantId();
|
||||||
const formData = reactive<Record<string, any>>({
|
const formData = reactive<Record<string, any>>({
|
||||||
id: '',
|
id: '',
|
||||||
|
businessDetailId: '',
|
||||||
carrierCode: '',
|
carrierCode: '',
|
||||||
carrierType: '',
|
carrierType: '',
|
||||||
taskType: '',
|
taskType: '',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue