diff --git a/src/assets/styles/ruoyi.scss b/src/assets/styles/ruoyi.scss index c12876d..78bf408 100644 --- a/src/assets/styles/ruoyi.scss +++ b/src/assets/styles/ruoyi.scss @@ -174,7 +174,7 @@ .list-group-item { border-bottom: 1px solid #e7eaec; - border-top: 1px solid #e7eaec; + // border-top: 1px solid #e7eaec; margin-bottom: -1px; padding: 11px 0px; font-size: 13px; diff --git a/src/components/Template/HandleFormItem.vue b/src/components/Template/HandleFormItem.vue index 1aab7de..00ed563 100644 --- a/src/components/Template/HandleFormItem.vue +++ b/src/components/Template/HandleFormItem.vue @@ -1164,8 +1164,8 @@ export default { isSame = isEqual(current.oldValue, current.newValue); isOldValueEmpty = isValueEmpty(current.oldValue); } else if (this.type === "checkboxTree") { - const current = this.getCheckboxTreeInfo(); - const { oldValue = {}, newValue } = current; + const current = this.getCheckboxTreeInfo() || {}; + const { oldValue = {}, newValue = {} } = current; if (currentHandleType === "checkboxTreeCheckbox") { isSame = isEqual(oldValue.checked, newValue.checked); isOldValueEmpty = oldValue.checked === undefined; @@ -1248,7 +1248,7 @@ export default { const current = this.getCheckboxTreeInfo(); if (this.currentHandleType === "checkboxTreeCheckbox") { const { oldValue = {}, newValue = {} } = current; - recordOldVlaue = `${oldValue.label || ''}:${oldValue.checked ? '勾选' : '未勾选'}`; + recordOldVlaue = `${oldValue?.label || ''}:${oldValue?.checked ? '勾选' : '未勾选'}`; recordValue = `${newValue.label || ''}:${newValue.checked ? '勾选' : '未勾选'}`; isModify = newValue.checked !== undefined; } else { diff --git a/src/views/business/comps/template/comps/dj/DJ001.vue b/src/views/business/comps/template/comps/dj/DJ001.vue index 93c6f09..14e7fde 100644 --- a/src/views/business/comps/template/comps/dj/DJ001.vue +++ b/src/views/business/comps/template/comps/dj/DJ001.vue @@ -13,7 +13,7 @@