feat: 对未实现的功能增加占位信息
1. 修改手机号 2. 剧本市场
This commit is contained in:
@@ -6,6 +6,7 @@ import { api } from '@/tools/web.js'
|
||||
import type { UploadFileDto, UserDto } from '@/types/user.js'
|
||||
import { useHead } from '@unhead/vue'
|
||||
import ChangeEmailModal from '@/components/admin/ChangeEmailModal.vue'
|
||||
import ChangePhoneModal from '@/components/admin/ChangePhoneModal.vue'
|
||||
|
||||
useHead({
|
||||
title: '用户资料',
|
||||
@@ -146,10 +147,12 @@ async function save() {
|
||||
</n-form>
|
||||
<n-flex>
|
||||
<n-button class="ui-button" type="primary" @click="save">保存</n-button>
|
||||
<n-button class="ui-button" type="warning" @click="showChangeEmailModal = true"
|
||||
>更改邮箱</n-button
|
||||
>
|
||||
<n-button class="ui-button" type="warning">更改手机号</n-button>
|
||||
<n-button class="ui-button" type="warning" secondary @click="showChangeEmailModal = true">
|
||||
更改邮箱
|
||||
</n-button>
|
||||
<n-button class="ui-button" type="warning" secondary @click="showChangePhoneModal = true">
|
||||
更改手机号
|
||||
</n-button>
|
||||
<n-button class="ui-button" type="tertiary">重置全部</n-button>
|
||||
</n-flex>
|
||||
</div>
|
||||
@@ -168,7 +171,8 @@ async function save() {
|
||||
v-model:show-modal="showBackgroundModal"
|
||||
v-model:select-files="background_selectFiles"
|
||||
/>
|
||||
<change-email-modal v-model:show-modal="showChangeEmailModal" />
|
||||
<change-email-modal v-model:show-modal="showChangeEmailModal"/>
|
||||
<change-phone-modal v-model:show-modal="showChangePhoneModal"/>
|
||||
</n-card>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user