列表底部组件,和通知弹窗样式

This commit is contained in:
A1300399510
2023-07-13 19:31:51 +08:00
parent 42495d8e5e
commit fbfae2d4fc
9 changed files with 99 additions and 56 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div class="regular-box">
<div class="btn-s first-bg" @click="">
<div class="btn-s first-bg" @click="choicePopState = true">
<img src="../../assets/homeImage/indexRegularFirst.png" class="first" alt="">
</div>
<div class="btn-s other-bg mg-t-15">
@@ -15,10 +15,14 @@
</div>
</el-badge>
</div>
<!-- 身份弹窗 -->
<choosing-identity v-if="choicePopState" @close="choicePopState = false"></choosing-identity>
</template>
<script setup>
import { ref } from 'vue'
import choosingIdentity from '@/components/edit/choosingIdentity.vue'
let choicePopState = ref(false)
</script>
<script>
export default {