├── .env.beforeBuild ├── .env.beforeDev ├── .env.development ├── .env.production ├── .eslintrc-auto-import.json ├── .gitignore ├── LICENSE ├── README.md ├── doc ├── pro_01.jpg ├── pro_02.jpg ├── pro_03.jpg ├── pro_04.jpg ├── pro_05.jpg ├── pro_06.jpg ├── pro_07.jpg ├── pro_08.jpg ├── pro_09.jpg ├── pro_10.jpg ├── wx_01.jpg └── wx_02.jpg ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── icons │ ├── icon.ico │ └── icon.png ├── src │ ├── lib.rs │ └── main.rs └── tauri.conf.json ├── src ├── App.vue ├── assets │ ├── favicon.ico │ ├── fonts │ │ └── iconfont.js │ ├── images │ │ ├── ai-video │ │ │ ├── icon_more.png │ │ │ ├── iphone_bg.png │ │ │ ├── iphone_tools.png │ │ │ ├── tab_bg.png │ │ │ ├── tab_bg_select.png │ │ │ ├── tab_bgm.png │ │ │ ├── tab_bgm_select.png │ │ │ ├── tab_captions.png │ │ │ ├── tab_captions_select.png │ │ │ ├── tab_character.png │ │ │ ├── tab_character_select.png │ │ │ ├── tab_global.png │ │ │ ├── tab_global_select.png │ │ │ ├── tab_material.png │ │ │ ├── tab_material_select.png │ │ │ ├── tab_text.png │ │ │ ├── tab_text_select.png │ │ │ ├── tab_transition.png │ │ │ ├── tab_transition_select.png │ │ │ ├── tab_voice.png │ │ │ └── tab_voice_select.png │ │ ├── common │ │ │ ├── video_creating_img.png │ │ │ └── voice_creating_img.png │ │ ├── icon │ │ │ ├── default_head.png │ │ │ ├── ele_checkbox_checked.png │ │ │ ├── ele_checkbox_indeterminate.png │ │ │ ├── ele_checkbox_uncheck.png │ │ │ ├── empty.png │ │ │ ├── icon_channel_selected.png │ │ │ ├── icon_clone_finally.png │ │ │ ├── icon_clone_start.png │ │ │ ├── icon_clone_wait.png │ │ │ ├── icon_play.png │ │ │ ├── icon_play_select.png │ │ │ ├── icon_safety.png │ │ │ └── icon_search.png │ │ ├── login_bg.png │ │ ├── login_input_bg.png │ │ └── logo.png │ └── video │ │ └── guidance_figure.mp4 ├── auto-import │ └── imports.d.ts ├── components │ ├── clone │ │ ├── index.scss │ │ └── index.vue │ ├── generate │ │ ├── components │ │ │ ├── captions.vue │ │ │ ├── character.vue │ │ │ ├── text.vue │ │ │ └── voice.vue │ │ ├── index.scss │ │ └── index.vue │ └── preview-video │ │ ├── index.scss │ │ └── index.vue ├── layout │ ├── Menu.vue │ └── title-bar.vue ├── main.js ├── router │ └── index.js ├── styles │ ├── _base.scss │ ├── _normalize.scss │ ├── _variables.scss │ ├── element-variables.scss │ └── index.scss ├── utils │ ├── date.js │ ├── http.js │ └── unit.js └── views │ ├── ai-clone │ ├── character │ │ ├── index.vue │ │ ├── list.scss │ │ └── list.vue │ └── voice │ │ ├── list.scss │ │ └── list.vue │ ├── ai-video │ ├── generate-oral-broadcast │ │ ├── index.scss │ │ └── index.vue │ └── list │ │ ├── index.scss │ │ └── index.vue │ ├── index.vue │ └── login │ ├── index.scss │ └── index.vue └── vite.config.js /.env.beforeBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/.env.beforeBuild -------------------------------------------------------------------------------- /.env.beforeDev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/.env.beforeDev -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/.env.production -------------------------------------------------------------------------------- /.eslintrc-auto-import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/.eslintrc-auto-import.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/README.md -------------------------------------------------------------------------------- /doc/pro_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_01.jpg -------------------------------------------------------------------------------- /doc/pro_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_02.jpg -------------------------------------------------------------------------------- /doc/pro_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_03.jpg -------------------------------------------------------------------------------- /doc/pro_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_04.jpg -------------------------------------------------------------------------------- /doc/pro_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_05.jpg -------------------------------------------------------------------------------- /doc/pro_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_06.jpg -------------------------------------------------------------------------------- /doc/pro_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_07.jpg -------------------------------------------------------------------------------- /doc/pro_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_08.jpg -------------------------------------------------------------------------------- /doc/pro_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_09.jpg -------------------------------------------------------------------------------- /doc/pro_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/pro_10.jpg -------------------------------------------------------------------------------- /doc/wx_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/wx_01.jpg -------------------------------------------------------------------------------- /doc/wx_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/doc/wx_02.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/fonts/iconfont.js -------------------------------------------------------------------------------- /src/assets/images/ai-video/icon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/icon_more.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/iphone_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/iphone_bg.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/iphone_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/iphone_tools.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_bg.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_bg_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_bg_select.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_bgm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_bgm.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_bgm_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_bgm_select.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_captions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_captions.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_captions_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_captions_select.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_character.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_character_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_character_select.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_global.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_global_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_global_select.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_material.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_material_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_material_select.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_text.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_text_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_text_select.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_transition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_transition.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_transition_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_transition_select.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_voice.png -------------------------------------------------------------------------------- /src/assets/images/ai-video/tab_voice_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/ai-video/tab_voice_select.png -------------------------------------------------------------------------------- /src/assets/images/common/video_creating_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/common/video_creating_img.png -------------------------------------------------------------------------------- /src/assets/images/common/voice_creating_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/common/voice_creating_img.png -------------------------------------------------------------------------------- /src/assets/images/icon/default_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/default_head.png -------------------------------------------------------------------------------- /src/assets/images/icon/ele_checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/ele_checkbox_checked.png -------------------------------------------------------------------------------- /src/assets/images/icon/ele_checkbox_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/ele_checkbox_indeterminate.png -------------------------------------------------------------------------------- /src/assets/images/icon/ele_checkbox_uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/ele_checkbox_uncheck.png -------------------------------------------------------------------------------- /src/assets/images/icon/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/empty.png -------------------------------------------------------------------------------- /src/assets/images/icon/icon_channel_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/icon_channel_selected.png -------------------------------------------------------------------------------- /src/assets/images/icon/icon_clone_finally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/icon_clone_finally.png -------------------------------------------------------------------------------- /src/assets/images/icon/icon_clone_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/icon_clone_start.png -------------------------------------------------------------------------------- /src/assets/images/icon/icon_clone_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/icon_clone_wait.png -------------------------------------------------------------------------------- /src/assets/images/icon/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/icon_play.png -------------------------------------------------------------------------------- /src/assets/images/icon/icon_play_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/icon_play_select.png -------------------------------------------------------------------------------- /src/assets/images/icon/icon_safety.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/icon_safety.png -------------------------------------------------------------------------------- /src/assets/images/icon/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/icon/icon_search.png -------------------------------------------------------------------------------- /src/assets/images/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/login_bg.png -------------------------------------------------------------------------------- /src/assets/images/login_input_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/login_input_bg.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/video/guidance_figure.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/assets/video/guidance_figure.mp4 -------------------------------------------------------------------------------- /src/auto-import/imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/auto-import/imports.d.ts -------------------------------------------------------------------------------- /src/components/clone/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/clone/index.scss -------------------------------------------------------------------------------- /src/components/clone/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/clone/index.vue -------------------------------------------------------------------------------- /src/components/generate/components/captions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/generate/components/captions.vue -------------------------------------------------------------------------------- /src/components/generate/components/character.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/generate/components/character.vue -------------------------------------------------------------------------------- /src/components/generate/components/text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/generate/components/text.vue -------------------------------------------------------------------------------- /src/components/generate/components/voice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/generate/components/voice.vue -------------------------------------------------------------------------------- /src/components/generate/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/generate/index.scss -------------------------------------------------------------------------------- /src/components/generate/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/generate/index.vue -------------------------------------------------------------------------------- /src/components/preview-video/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/preview-video/index.scss -------------------------------------------------------------------------------- /src/components/preview-video/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/components/preview-video/index.vue -------------------------------------------------------------------------------- /src/layout/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/layout/Menu.vue -------------------------------------------------------------------------------- /src/layout/title-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/layout/title-bar.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/styles/_base.scss -------------------------------------------------------------------------------- /src/styles/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/styles/_normalize.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/element-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/styles/element-variables.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/utils/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/utils/date.js -------------------------------------------------------------------------------- /src/utils/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/utils/http.js -------------------------------------------------------------------------------- /src/utils/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/utils/unit.js -------------------------------------------------------------------------------- /src/views/ai-clone/character/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/ai-clone/character/index.vue -------------------------------------------------------------------------------- /src/views/ai-clone/character/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/ai-clone/character/list.scss -------------------------------------------------------------------------------- /src/views/ai-clone/character/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/ai-clone/character/list.vue -------------------------------------------------------------------------------- /src/views/ai-clone/voice/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/ai-clone/voice/list.scss -------------------------------------------------------------------------------- /src/views/ai-clone/voice/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/ai-clone/voice/list.vue -------------------------------------------------------------------------------- /src/views/ai-video/generate-oral-broadcast/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/ai-video/generate-oral-broadcast/index.scss -------------------------------------------------------------------------------- /src/views/ai-video/generate-oral-broadcast/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/ai-video/generate-oral-broadcast/index.vue -------------------------------------------------------------------------------- /src/views/ai-video/list/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/ai-video/list/index.scss -------------------------------------------------------------------------------- /src/views/ai-video/list/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/ai-video/list/index.vue -------------------------------------------------------------------------------- /src/views/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/index.vue -------------------------------------------------------------------------------- /src/views/login/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/login/index.scss -------------------------------------------------------------------------------- /src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/src/views/login/index.vue -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libn-net/marketing_creator_pro_max_pc/HEAD/vite.config.js --------------------------------------------------------------------------------