bug 78145

This commit is contained in:
赵霄
2023-11-06 10:00:16 +08:00
parent 3ee38e6b22
commit 82d4560f23
@@ -56,7 +56,7 @@
<div class="bottom-operate-box">
<!--取消-->
<a-button type="primary" ghost :loading="loading">{{ $t('cancel') }}</a-button>
<a-button type="primary" ghost :loading="loading" @click="handleCancel">{{ $t('cancel') }}</a-button>
<!--保存-->
<a-button type="primary" :loading="loading" @click="handleSave" v-has="'dynamicMessage:save'">{{
$t('preservation')
@@ -328,6 +328,9 @@ export default {
})
}
})
},
handleCancel () {
this.$router.go(-1)
}
}
}