|
|
@ -10,7 +10,8 @@ |
|
|
|
</template> |
|
|
|
<div class="buttomItem"> |
|
|
|
<div class="buttomName">标签标志</div> |
|
|
|
</div> </Popover> |
|
|
|
</div> |
|
|
|
</Popover> |
|
|
|
<div class="buttomItem"> |
|
|
|
<div class="buttomName">截图</div> |
|
|
|
</div> |
|
|
@ -35,12 +36,12 @@ |
|
|
|
<script setup lang='ts'> |
|
|
|
import userEdit from '@/views/page/aside/rightMenuItem/userEdit.vue' |
|
|
|
import { ref } from 'vue'; |
|
|
|
|
|
|
|
import { Popover } from 'ant-design-vue'; |
|
|
|
import { useStore } from '@/store/index'; |
|
|
|
const visible = ref(false) |
|
|
|
function openUserEdit() { |
|
|
|
visible.value = !visible.value |
|
|
|
}import { Popover } from 'ant-design-vue'; |
|
|
|
import { useStore } from '@/store/index'; |
|
|
|
} |
|
|
|
let piniaStore = useStore(); |
|
|
|
function addLabelFn(str: string) { |
|
|
|
piniaStore.updateIsAddLabel({ labelType: str, isAddLabel: true }) |
|
|
@ -102,4 +103,12 @@ function addLabelFn(str: string) { |
|
|
|
z-index: 2; |
|
|
|
font-size: 0.8em; |
|
|
|
} |
|
|
|
ul{ |
|
|
|
padding: 0; |
|
|
|
margin: 0; |
|
|
|
p:last-child{ |
|
|
|
margin: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
</style> |
|
|
|