mirror of
https://github.com/chillzhuang/Saber.git
synced 2024-11-25 11:59:27 +08:00
menu load
This commit is contained in:
parent
6eb1b006cc
commit
9a84c3b812
@ -19,6 +19,9 @@ export const remove = (ids) => {
|
||||
method: 'post',
|
||||
data: {
|
||||
ids,
|
||||
},
|
||||
meta: {
|
||||
isSerialize: true,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -16,6 +16,9 @@ export const remove = (ids) => {
|
||||
method: 'post',
|
||||
data: {
|
||||
ids,
|
||||
},
|
||||
meta: {
|
||||
isSerialize: true,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -16,6 +16,9 @@ export const remove = (ids) => {
|
||||
method: 'post',
|
||||
data: {
|
||||
ids,
|
||||
},
|
||||
meta: {
|
||||
isSerialize: true,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -16,6 +16,9 @@ export const remove = (ids) => {
|
||||
method: 'post',
|
||||
data: {
|
||||
ids,
|
||||
},
|
||||
meta: {
|
||||
isSerialize: true,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -16,6 +16,9 @@ export const remove = (ids) => {
|
||||
method: 'post',
|
||||
data: {
|
||||
ids,
|
||||
},
|
||||
meta: {
|
||||
isSerialize: true,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -22,6 +22,9 @@ export const remove = (ids) => {
|
||||
method: 'post',
|
||||
data: {
|
||||
ids,
|
||||
},
|
||||
meta: {
|
||||
isSerialize: true,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -22,6 +22,9 @@ export const remove = (ids) => {
|
||||
method: 'post',
|
||||
data: {
|
||||
ids,
|
||||
},
|
||||
meta: {
|
||||
isSerialize: true,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -25,6 +25,9 @@ export const remove = (ids) => {
|
||||
method: 'post',
|
||||
data: {
|
||||
ids,
|
||||
},
|
||||
meta: {
|
||||
isSerialize: true,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -43,9 +43,9 @@ import tags from "./tags";
|
||||
import top from "./top/";
|
||||
import sidebar from "./sidebar/";
|
||||
import admin from "@/util/admin";
|
||||
import { validatenull } from "@/util/validate";
|
||||
import { calcDate } from "@/util/date.js";
|
||||
import { getStore } from "@/util/store.js";
|
||||
// import { validatenull } from "@/util/validate";
|
||||
// import { calcDate } from "@/util/date.js";
|
||||
// import { getStore } from "@/util/store.js";
|
||||
export default {
|
||||
components: {
|
||||
top,
|
||||
|
@ -92,6 +92,7 @@ export default {
|
||||
rowSave(row, loading) {
|
||||
add(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -101,6 +102,7 @@ export default {
|
||||
rowUpdate(row, index, loading) {
|
||||
update(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -108,12 +110,21 @@ export default {
|
||||
});
|
||||
},
|
||||
rowDel(row) {
|
||||
remove(row.id).then(() => {
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
this.$confirm("确定将选删除?", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
})
|
||||
.then(() => {
|
||||
return remove(row.id);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
handleDelete() {
|
||||
if (this.selectionList.length === 0) {
|
||||
@ -129,6 +140,7 @@ export default {
|
||||
return remove(this.ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
|
@ -95,6 +95,7 @@ export default {
|
||||
rowSave(row, loading) {
|
||||
add(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -104,6 +105,7 @@ export default {
|
||||
rowUpdate(row, index, loading) {
|
||||
update(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -111,12 +113,21 @@ export default {
|
||||
});
|
||||
},
|
||||
rowDel(row) {
|
||||
remove(row.id).then(() => {
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
this.$confirm("确定将选删除?", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
})
|
||||
.then(() => {
|
||||
return remove(row.id);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
selectionChange(list) {
|
||||
this.selectionList = list;
|
||||
@ -135,6 +146,7 @@ export default {
|
||||
return remove(this.ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
|
@ -118,6 +118,7 @@ export default {
|
||||
rowSave(row, loading) {
|
||||
add(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -127,6 +128,7 @@ export default {
|
||||
rowUpdate(row, index, loading) {
|
||||
update(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -134,12 +136,21 @@ export default {
|
||||
});
|
||||
},
|
||||
rowDel(row) {
|
||||
remove(row.id).then(() => {
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
this.$confirm("确定将选删除?", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
})
|
||||
.then(() => {
|
||||
return remove(row.id);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
selectionChange(list) {
|
||||
this.selectionList = list;
|
||||
@ -158,6 +169,7 @@ export default {
|
||||
return remove(this.ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
|
@ -79,6 +79,7 @@ export default {
|
||||
rowSave(row, loading) {
|
||||
add(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -88,6 +89,7 @@ export default {
|
||||
rowUpdate(row, index, loading) {
|
||||
update(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -95,12 +97,21 @@ export default {
|
||||
});
|
||||
},
|
||||
rowDel(row) {
|
||||
remove(row.id).then(() => {
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
this.$confirm("确定将选删除?", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
})
|
||||
.then(() => {
|
||||
return remove(row.id);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
selectionChange(list) {
|
||||
this.selectionList = list;
|
||||
|
@ -115,6 +115,7 @@ export default {
|
||||
rowSave(row, loading) {
|
||||
add(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -123,6 +124,7 @@ export default {
|
||||
},
|
||||
rowUpdate(row, index, loading) {
|
||||
update(row).then(() => {
|
||||
this.onLoad(this.page);
|
||||
loading();
|
||||
this.$message({
|
||||
type: "success",
|
||||
@ -131,12 +133,21 @@ export default {
|
||||
});
|
||||
},
|
||||
rowDel(row) {
|
||||
remove(row.id).then(() => {
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
this.$confirm("确定将选删除?", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
})
|
||||
.then(() => {
|
||||
return remove(row.id);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
selectionChange(list) {
|
||||
this.selectionList = list;
|
||||
@ -170,6 +181,7 @@ export default {
|
||||
return remove(this.ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
|
@ -129,6 +129,7 @@ export default {
|
||||
rowSave(row, loading) {
|
||||
add(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -138,6 +139,7 @@ export default {
|
||||
rowUpdate(row, index, loading) {
|
||||
update(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -145,12 +147,21 @@ export default {
|
||||
});
|
||||
},
|
||||
rowDel(row) {
|
||||
remove(row.id).then(() => {
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
this.$confirm("确定将选删除?", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
})
|
||||
.then(() => {
|
||||
return remove(row.id);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
selectionChange(list) {
|
||||
this.selectionList = list;
|
||||
@ -169,6 +180,7 @@ export default {
|
||||
return remove(this.ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
|
@ -111,6 +111,7 @@ export default {
|
||||
rowSave(row, loading) {
|
||||
add(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -120,6 +121,7 @@ export default {
|
||||
rowUpdate(row, index, loading) {
|
||||
update(row).then(() => {
|
||||
loading();
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -127,12 +129,21 @@ export default {
|
||||
});
|
||||
},
|
||||
rowDel(row) {
|
||||
remove(row.id).then(() => {
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
this.$confirm("确定将选删除?", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
})
|
||||
.then(() => {
|
||||
return remove(row.id);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
selectionChange(list) {
|
||||
this.selectionList = list;
|
||||
@ -151,6 +162,7 @@ export default {
|
||||
return remove(this.ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
@ -173,6 +185,7 @@ export default {
|
||||
return build(this.ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.onLoad(this.page);
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "操作成功!"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// 基础路径 注意发布之前要先修改这里
|
||||
let baseUrl = './'
|
||||
let url = 'http://localhost'
|
||||
let url = 'http://118.24.148.246:8800'
|
||||
module.exports = {
|
||||
baseUrl: baseUrl, // 根据你的实际情况更改这里
|
||||
lintOnSave: true,
|
||||
|
Loading…
Reference in New Issue
Block a user