|
@@ -34,18 +34,31 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="opt-box">
|
|
<div class="opt-box">
|
|
- <el-cascader clearable></el-cascader>
|
|
|
|
|
|
+ <!-- 我的看板 -->
|
|
|
|
+ <el-select v-model="selectBoardId" placeholder="请选择看板" v-if="navType === 1">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in myBoardList"
|
|
|
|
+ :key="item.BiDashboardId"
|
|
|
|
+ :value="item.BiDashboardId"
|
|
|
|
+ :label="item.BiDashboardName"
|
|
|
|
+ ></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ <!-- 共享看板 -->
|
|
|
|
+ <el-cascader v-model="selectBoardId" :props="{emitPath:false}" :options="shareBoardList" v-if="navType === 2"></el-cascader>
|
|
|
|
+ <!-- 公共看板 -->
|
|
|
|
+ <el-cascader v-model="selectBoardId" :props="{emitPath:false}" :options="commonBoardList" v-if="navType === 3"></el-cascader>
|
|
|
|
+
|
|
<div class="right-opt-box">
|
|
<div class="right-opt-box">
|
|
<el-button v-if="navType===1" type="text" @click="showSetCommon = true"
|
|
<el-button v-if="navType===1" type="text" @click="showSetCommon = true"
|
|
>设置公共</el-button
|
|
>设置公共</el-button
|
|
>
|
|
>
|
|
<el-button type="text" @click="showSetShare = true">设置共享</el-button>
|
|
<el-button type="text" @click="showSetShare = true">设置共享</el-button>
|
|
- <el-button type="text">编辑</el-button>
|
|
|
|
|
|
+ <el-button type="text" @click="handleGoEdit">编辑</el-button>
|
|
<el-button type="text" style="color: #f00">删除</el-button>
|
|
<el-button type="text" style="color: #f00">删除</el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- 看板内容模块 -->
|
|
<!-- 看板内容模块 -->
|
|
- <BIBoardContent v-model="boardData" />
|
|
|
|
|
|
+ <BIBoardContent v-model="boardDataList" />
|
|
|
|
|
|
<!-- 设置共享 -->
|
|
<!-- 设置共享 -->
|
|
<set-share v-model="showSetShare" />
|
|
<set-share v-model="showSetShare" />
|
|
@@ -57,6 +70,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import apiBiBoard from '@/api/modules/BIBoard.js'
|
|
import BIBoardContent from './components/BoardContent.vue'
|
|
import BIBoardContent from './components/BoardContent.vue'
|
|
import CommonClassify from './components/CommonClassify.vue'
|
|
import CommonClassify from './components/CommonClassify.vue'
|
|
import SetCommon from './components/SetCommon.vue'
|
|
import SetCommon from './components/SetCommon.vue'
|
|
@@ -68,14 +82,123 @@ export default {
|
|
return {
|
|
return {
|
|
navType: 1,//
|
|
navType: 1,//
|
|
|
|
|
|
|
|
+ boardInfo:null,//看板详情数据
|
|
|
|
+ boardDataList:[],//看板数据
|
|
|
|
+
|
|
|
|
+ selectBoardId:0,//当前选择的看板id
|
|
|
|
+ myBoardList:[],
|
|
|
|
+ shareBoardList:[],
|
|
|
|
+ commonBoardList:[],
|
|
|
|
+
|
|
showSetShare: false,
|
|
showSetShare: false,
|
|
showSetCommon: false,
|
|
showSetCommon: false,
|
|
showCommonClassify:false,
|
|
showCommonClassify:false,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ watch: {
|
|
|
|
+ selectBoardId(n){
|
|
|
|
+ n&&this.getBoardDetail()
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ this.getMyBoardList()
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
|
|
+ handleGoEdit(){
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path:"/editBIBoard",
|
|
|
|
+ query:{
|
|
|
|
+ id:this.selectBoardId
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 获取看板详情
|
|
|
|
+ async getBoardDetail(){
|
|
|
|
+ const res=await apiBiBoard.boardDetail({DashboardId:this.selectBoardId})
|
|
|
|
+ if(res.Ret===200){
|
|
|
|
+ this.boardInfo=res.Data
|
|
|
|
+ this.boardDataList=res.Data.List||[]
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 我的看板列表
|
|
|
|
+ async getMyBoardList(){
|
|
|
|
+ const res=await apiBiBoard.myBoardList()
|
|
|
|
+ if(res.Ret===200){
|
|
|
|
+ this.myBoardList=res.Data||[]
|
|
|
|
+ if(this.myBoardList.length>0){
|
|
|
|
+ this.selectBoardId=this.myBoardList[0].BiDashboardId
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 共享看板列表
|
|
|
|
+ async getShareBoardList(){
|
|
|
|
+ const res=await apiBiBoard.shareBoardList()
|
|
|
|
+ if(res.Ret===200){
|
|
|
|
+ const myArr=res.Data.MyList||[]
|
|
|
|
+ const otherArr=res.Data.OtherList||[]
|
|
|
|
+ const temarr=[...myArr,...otherArr]
|
|
|
|
+ this.shareBoardList=[
|
|
|
|
+ {
|
|
|
|
+ label:'我共享的',
|
|
|
|
+ value:'my_share',
|
|
|
|
+ children:myArr.map(item=>{
|
|
|
|
+ return {
|
|
|
|
+ label:item.BiDashboardName,
|
|
|
|
+ value:item.BiDashboardId
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ label:'共享给我的',
|
|
|
|
+ value:'other_share',
|
|
|
|
+ children:otherArr.map(item=>{
|
|
|
|
+ return {
|
|
|
|
+ label:item.BiDashboardName,
|
|
|
|
+ value:item.BiDashboardId
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+
|
|
|
|
+ if(temarr.length>0){
|
|
|
|
+ this.selectBoardId=temarr[0].BiDashboardId
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 公共看板列表
|
|
|
|
+ async getCommonBoardList(){
|
|
|
|
+ const res=await apiBiBoard.commonBoardList()
|
|
|
|
+ if(res.Ret===200){
|
|
|
|
+ this.commonBoardList=res.Data||[]
|
|
|
|
+ if(this.commonBoardList.length>0){
|
|
|
|
+ this.selectBoardId=this.commonBoardList[0].BiDashboardId
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
handleNavTypeChange(e) {
|
|
handleNavTypeChange(e) {
|
|
|
|
+ if(this.navType===e) return
|
|
this.navType = e
|
|
this.navType = e
|
|
|
|
+
|
|
|
|
+ this.selectBoardId=0
|
|
|
|
+ this.boardDataList=[]
|
|
|
|
+ this.boardDetail=null
|
|
|
|
+ if(this.navType===1){
|
|
|
|
+ this.getMyBoardList()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if(this.navType===2){
|
|
|
|
+ this.getShareBoardList()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if(this.navType===3){
|
|
|
|
+ this.getCommonBoardList()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
}
|
|
}
|
|
},
|
|
},
|
|
}
|
|
}
|