This commit is contained in:
宋文超
2022-11-17 10:06:32 +08:00
25 changed files with 2459 additions and 1841 deletions

View File

@@ -1786,7 +1786,23 @@ export default {
};
//确认复制
const sureCopy = () => {
state.dcopyModal = false;
let obj = {
routerId: state.routerId,
type: 2,
};
api
.handleLearnPath(obj)
.then((res) => {
console.log("复制成功", res);
message.destroy();
message.success("复制成功");
state.dcopyModal = false;
reget();
})
.catch((err) => {
console.log("复制失败", err);
});
};
const showStop = () => {
state.stopModal = true;