|
@@ -34,6 +34,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import apiBiBoard from '@/api/modules/BIBoard.js'
|
|
|
import BIBoardContent from './components/BoardContent.vue'
|
|
|
import SelectChart from './components/SelectChart.vue'
|
|
|
import SelectTable from './components/SelectTable.vue'
|
|
@@ -73,6 +74,17 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ const arr=this.boardData.map(item=>{
|
|
|
+ return {
|
|
|
+ Type:item.type,
|
|
|
+ UniqueCode:item.UniqueCode
|
|
|
+ }
|
|
|
+ })
|
|
|
+ const params={
|
|
|
+ BiDashboardName:this.name,
|
|
|
+ List:arr||[]
|
|
|
+ }
|
|
|
+
|
|
|
},
|
|
|
|
|
|
handleAddComp(type, data) {
|