shuishen
2024-01-08 ffda2758faca99df10b03b1de3e804d4654d131b
文章分类
2 files modified
331 ■■■■ changed files
src/option/system/dictCategory.js 66 ●●●● patch | view | raw | blame | history
src/views/article/articleCategory.vue 265 ●●●● patch | view | raw | blame | history
src/option/system/dictCategory.js
@@ -1,5 +1,5 @@
export const optionParent = {
  height: 'auto',
  height: "auto",
  calcHeight: 30,
  tip: false,
  searchShow: true,
@@ -22,9 +22,9 @@
        {
          required: true,
          message: "请输入分类编号",
          trigger: "blur"
        }
      ]
          trigger: "blur",
        },
      ],
    },
    {
      label: "分类名称",
@@ -35,9 +35,9 @@
        {
          required: true,
          message: "请输入分类名称",
          trigger: "blur"
        }
      ]
          trigger: "blur",
        },
      ],
    },
    {
      label: "分类排序",
@@ -50,9 +50,9 @@
        {
          required: true,
          message: "请输入分类排序",
          trigger: "blur"
        }
      ]
          trigger: "blur",
        },
      ],
    },
    {
      label: "封存",
@@ -63,12 +63,12 @@
      dicData: [
        {
          label: "否",
          value: 0
          value: 0,
        },
        {
          label: "是",
          value: 1
        }
          value: 1,
        },
      ],
      value: 0,
      slot: true,
@@ -76,30 +76,27 @@
        {
          required: true,
          message: "请选择封存",
          trigger: "blur"
        }
      ]
          trigger: "blur",
        },
      ],
    },
    {
      label: "分类备注",
      prop: "remark",
      hide: true
    }
  ]
      hide: true,
    },
  ],
};
export const optionChild = {
  height: 'auto',
  height: "auto",
  calcHeight: 95,
  tip: false,
  searchShow: true,
  searchMenuSpan: 10,
  tree: true,
  border: true,
  index: true,
  selection: true,
  viewBtn: true,
  menuWidth: 300,
  dialogWidth: 880,
  dialogClickModal: false,
  column: [
@@ -122,15 +119,16 @@
    {
      label: "分类名称",
      prop: "dictValue",
      searchSpan: 4,
      search: true,
      align: "center",
      rules: [
        {
          required: true,
          message: "请输入分类名称",
          trigger: "blur"
        }
      ]
          trigger: "blur",
        },
      ],
    },
    // {
    //   label: "上级分类",
@@ -160,9 +158,9 @@
        {
          required: true,
          message: "请输入分类键值",
          trigger: "blur"
        }
      ]
          trigger: "blur",
        },
      ],
    },
    {
      label: "分类排序",
@@ -174,9 +172,9 @@
        {
          required: true,
          message: "请输入分类排序",
          trigger: "blur"
        }
      ]
          trigger: "blur",
        },
      ],
    },
    // {
    //   label: "封存",
@@ -209,6 +207,6 @@
      prop: "remark",
      align: "center",
      // hide: true
    }
  ]
    },
  ],
};
src/views/article/articleCategory.vue
@@ -40,8 +40,8 @@
            @click.stop="handleAdd(scope.row,scope.index)" v-if="userInfo.role_name.includes('admin')">新增子项
          </el-button>
        </template> -->
      <template slot-scope="{row}" slot="isSealed">
        <el-tag>{{ row.isSealed === 0 ? '否' : '是' }}</el-tag>
            <template slot-scope="{row, size}" slot="isSealed">
                <el-tag :size="size">{{ row.isSealed === 0 ? '否' : '是' }}</el-tag>
      </template>
    </avue-crud>
    <!-- </el-dialog> -->
@@ -57,14 +57,14 @@
    add,
    getDict,
    getDictTree
  } from "@/api/system/dictbiz";
} from "@/api/system/dictbiz"
  import {
    optionParent,
    optionChild
  } from "@/option/system/dictCategory";
} from "@/option/system/dictCategory"
  import {
    mapGetters
  } from "vuex";
} from "vuex"
  export default {
    data() {
@@ -93,8 +93,15 @@
        dataParent: [],
        dataChild: [],
        optionParent: optionParent,
        optionChild: optionChild,
      };
            optionChild: {
                ...optionChild,
                labelWidth: 120,
                searchLabelWidth: 96,
                searchShow: true,
                searchMenuSpan: 3,
                menuWidth: 160,
            },
        }
    },
    computed: {
      ...mapGetters(["userInfo", "permission"]),
@@ -104,14 +111,14 @@
          delBtn: this.vaildData(this.permission.dictbiz_delete, false),
          editBtn: this.vaildData(this.permission.dictbiz_edit, false),
          viewBtn: false,
        };
            }
      },
      ids() {
        let ids = [];
            let ids = []
        this.selectionList.forEach(ele => {
          ids.push(ele.id);
        });
        return ids.join(",");
                ids.push(ele.id)
            })
            return ids.join(",")
      }
    },
    mounted() {
@@ -120,49 +127,49 @@
    methods: {
      initData() {
        getDictTree().then(res => {
          const column = this.findObject(this.optionChild.column, "parentId");
          column.dicData = res.data.data;
        });
                const column = this.findObject(this.optionChild.column, "parentId")
                column.dicData = res.data.data
            })
      },
      handleAdd(row) {
        this.formChild.dictValue = "";
        this.formChild.dictKey = "";
        this.formChild.sort = 0;
        this.formChild.isSealed = 0;
        this.formChild.remark = "";
        this.formChild.parentId = row.id;
        this.$refs.crudChild.rowAdd();
            this.formChild.dictValue = ""
            this.formChild.dictKey = ""
            this.formChild.sort = 0
            this.formChild.isSealed = 0
            this.formChild.remark = ""
            this.formChild.parentId = row.id
            this.$refs.crudChild.rowAdd()
      },
      rowSave(row, done, loading) {
        const form = {
          ...row,
          dictKey: -1,
        };
            }
        add(form).then(() => {
          this.onLoadParent(this.pageParent);
                this.onLoadParent(this.pageParent)
          this.$message({
            type: "success",
            message: "操作成功!"
          });
          done();
                })
                done()
        }, error => {
          window.console.log(error);
          loading();
        });
                window.console.log(error)
                loading()
            })
      },
      rowUpdate(row, index, done, loading) {
        update(row).then(() => {
          this.onLoadParent(this.pageParent);
                this.onLoadParent(this.pageParent)
          this.$message({
            type: "success",
            message: "操作成功!"
          });
          this.onLoadChild(this.pageChild);
          done();
                })
                this.onLoadChild(this.pageChild)
                done()
        }, error => {
          window.console.log(error);
          loading();
        });
                window.console.log(error)
                loading()
            })
      },
      rowDel(row) {
        this.$confirm("确定将选择数据删除?", {
@@ -171,53 +178,53 @@
            type: "warning"
          })
          .then(() => {
            return remove(row.id);
                    return remove(row.id)
          })
          .then(() => {
            this.onLoadParent(this.pageParent);
                    this.onLoadParent(this.pageParent)
            this.$message({
              type: "success",
              message: "操作成功!"
            });
          });
                    })
                })
      },
      handleRowClick(row) {
        this.query = {};
        this.parentId = row.id;
        this.dictValue = row.dictValue;
            this.query = {}
            this.parentId = row.id
            this.dictValue = row.dictValue
        const code = this.findObject(this.optionChild.column, "code");
        code.value = row.code;
        const parentId = this.findObject(this.optionChild.column, "parentId");
        parentId.value = row.id;
            const code = this.findObject(this.optionChild.column, "code")
            code.value = row.code
            const parentId = this.findObject(this.optionChild.column, "parentId")
            parentId.value = row.id
        this.formChild.code = row.code;
        this.formChild.parentId = row.id;
            this.formChild.code = row.code
            this.formChild.parentId = row.id
        this.box = true;
        this.onLoadChild(this.pageChild);
            this.box = true
            this.onLoadChild(this.pageChild)
      },
      searchReset() {
        this.query = {};
        this.onLoadParent(this.pageParent);
            this.query = {}
            this.onLoadParent(this.pageParent)
      },
      searchChange(params, done) {
        this.query = params;
        this.pageParent.currentPage = 1;
        this.onLoadParent(this.pageParent, params);
        done();
            this.query = params
            this.pageParent.currentPage = 1
            this.onLoadParent(this.pageParent, params)
            done()
      },
      selectionChange(list) {
        this.selectionList = list;
            this.selectionList = list
      },
      selectionClear() {
        this.selectionList = [];
        this.$refs.crud.toggleSelection();
            this.selectionList = []
            this.$refs.crud.toggleSelection()
      },
      handleDelete() {
        if (this.selectionList.length === 0) {
          this.$message.warning("请选择至少一条数据");
          return;
                this.$message.warning("请选择至少一条数据")
                return
        }
        this.$confirm("确定将选择数据删除?", {
            confirmButtonText: "确定",
@@ -225,61 +232,61 @@
            type: "warning"
          })
          .then(() => {
            return remove(this.ids);
                    return remove(this.ids)
          })
          .then(() => {
            this.onLoadParent(this.pageParent);
                    this.onLoadParent(this.pageParent)
            this.$message({
              type: "success",
              message: "操作成功!"
            });
            this.$refs.crud.toggleSelection();
          });
                    })
                    this.$refs.crud.toggleSelection()
                })
      },
      beforeOpen(done, type) {
        if (["edit", "view"].includes(type)) {
          getDict(this.formParent.id).then(res => {
            this.formParent = res.data.data;
          });
                    this.formParent = res.data.data
                })
        }
        done();
            done()
      },
      currentChange(currentPage) {
        this.pageParent.currentPage = currentPage;
            this.pageParent.currentPage = currentPage
      },
      sizeChange(pageSize) {
        this.pageParent.pageSize = pageSize;
            this.pageParent.pageSize = pageSize
      },
      refreshChange() {
        this.onLoadParent(this.pageParent, this.query);
            this.onLoadParent(this.pageParent, this.query)
      },
      rowSaveChild(row, done, loading) {
        row.code = "articleType"
        row.parentId = "1722966265111248897"
        add(row).then(() => {
          this.onLoadChild(this.pageChild);
                this.onLoadChild(this.pageChild)
          this.$message({
            type: "success",
            message: "操作成功!"
          });
          done();
                })
                done()
        }, error => {
          window.console.log(error);
          loading();
        });
                window.console.log(error)
                loading()
            })
      },
      rowUpdateChild(row, index, done, loading) {
        update(row).then(() => {
          this.onLoadChild(this.pageChild);
                this.onLoadChild(this.pageChild)
          this.$message({
            type: "success",
            message: "操作成功!"
          });
          done();
                })
                done()
        }, error => {
          window.console.log(error);
          loading();
        });
                window.console.log(error)
                loading()
            })
      },
      rowDelChild(row) {
        this.$confirm("确定将选择数据删除?", {
@@ -288,37 +295,37 @@
            type: "warning"
          })
          .then(() => {
            return remove(row.id);
                    return remove(row.id)
          })
          .then(() => {
            this.onLoadChild(this.pageChild);
                    this.onLoadChild(this.pageChild)
            this.$message({
              type: "success",
              message: "操作成功!"
            });
          });
                    })
                })
      },
      searchResetChild() {
        this.query = {};
        this.onLoadChild(this.pageChild);
            this.query = {}
            this.onLoadChild(this.pageChild)
      },
      searchChangeChild(params, done) {
        this.query = params;
        this.pageChild.currentPage = 1;
        this.onLoadChild(this.pageChild, params);
        done();
            this.query = params
            this.pageChild.currentPage = 1
            this.onLoadChild(this.pageChild, params)
            done()
      },
      selectionChangeChild(list) {
        this.selectionList = list;
            this.selectionList = list
      },
      selectionClearChild() {
        this.selectionList = [];
        this.$refs.crudChild.toggleSelection();
            this.selectionList = []
            this.$refs.crudChild.toggleSelection()
      },
      handleDeleteChild() {
        if (this.selectionList.length === 0) {
          this.$message.warning("请选择至少一条数据");
          return;
                this.$message.warning("请选择至少一条数据")
                return
        }
        this.$confirm("确定将选择数据删除?", {
            confirmButtonText: "确定",
@@ -326,73 +333,73 @@
            type: "warning"
          })
          .then(() => {
            return remove(this.ids);
                    return remove(this.ids)
          })
          .then(() => {
            this.onLoadChild(this.pageChild);
                    this.onLoadChild(this.pageChild)
            this.$message({
              type: "success",
              message: "操作成功!"
            });
            this.$refs.crudChild.toggleSelection();
          });
                    })
                    this.$refs.crudChild.toggleSelection()
                })
      },
      beforeOpenChild(done, type) {
        if (["add", "edit"].includes(type)) {
          this.initData();
                this.initData()
        }
        if (["edit", "view"].includes(type)) {
          getDict(this.formChild.id).then(res => {
            this.formChild = res.data.data;
          });
                    this.formChild = res.data.data
                })
        }
        done();
            done()
      },
      beforeCloseChild(done) {
        this.$refs.crudChild.value.parentId = this.parentId;
            this.$refs.crudChild.value.parentId = this.parentId
        this.$refs.crudChild.option.column.filter(item => {
          if (item.prop === "parentId") {
            item.value = this.parentId;
                    item.value = this.parentId
          }
        });
        done();
            })
            done()
      },
      currentChangeChild(currentPage) {
        this.pageChild.currentPage = currentPage;
            this.pageChild.currentPage = currentPage
      },
      sizeChangeChild(pageSize) {
        this.pageChild.pageSize = pageSize;
            this.pageChild.pageSize = pageSize
      },
      refreshChangeChild() {
        this.onLoadChild(this.pageChild, this.query);
            this.onLoadChild(this.pageChild, this.query)
      },
      onLoadParent(page, params = {}) {
        this.loading = true;
            this.loading = true
        getParentList(
          page.currentPage,
          page.pageSize,
          Object.assign(params, this.query)
        ).then(res => {
          const data = res.data.data;
          this.pageParent.total = data.total;
          this.dataParent = data.records;
          this.loading = false;
          this.selectionClear();
        });
                const data = res.data.data
                this.pageParent.total = data.total
                this.dataParent = data.records
                this.loading = false
                this.selectionClear()
            })
      },
      onLoadChild(page, params = {}) {
        this.loadingChild = true;
            this.loadingChild = true
        getChildList(
          page.currentPage,
          page.pageSize,
          this.parentId,
          Object.assign(params, this.query)
        ).then(res => {
          this.dataChild = res.data.data;
          this.loadingChild = false;
          this.selectionClear();
        });
                this.dataChild = res.data.data
                this.loadingChild = false
                this.selectionClear()
            })
      }
    }
  };
}
</script>