feat: 右上角图标随个人中心弹窗展示而变化
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import { ref, reactive, onMounted, inject } from 'vue'
|
||||
import { ref, reactive, onMounted, inject ,watch} from 'vue'
|
||||
import router from '@/router'
|
||||
import { showConfirmDialog } from 'vant'
|
||||
import { useUserInfoStore, useOverallStore } from '@/stores'
|
||||
@@ -13,7 +13,7 @@ const props = defineProps<{
|
||||
|
||||
const userInfoStore = useUserInfoStore()
|
||||
const overallStore = useOverallStore()
|
||||
const emit = defineEmits(['view-type', 'selected-customer'])
|
||||
const emit = defineEmits(['view-type', 'selected-customer','change-visible'])
|
||||
const show = ref(false)
|
||||
const isEdit = ref(false)
|
||||
const form = reactive({
|
||||
@@ -28,6 +28,12 @@ const open = () => {
|
||||
const close = () => {
|
||||
show.value = false
|
||||
}
|
||||
|
||||
watch(show,(newVal)=>{
|
||||
emit('change-visible', newVal)
|
||||
MyEvent.emit('change-profile-visible',newVal)
|
||||
})
|
||||
|
||||
const onEditItem = (item) => {
|
||||
if (!form[item]) return
|
||||
form[item].edit = true
|
||||
@@ -49,7 +55,6 @@ const confirm = () => {
|
||||
username: form.name.value,
|
||||
email: form.email.value,
|
||||
}
|
||||
console.log(params)
|
||||
setTimeout(() => {
|
||||
overallStore.setLoading(false)
|
||||
isEdit.value = false
|
||||
|
||||
Reference in New Issue
Block a user