diff --git a/src/views/personal-center/user-settings/user-settings.vue b/src/views/personal-center/user-settings/user-settings.vue index 15e6471..0d9cfa6 100644 --- a/src/views/personal-center/user-settings/user-settings.vue +++ b/src/views/personal-center/user-settings/user-settings.vue @@ -19,7 +19,69 @@ - + +
基础信息
+ + + + + + + + + + + + + + + + + + 提交 + + +
+ +
安全设置
+ + + + + + + + + + + + + + + + + + 提交 + + +
+ +
实名认证
+ + + +
+ +
认证记录
+ + + +
@@ -67,9 +129,66 @@ const data = ref([ } ]); +const tableColumns = ref([ + { + title: "认证类型", + dataIndex: "authenticationType" + }, + { + title: "认证内容", + dataIndex: "authenticationContent" + }, + { + title: "当前状态", + dataIndex: "status" + }, + { + title: "创建时间", + dataIndex: "createTime" + }, + { + title: "操作", + dataIndex: "operation", + slotName: "optional", + fixed: "right", + width: 200 + } +]); +const tableData = reactive([ + { + key: "1", + authenticationType: "证件认证", + authenticationContent: "实名认证,鉴定信息", + status: "1", + createTime: "2024-06-20" + }, + { + key: "2", + authenticationType: "证件认证", + authenticationContent: "实名认证,鉴定信息", + status: "0", + createTime: "2024-06-20" + }, + { + key: "3", + authenticationType: "证件认证", + authenticationContent: "实名认证,鉴定信息", + status: "1", + createTime: "2024-06-20" + } +]); + const toast = () => { proxy.$message.info("修改头像"); }; + +const form = ref({ + name: "" +}); - +