mooho-base-admin-plus 2.5.10 → 2.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/history.md CHANGED
@@ -104,3 +104,4 @@ mooho-base-admin-plus@2.5.7 - 解决序号来不及加载的问题
104
104
  mooho-base-admin-plus@2.5.8 - 表格只读时禁止选择
105
105
  mooho-base-admin-plus@2.5.9 - 表格增加highlightRow属性和on-current-change事件
106
106
  mooho-base-admin-plus@2.5.10 - 增加系统管理子功能权限判定
107
+ mooho-base-admin-plus@2.5.11 - 修复申请类别编辑的bug
@@ -18152,10 +18152,6 @@ const columnCheck = /* @__PURE__ */ _export_sfc(_sfc_main$1n, [["render", _sfc_r
18152
18152
  async save() {
18153
18153
  await this.$refs.form.validate() ? this.confirm("Front_Msg_Sure_To_Save", async () => {
18154
18154
  let a = this.$refs.form.getFullData();
18155
- if (!(a.formViewCode || "").trim() && !(a.routerPath || "").trim()) {
18156
- this.error("Front_Msg_Form_View_Router_Path_Required");
18157
- return;
18158
- }
18159
18155
  a.processProperty = JSON.stringify(this.$refs.propertyTable.data), a.id ? await modelApi.update("ApplicationType", a) : await modelApi.add("ApplicationType", a), this.success("Front_Msg_Success", () => {
18160
18156
  this.$refs.form.close(), this.$refs.table.loadData();
18161
18157
  });