Browse Source

修改右侧菜单弹窗样式

master
chendingwei 2 years ago
parent
commit
3e9011d342
  1. 2
      .gitignore
  2. 17
      src/views/page/Aside/cameraRightMenu.vue

2
.gitignore

@ -24,5 +24,3 @@ dist-ssr
*.sw?
/components.d.ts
/components.d.ts
/components.d.ts

17
src/views/page/Aside/cameraRightMenu.vue

@ -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>

Loading…
Cancel
Save