23 lines
456 B
JavaScript
23 lines
456 B
JavaScript
|
|
import { defineStore } from 'pinia'
|
||
|
|
|
||
|
|
const useToolBarStore = defineStore(
|
||
|
|
'toolbar',
|
||
|
|
{
|
||
|
|
state: () => ({
|
||
|
|
expand: false, //地图图例位置
|
||
|
|
trawler: {
|
||
|
|
visible: false // 渔船动态详情收缩框显示
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
actions: {
|
||
|
|
toogleExpand(expand) {
|
||
|
|
this.expand = expand
|
||
|
|
},
|
||
|
|
toggleTrawlerVisible(visible) {
|
||
|
|
this.trawler.visible = visible
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|
||
|
|
|
||
|
|
export default useToolBarStore
|