|
@@ -63,13 +63,15 @@
|
|
|
:props="{ emitPath: false }"
|
|
|
:options="shareBoardList"
|
|
|
v-if="navType === 2"
|
|
|
+ key="2"
|
|
|
></el-cascader>
|
|
|
<!-- 公共看板 -->
|
|
|
<el-cascader
|
|
|
v-model="selectBoardId"
|
|
|
- :props="{ emitPath: false }"
|
|
|
+ :props="{ emitPath: false,value:'GroupId',label:'GroupName',children:'Children' }"
|
|
|
:options="commonBoardList"
|
|
|
v-if="navType === 3"
|
|
|
+ key="3"
|
|
|
></el-cascader>
|
|
|
|
|
|
<div class="right-opt-box" v-if="boardInfo">
|
|
@@ -79,8 +81,16 @@
|
|
|
@click="showSetCommon = true"
|
|
|
>设置公共</el-button
|
|
|
>
|
|
|
- <el-button type="text" @click="showSetShare = true" v-if="navType !== 3&&permissionBtn.isShowBtn('BIBoardPermission','BIBoard_setshare')&¤tBoardIsSelf">设置共享</el-button>
|
|
|
- <el-button type="text" @click="handleGoEdit" v-if="navType !== 3&&permissionBtn.isShowBtn('BIBoardPermission','BIBoard_edit')">编辑</el-button>
|
|
|
+ <el-button
|
|
|
+ type="text"
|
|
|
+ @click="showSetShare = true"
|
|
|
+ v-if="navType !== 3&&permissionBtn.isShowBtn('BIBoardPermission','BIBoard_setshare')&¤tBoardIsSelf"
|
|
|
+ >设置共享</el-button>
|
|
|
+ <el-button
|
|
|
+ type="text"
|
|
|
+ @click="handleGoEdit"
|
|
|
+ v-if="navType !== 3&&permissionBtn.isShowBtn('BIBoardPermission','BIBoard_edit')"
|
|
|
+ >{{boardInfo.IsEditing?boardInfo.Editor.Editor+'编辑中...':'编辑'}}</el-button>
|
|
|
<el-button type="text" style="color: #f00" v-if="navType !== 3&&permissionBtn.isShowBtn('BIBoardPermission','BIBoard_delete')&¤tBoardIsSelf" @click="handleDeleteBoard">删除</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -135,10 +145,40 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- this.getMyBoardList()
|
|
|
+ if(this.$route.query.id){
|
|
|
+
|
|
|
+ this.selectBoardId=Number(this.$route.query.id)
|
|
|
+ if(this.$route.query.type==1){
|
|
|
+ this.getMyBoardList('init')
|
|
|
+ }else if(this.$route.query.type==2){
|
|
|
+ this.getShareBoardList('init')
|
|
|
+ }else if(this.$route.query.type==3){
|
|
|
+ this.getCommonBoardList('init')
|
|
|
+ }
|
|
|
+
|
|
|
+ }else{
|
|
|
+ this.getMyBoardList()
|
|
|
+ }
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
- handleGoEdit() {
|
|
|
+ async handleGoEdit() {
|
|
|
+ if(this.boardInfo.IsEditing&&this.boardInfo.Editor.AdminId!==Number(localStorage.getItem('AdminId'))){
|
|
|
+ this.$message.warning(`${this.boardInfo.Editor.Editor}${this.$t('Slides.editing_progress_msg') }...`)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ const res=await apiBiBoard.editBoardLock({BiDashboardId:this.selectBoardId,Status:0})
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ if(res.Data&&res.Data.IsEditing&&res.Data.AdminId!==Number(localStorage.getItem('AdminId'))){
|
|
|
+ this.boardInfo.Editor=res.Data
|
|
|
+ this.boardInfo.IsEditing=true
|
|
|
+ this.$message.warning(`${res.Data.Editor}${this.$t('Slides.editing_progress_msg') }...`)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ //调接口加锁然后跳转
|
|
|
+ const resLock = await apiBiBoard.editBoardLock({BiDashboardId:this.selectBoardId,Status:1})
|
|
|
+ if(resLock.Ret!==200) return
|
|
|
+
|
|
|
this.$router.push({
|
|
|
path: "/editBIBoard",
|
|
|
query: {
|
|
@@ -200,10 +240,12 @@ export default {
|
|
|
},
|
|
|
|
|
|
// 我的看板列表
|
|
|
- async getMyBoardList() {
|
|
|
+ async getMyBoardList(type) {
|
|
|
const res = await apiBiBoard.myBoardList()
|
|
|
if (res.Ret === 200) {
|
|
|
this.myBoardList = res.Data || []
|
|
|
+ // 编辑了分类回调 不更新选择的看板仅仅更新公共看板列表数据
|
|
|
+ if(['update','init'].includes(type)) return
|
|
|
if (this.myBoardList.length > 0) {
|
|
|
this.selectBoardId = this.myBoardList[0].BiDashboardId
|
|
|
}
|
|
@@ -211,7 +253,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
// 共享看板列表
|
|
|
- async getShareBoardList() {
|
|
|
+ async getShareBoardList(type) {
|
|
|
const res = await apiBiBoard.shareBoardList()
|
|
|
if (res.Ret === 200) {
|
|
|
const myArr = res.Data.MyList || []
|
|
@@ -239,7 +281,8 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
]
|
|
|
-
|
|
|
+ // 编辑了分类回调 不更新选择的看板仅仅更新公共看板列表数据
|
|
|
+ if(['update','init'].includes(type)) return
|
|
|
if (temarr.length > 0) {
|
|
|
this.selectBoardId = temarr[0].BiDashboardId
|
|
|
}
|
|
@@ -250,11 +293,32 @@ export default {
|
|
|
async getCommonBoardList(type) {
|
|
|
const res = await apiBiBoard.commonBoardList()
|
|
|
if (res.Ret === 200) {
|
|
|
- this.commonBoardList = res.Data || []
|
|
|
+ const arr = res.Data || []
|
|
|
+ let boardIdArr=[]
|
|
|
+
|
|
|
+ arr.forEach(item1 => {
|
|
|
+ item1.GroupId=item1.GroupId+item1.GroupName
|
|
|
+ if(item1.Children){
|
|
|
+ item1.Children.forEach(item2=>{
|
|
|
+ const dArr=item2.DashboardList||[]
|
|
|
+ item2.GroupId=item2.GroupId+item2.GroupName
|
|
|
+ item2.Children=dArr.map(item3=>{
|
|
|
+ boardIdArr.push(item3.BiDashboardId)
|
|
|
+ return {
|
|
|
+ GroupId:item3.BiDashboardId,
|
|
|
+ GroupName:item3.BiDashboardName
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ this.commonBoardList=arr
|
|
|
// 编辑了分类回调 不更新选择的看板仅仅更新公共看板列表数据
|
|
|
- if(type==='update') return
|
|
|
- if (this.commonBoardList.length > 0) {
|
|
|
- this.selectBoardId = this.commonBoardList[0].BiDashboardId
|
|
|
+ if(['update','init'].includes(type)) return
|
|
|
+ // 选择第一个看板
|
|
|
+ if(boardIdArr.length>0){
|
|
|
+ this.selectBoardId = boardIdArr[0]
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -317,5 +381,4 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-</style>
|
|
|
-<!-- 1+3+1+1+2+3+2=13 (后台) -->
|
|
|
+</style>
|