jwyu 1 年之前
父节点
当前提交
f7898c42ec

+ 2 - 2
src/views/classify_manage/classifyEnlistV2.vue

@@ -150,7 +150,7 @@ export default {
             if(res.Ret===200){
                 this.list=res.Data.List||[]
                 if(type==='init'){
-                    this.classifyparentArr=res.Data.List || [];
+                    this.classifyparentArr=JSON.parse(JSON.stringify(res.Data.List)) || [];
                     this.classifyparentArr.unshift({Id:"0",ClassifyName:'无',Child:null})
                 }
             }
@@ -161,7 +161,7 @@ export default {
         handleEnableSet(item){
             // 判断权限
             const {enClassifyBtn,checkPermissionBtn} = this.permissionBtn
-            if(checkPermissionBtn(enClassifyBtn.classifyList_enClassify_enable)) return
+            if(!checkPermissionBtn(enClassifyBtn.classifyList_enClassify_enable)) return
 
             classifyEnInterface.enableSet({
                 ClassifyId:item.Id,

+ 1 - 1
src/views/classify_manage/classifylistV2.vue

@@ -233,7 +233,7 @@ export default {
         handleEnableSet(item){
             // 判断权限
             const {classifyBtn,checkPermissionBtn} = this.permissionBtn
-            if(checkPermissionBtn(classifyBtn.classifyList_cnClassify_enable)) return
+            if(!checkPermissionBtn(classifyBtn.classifyList_cnClassify_enable)) return
             
             classifyPermissionInterface.enableSet({
                 ClassifyId:item.Id,

+ 1 - 1
src/views/report_manage/reportVarietyV2.vue

@@ -350,7 +350,7 @@ export default {
             }
             const res=this.typeVal==1?await reportVarietyInterence.sortVariety(params):await reportVarietyENInterence.sortVariety(params)
             if(res.Ret===200){
-                this.$message.success('操作成功')
+                this.$message.success('移动成功')
             }
             this.getList()
         },

+ 1 - 1
src/views/smartReport/components/BaseInfo.vue

@@ -262,7 +262,7 @@ export default {
 
         // 获取分类
         getclassifylist() {
-            let params = { CurrentIndex: 0, PageSize: 1000, KeyWord: "",HideDayWeek:1,/*不显示晨报/周报*/ };
+            let params = { Enabled:1, KeyWord: "",HideDayWeek:1,/*不显示晨报/周报*/ };
             apiSmartReport.classifyList(params).then((res) => {
                 if (res.Ret == 200 && Array.isArray(res.Data.List)) {
                     this.classifyArr = [];

+ 1 - 1
src/views/smartReport/reportList.vue

@@ -786,7 +786,7 @@ export default {
         //报告类型
         getclassifylist() {
             //获取分类列表
-            let params = { CurrentIndex: 0, PageSize: 1000, KeyWord: "",HideDayWeek:1,/*不显示晨报/周报*/ };
+            let params = { KeyWord: "",HideDayWeek:1,/*不显示晨报/周报*/ };
             apiSmartReport.classifyList(params).then((res) => {
                 if (res.Ret == 200 && Array.isArray(res.Data.List)) {
                     this.optionsArr = [];