|
@@ -126,7 +126,12 @@ export default {
|
|
|
},
|
|
|
mounted() {},
|
|
|
methods: {
|
|
|
- ...mapMutations("card", ["setPages", "setCurElement", "setCardConfig"]),
|
|
|
+ ...mapMutations("card", [
|
|
|
+ "setPages",
|
|
|
+ "setCurElement",
|
|
|
+ "setCardConfig",
|
|
|
+ "setTopicNos"
|
|
|
+ ]),
|
|
|
...mapActions("card", ["rebuildPages", "resetElementProp"]),
|
|
|
modifyColumnNum(item) {
|
|
|
this.$confirm(
|
|
@@ -147,6 +152,7 @@ export default {
|
|
|
this.form.columnNumber = val;
|
|
|
this.setCardConfig(this.form);
|
|
|
this.setPages([]);
|
|
|
+ this.setTopicNos([]);
|
|
|
this.$emit("init-page");
|
|
|
},
|
|
|
configChange() {
|