yujinwen 2 月之前
父節點
當前提交
e16f8a17b0

+ 1 - 1
src/views/system/helpCenter/classify/Index.vue

@@ -117,7 +117,7 @@ function handleShowAuthSetClassify(item){
 }
 
 function treeExpandAndFoldIconRender (h, { type, row }) {
-  return type === 'expand' ? <CaretDownSmallIcon /> : <CaretRightSmallIcon />;
+  return type === 'expand' ? <CaretRightSmallIcon /> : <CaretDownSmallIcon /> ;
 }
 
 </script>

+ 1 - 1
src/views/system/helpCenter/classify/components/EditClassify.vue

@@ -37,7 +37,7 @@ async function handleSave(){
   const params={
     ParentId:formData.parent||0,
     HelpDocClassifyName:formData.name,
-    Level:parentLevel,
+    Level:formData.parent?parentLevel:parentLevel-1,
   }
   const res=props.data?await apiSystemHelpCenter.classifyEdit({
     HelpDocClassifyId:props.data.ClassifyId,