|
@@ -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,
|