|
@@ -25,7 +25,7 @@
|
|
|
slot-scope="{ data }"
|
|
|
>
|
|
|
<div>
|
|
|
- <span :class="['tag', data.IsShow==1?'open':'close']" @click.stop="handleEnableSet(data)">{{data.IsShow==1?'启用':'禁用'}}</span>
|
|
|
+ <span :class="['tag', data.Enabled==1?'open':'close']" @click.stop="handleEnableSet(data)">{{data.Enabled==1?'启用':'禁用'}}</span>
|
|
|
<span>{{data.ReportChapterTypeName}}</span>
|
|
|
</div>
|
|
|
|
|
@@ -53,6 +53,9 @@
|
|
|
<el-form-item label="章节名称" prop="ReportChapterTypeName">
|
|
|
<el-input v-model="addForm.ReportChapterTypeName" style="width: 317px;" placeholder="请输入章节名称"></el-input>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="上级分类">
|
|
|
+ <el-input disabled :value="researchType=='day'?'晨报':'周报'" style="width: 317px;" placeholder="请输入章节名称"></el-input>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item prop="variety" label="关联品种">
|
|
|
<template slot="label">
|
|
|
<el-tooltip class="item" effect="dark" content="控制报告阅读权限">
|
|
@@ -64,13 +67,13 @@
|
|
|
</template>
|
|
|
<el-cascader
|
|
|
:options="reportVarietyList"
|
|
|
- v-model="addForm.variety"
|
|
|
+ v-model="addForm.ChartPermissionIdList"
|
|
|
placeholder="请选择"
|
|
|
collapse-tags
|
|
|
:props="{value:'PermissionId',label:'PermissionName',children:'Child',multiple: true,emitPath:false}"
|
|
|
style="width:317px;"
|
|
|
></el-cascader>
|
|
|
- </el-form-item>
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<div solt="footer" style="padding: 20px 0;text-align: center;">
|
|
@@ -85,6 +88,7 @@
|
|
|
<script>
|
|
|
import mDialog from '@/components/mDialog.vue';
|
|
|
import { getchapterTypeList,addChapterType,editChapterType,} from 'api/api.js';
|
|
|
+import {setChapterEnable,setChapterSort} from '@/api/modules/oldApi.js'
|
|
|
import {reportVarietyInterence} from '@/api/modules/reportVariety'
|
|
|
import {classifyPermissionInterface} from '@/api/modules/classifyApi.js'
|
|
|
export default {
|
|
@@ -107,7 +111,7 @@ export default {
|
|
|
addForm:{
|
|
|
ReportChapterTypeName:"",
|
|
|
ResearchType:"",
|
|
|
- variety:''
|
|
|
+ ChartPermissionIdList:''
|
|
|
},
|
|
|
researchType:'',// day-晨报;week-周报
|
|
|
|
|
@@ -122,7 +126,7 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
getList(type){
|
|
|
- getchapterTypeList({ReportType:this.researchType,PageSize:10000,CurrentIndex:1}).then(res=>{
|
|
|
+ getchapterTypeList({ReportType:this.researchType}).then(res=>{
|
|
|
if(res.Ret == 200){
|
|
|
this.list=res.Data.List || []
|
|
|
}
|
|
@@ -132,6 +136,8 @@ export default {
|
|
|
addChapter(){
|
|
|
this.dialogTitle="添加章节"
|
|
|
this.addDialogShow=true
|
|
|
+ this.addForm.ReportChapterTypeName=''
|
|
|
+ this.addForm.ChartPermissionIdList=''
|
|
|
console.log(this.addForm);
|
|
|
},
|
|
|
|
|
@@ -141,6 +147,7 @@ export default {
|
|
|
...this.addForm,
|
|
|
ReportChapterTypeName:row.ReportChapterTypeName,
|
|
|
ReportChapterTypeId:row.ReportChapterTypeId,
|
|
|
+ ChartPermissionIdList:row.ChartPermissionIdList||''
|
|
|
}
|
|
|
this.dialogTitle="编辑章节"
|
|
|
this.addDialogShow=true
|
|
@@ -151,7 +158,7 @@ export default {
|
|
|
this.$refs.addForm.validate((valid)=>{
|
|
|
if(valid){
|
|
|
// 添加小程序是否显示参数 0显示,1隐藏
|
|
|
- let params={...this.addForm,IsShow:this.addForm.mpHidden?0:1}
|
|
|
+ let params={...this.addForm,ChartPermissionIdList:this.addForm.ChartPermissionIdList||[]}
|
|
|
// 请求方法
|
|
|
let requestMethod;
|
|
|
// console.log(params);
|
|
@@ -184,8 +191,8 @@ export default {
|
|
|
|
|
|
//启用\禁用设置
|
|
|
handleEnableSet(item){
|
|
|
- classifyPermissionInterface.enableSet({
|
|
|
- ClassifyId:item.Id,
|
|
|
+ setChapterEnable({
|
|
|
+ ReportChapterTypeId:item.ReportChapterTypeId,
|
|
|
Enabled:item.Enabled==1?0:1
|
|
|
}).then(res=>{
|
|
|
if(res.Ret===200){
|
|
@@ -204,36 +211,25 @@ export default {
|
|
|
//拖动结束
|
|
|
dropOverHandle(b,a,i,e) {
|
|
|
// 被拖拽节点对应的 Node、结束拖拽时最后进入的节点、被拖拽节点的放置位置
|
|
|
- // const classifyId=b.data.Id
|
|
|
- // let list=a.parent.childNodes;
|
|
|
- // let PrevClassifyId=0,NextClassifyId=0,targetIndex=0;
|
|
|
- // list.forEach((item,index) => {
|
|
|
- // if(item.data.Id===classifyId){
|
|
|
- // targetIndex=index
|
|
|
- // }
|
|
|
- // });
|
|
|
- // if(targetIndex===0){
|
|
|
- // NextClassifyId=list[1].data.Id
|
|
|
- // }else if(targetIndex===list.length-1){
|
|
|
- // PrevClassifyId=list[list.length-1].data.Id
|
|
|
- // }else{
|
|
|
- // PrevClassifyId=list[targetIndex-1].data.Id
|
|
|
- // NextClassifyId=list[targetIndex+1].data.Id
|
|
|
- // }
|
|
|
+ const ReportChapterTypeId=b.data.ReportChapterTypeId
|
|
|
+ let index=this.list.findIndex(item=>item.ReportChapterTypeId===ReportChapterTypeId)
|
|
|
+ const PrevReportChapterTypeId=index==0?0:this.list[index-1].ReportChapterTypeId
|
|
|
+ const NextReportChapterTypeId=index==this.list.length-1?0:this.list[index+1].ReportChapterTypeId
|
|
|
|
|
|
- // const params={
|
|
|
- // ClassifyId:classifyId,
|
|
|
- // PrevClassifyId,
|
|
|
- // NextClassifyId
|
|
|
- // }
|
|
|
- // console.log(params);
|
|
|
- // classifyPermissionInterface.moveSort(params).then(res=>{
|
|
|
- // if(res.Ret===200){
|
|
|
- // this.$message.success('操作成功')
|
|
|
- // }else{
|
|
|
- // this.getList()
|
|
|
- // }
|
|
|
- // })
|
|
|
+
|
|
|
+ const params={
|
|
|
+ ReportChapterTypeId,
|
|
|
+ PrevReportChapterTypeId,
|
|
|
+ NextReportChapterTypeId
|
|
|
+ }
|
|
|
+ console.log(params);
|
|
|
+ setChapterSort(params).then(res=>{
|
|
|
+ if(res.Ret===200){
|
|
|
+ this.$message.success('操作成功')
|
|
|
+ }else{
|
|
|
+ this.getList()
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
},
|