diff --git a/components.d.ts b/components.d.ts
index e62b27e1..73145d49 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -10,23 +10,15 @@ declare module 'vue' {
export interface GlobalComponents {
ABadge: typeof import('ant-design-vue/es')['Badge']
ABreadcrumb: typeof import('ant-design-vue/es')['Breadcrumb']
- ACheckbox: typeof import('ant-design-vue/es')['Checkbox']
AConfigProvider: typeof import('ant-design-vue/es')['ConfigProvider']
ADatePicker: typeof import('ant-design-vue/es')['DatePicker']
ADrawer: typeof import('ant-design-vue/es')['Drawer']
- ADropdown: typeof import('ant-design-vue/es')['Dropdown']
- AImage: typeof import('ant-design-vue/es')['Image']
- AInputNumber: typeof import('ant-design-vue/es')['InputNumber']
AMenu: typeof import('ant-design-vue/es')['Menu']
AMenuItem: typeof import('ant-design-vue/es')['MenuItem']
AModal: typeof import('ant-design-vue/es')['Modal']
APagination: typeof import('ant-design-vue/es')['Pagination']
- APopover: typeof import('ant-design-vue/es')['Popover']
ARangePicker: typeof import('ant-design-vue/es')['RangePicker']
ASelect: typeof import('ant-design-vue/es')['Select']
- ASelectOption: typeof import('ant-design-vue/es')['SelectOption']
- ASlider: typeof import('ant-design-vue/es')['Slider']
- ASpace: typeof import('ant-design-vue/es')['Space']
ASpin: typeof import('ant-design-vue/es')['Spin']
ASubMenu: typeof import('ant-design-vue/es')['SubMenu']
ASwitch: typeof import('ant-design-vue/es')['Switch']
diff --git a/src/assets/icons/Folder.svg b/src/assets/icons/Folder.svg
new file mode 100644
index 00000000..abfd060d
--- /dev/null
+++ b/src/assets/icons/Folder.svg
@@ -0,0 +1,22 @@
+
+
+
diff --git a/src/assets/images/icon/library.png b/src/assets/images/icon/library.png
new file mode 100644
index 00000000..60b8e7bf
Binary files /dev/null and b/src/assets/images/icon/library.png differ
diff --git a/src/assets/images/icon/upload_black.png b/src/assets/images/icon/upload_black.png
new file mode 100644
index 00000000..635249c7
Binary files /dev/null and b/src/assets/images/icon/upload_black.png differ
diff --git a/src/assets/images/icon/upload_gray.png b/src/assets/images/icon/upload_gray.png
new file mode 100644
index 00000000..4e109e29
Binary files /dev/null and b/src/assets/images/icon/upload_gray.png differ
diff --git a/src/component/Account/frontPage/bindPage.vue b/src/component/Account/frontPage/bindPage.vue
index 7ec33f51..825781f4 100644
--- a/src/component/Account/frontPage/bindPage.vue
+++ b/src/component/Account/frontPage/bindPage.vue
@@ -111,28 +111,46 @@ export default defineComponent({
.catch((res) => {accountHomeData.loadingShow = false});
}
const ungroupWeiXinModel = ()=>{
- Https.axiosGet(Https.httpUrls.unbindWeChat,).then((rv)=>{
- message.success(t('frontPage.jsContent1'));
- let value = {
- accountExtendList:{
- WeChat:undefined,
- Google:accountHomeData.userDetail.accountExtendList?.Google
- }
+ Modal.confirm({
+ title: t('frontPage.UnbindTip'),
+ okText: t('Yes'),
+ cancelText: t('No'),
+ mask:false,
+ centered:true,
+ onOk() {
+ Https.axiosGet(Https.httpUrls.unbindWeChat,).then((rv)=>{
+ message.success(t('frontPage.jsContent1'));
+ let value = {
+ accountExtendList:{
+ WeChat:undefined,
+ Google:accountHomeData.userDetail.accountExtendList?.Google
+ }
+ }
+ store.commit("upUserDetail", value)
+ })
}
- store.commit("upUserDetail", value)
- })
+ });
}
const ungroupGoogleModel = ()=>{
- Https.axiosGet(Https.httpUrls.unbindGoogle,).then((rv)=>{
- let value = {
- accountExtendList:{
- WeChat:accountHomeData.userDetail.accountExtendList?.WeChat,
- Google:undefined,
- }
+ Modal.confirm({
+ title: t('frontPage.UnbindTip'),
+ okText: t('Yes'),
+ cancelText: t('No'),
+ mask:false,
+ centered:true,
+ onOk() {
+ Https.axiosGet(Https.httpUrls.unbindGoogle,).then((rv)=>{
+ let value = {
+ accountExtendList:{
+ WeChat:accountHomeData.userDetail.accountExtendList?.WeChat,
+ Google:undefined,
+ }
+ }
+ store.commit("upUserDetail", value)
+ message.success(t('frontPage.jsContent1'));
+ })
}
- store.commit("upUserDetail", value)
- message.success(t('frontPage.jsContent1'));
- })
+ });
}
const modifyEmail = ()=>{
bindPageDom.bindEmail.init('Modify')
diff --git a/src/component/HomePage/Generate copy.vue b/src/component/HomePage/Generate copy.vue
new file mode 100644
index 00000000..8b420cf9
--- /dev/null
+++ b/src/component/HomePage/Generate copy.vue
@@ -0,0 +1,1268 @@
+
+
+
+
+