diff --git a/.gitignore b/.gitignore
index efee2d7..8ce14fe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -368,3 +368,4 @@ unpackage/*
uni_modules/*
unpackage/*
+/unpackage/
diff --git a/unpackage/dist/dev/mp-weixin/app.js b/unpackage/dist/dev/mp-weixin/app.js
index aa018e6..88b94bc 100644
--- a/unpackage/dist/dev/mp-weixin/app.js
+++ b/unpackage/dist/dev/mp-weixin/app.js
@@ -22,7 +22,7 @@ const _sfc_main = {
console.log("App Hide");
}
};
-const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "I:/Gitea/magicsound/App.vue"]]);
+const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "F:/gitCode/uniapp/magicsound/App.vue"]]);
function createApp() {
const app = common_vendor.createSSRApp(App);
return {
diff --git a/unpackage/dist/dev/mp-weixin/pages/create/CreateInfoPage.js b/unpackage/dist/dev/mp-weixin/pages/create/CreateInfoPage.js
index d75a523..3c3227f 100644
--- a/unpackage/dist/dev/mp-weixin/pages/create/CreateInfoPage.js
+++ b/unpackage/dist/dev/mp-weixin/pages/create/CreateInfoPage.js
@@ -31,5 +31,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
c: common_vendor.s("paddingTop: " + $data.systemBarHeight + "px;")
};
}
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/pages/create/CreateInfoPage.vue"]]);
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/pages/create/CreateInfoPage.vue"]]);
wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/create/createpage.js b/unpackage/dist/dev/mp-weixin/pages/create/createpage.js
index 6d6985e..a46b2f2 100644
--- a/unpackage/dist/dev/mp-weixin/pages/create/createpage.js
+++ b/unpackage/dist/dev/mp-weixin/pages/create/createpage.js
@@ -92,7 +92,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
f: $data.songTitle,
g: common_vendor.o(($event) => $data.songTitle = $event.detail.value),
h: common_vendor.o(($event) => $options.toCreateInfo()),
- i: common_vendor.sr("inputClose", "2cf73c32-1,2cf73c32-0"),
+ i: common_vendor.sr("inputClose", "5a233947-1,5a233947-0"),
j: common_vendor.o($options.dialogInputConfirm),
k: common_vendor.p({
mode: "input",
@@ -100,7 +100,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
value: "",
placeholder: "请输入内容"
}),
- l: common_vendor.sr("inputDialog", "2cf73c32-0"),
+ l: common_vendor.sr("inputDialog", "5a233947-0"),
m: common_vendor.p({
type: "center",
["background-color"]: "#333333"
@@ -108,5 +108,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
n: common_vendor.s("paddingTop: " + $data.systemBarHeight + "px; height:" + $data.subtractedHeight + "px")
};
}
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/pages/create/createpage.vue"]]);
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/pages/create/createpage.vue"]]);
wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/create/createpage.wxml b/unpackage/dist/dev/mp-weixin/pages/create/createpage.wxml
index e71f4a8..f3ee8b1 100644
--- a/unpackage/dist/dev/mp-weixin/pages/create/createpage.wxml
+++ b/unpackage/dist/dev/mp-weixin/pages/create/createpage.wxml
@@ -1 +1 @@
-歌词生歌{{d}}/500音乐风格{{item.a}}音乐名称立即生成
\ No newline at end of file
+歌词生歌{{d}}/500音乐风格{{item.a}}音乐名称立即生成
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/index.js b/unpackage/dist/dev/mp-weixin/pages/index/index.js
index 70a054e..230d27f 100644
--- a/unpackage/dist/dev/mp-weixin/pages/index/index.js
+++ b/unpackage/dist/dev/mp-weixin/pages/index/index.js
@@ -3,13 +3,13 @@ const common_vendor = require("../../common/vendor.js");
const modules_api_AppServer = require("../../modules/api/AppServer.js");
const _sfc_main = {
data() {
- var tabs = [];
return {
systemBarHeight: 0,
subtractedHeight: 0,
- tabs,
+ tabs: ["推荐"],
current: 0,
- swiperCurrent: 0
+ swiperCurrent: 0,
+ musicGenresList: []
};
},
onLoad() {
@@ -49,10 +49,13 @@ const _sfc_main = {
var appserver = new modules_api_AppServer.AppServer();
appserver.GetMusicGenresList().then((data) => {
console.log("getMusicGenresList", data.data);
+ that.musicGenresList = data.data;
+ let _tabs = [];
for (var i = 0; i < data.data.length; i++) {
- that.tabs.push(data[i].genreName);
- console.log("data[i].genreName", data[i].genreName);
+ _tabs.push(data.data[i].genreName);
+ console.log("data[i].genreName", data.data[i].genreName);
}
+ that.tabs = _tabs;
console.log("that.tabs", that.tabs);
});
},
@@ -107,5 +110,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
i: common_vendor.s("paddingTop: " + $data.systemBarHeight + "px; height:" + $data.subtractedHeight + "px")
};
}
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/pages/index/index.vue"]]);
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/pages/index/index.vue"]]);
wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/index.wxml b/unpackage/dist/dev/mp-weixin/pages/index/index.wxml
index fe9c630..09000e3 100644
--- a/unpackage/dist/dev/mp-weixin/pages/index/index.wxml
+++ b/unpackage/dist/dev/mp-weixin/pages/index/index.wxml
@@ -1 +1 @@
-歌词名作者1111.1万制作同款
\ No newline at end of file
+歌词名作者1111.1万制作同款
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/login/Loginpage.js b/unpackage/dist/dev/mp-weixin/pages/login/Loginpage.js
index f2207b3..89fd885 100644
--- a/unpackage/dist/dev/mp-weixin/pages/login/Loginpage.js
+++ b/unpackage/dist/dev/mp-weixin/pages/login/Loginpage.js
@@ -40,5 +40,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
d: common_vendor.s("paddingTop: " + $data.systemBarHeight + "px;")
};
}
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/pages/login/Loginpage.vue"]]);
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/pages/login/Loginpage.vue"]]);
wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/me/SettingPage.js b/unpackage/dist/dev/mp-weixin/pages/me/SettingPage.js
index 103361e..020faa3 100644
--- a/unpackage/dist/dev/mp-weixin/pages/me/SettingPage.js
+++ b/unpackage/dist/dev/mp-weixin/pages/me/SettingPage.js
@@ -31,5 +31,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
c: common_vendor.s("paddingTop: " + $data.systemBarHeight + "px;")
};
}
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/pages/me/SettingPage.vue"]]);
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/pages/me/SettingPage.vue"]]);
wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/me/mepage.js b/unpackage/dist/dev/mp-weixin/pages/me/mepage.js
index 5cc33b5..64d9cef 100644
--- a/unpackage/dist/dev/mp-weixin/pages/me/mepage.js
+++ b/unpackage/dist/dev/mp-weixin/pages/me/mepage.js
@@ -54,5 +54,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
e: common_vendor.s("paddingTop: " + $data.systemBarHeight + "px; height:" + $data.subtractedHeight + "px")
};
}
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/pages/me/mepage.vue"]]);
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/pages/me/mepage.vue"]]);
wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/music/MusicPlayPage.js b/unpackage/dist/dev/mp-weixin/pages/music/MusicPlayPage.js
index 7dec50a..a14e975 100644
--- a/unpackage/dist/dev/mp-weixin/pages/music/MusicPlayPage.js
+++ b/unpackage/dist/dev/mp-weixin/pages/music/MusicPlayPage.js
@@ -140,5 +140,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
j: common_vendor.s("paddingTop: " + $data.systemBarHeight + "px;")
};
}
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/pages/music/MusicPlayPage.vue"]]);
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/pages/music/MusicPlayPage.vue"]]);
wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/recharge/RechargePage.js b/unpackage/dist/dev/mp-weixin/pages/recharge/RechargePage.js
index a844f85..c549398 100644
--- a/unpackage/dist/dev/mp-weixin/pages/recharge/RechargePage.js
+++ b/unpackage/dist/dev/mp-weixin/pages/recharge/RechargePage.js
@@ -106,5 +106,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
l: common_vendor.s("paddingTop: " + $data.systemBarHeight + "px;")
};
}
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/pages/recharge/RechargePage.vue"]]);
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/pages/recharge/RechargePage.vue"]]);
wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/project.config.json b/unpackage/dist/dev/mp-weixin/project.config.json
index 4388dc2..0c336ca 100644
--- a/unpackage/dist/dev/mp-weixin/project.config.json
+++ b/unpackage/dist/dev/mp-weixin/project.config.json
@@ -1,7 +1,8 @@
{
"description": "项目配置文件。",
"packOptions": {
- "ignore": []
+ "ignore": [],
+ "include": []
},
"setting": {
"urlCheck": false,
@@ -9,28 +10,20 @@
"postcss": false,
"minified": false,
"newFeature": true,
- "bigPackageSizeSupport": true
+ "bigPackageSizeSupport": true,
+ "babelSetting": {
+ "ignore": [],
+ "disablePlugins": [],
+ "outputPath": ""
+ }
},
"compileType": "miniprogram",
- "libVersion": "",
+ "libVersion": "3.5.8",
"appid": "wx595ec949c6efd72b",
"projectname": "magicsound",
- "condition": {
- "search": {
- "current": -1,
- "list": []
- },
- "conversation": {
- "current": -1,
- "list": []
- },
- "game": {
- "current": -1,
- "list": []
- },
- "miniprogram": {
- "current": -1,
- "list": []
- }
+ "condition": {},
+ "editorSetting": {
+ "tabIndent": "insertSpaces",
+ "tabSize": 2
}
}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.js b/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.js
index e8252a8..9131a0e 100644
--- a/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.js
+++ b/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.js
@@ -166,5 +166,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
p: common_vendor.o((...args) => $options.onOk && $options.onOk(...args))
});
}
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue"]]);
+const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue"]]);
wx.createComponent(Component);
diff --git a/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup/uni-popup.js b/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup/uni-popup.js
index e10a094..9642f37 100644
--- a/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup/uni-popup.js
+++ b/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup/uni-popup.js
@@ -389,5 +389,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
l: common_vendor.n($options.isDesktop ? "fixforpc-z-index" : "")
}) : {});
}
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/uni_modules/uni-popup/components/uni-popup/uni-popup.vue"]]);
+const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/uni_modules/uni-popup/components/uni-popup/uni-popup.vue"]]);
wx.createComponent(Component);
diff --git a/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup/uni-popup.wxml b/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup/uni-popup.wxml
index ce822b5..1d21737 100644
--- a/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup/uni-popup.wxml
+++ b/unpackage/dist/dev/mp-weixin/uni_modules/uni-popup/components/uni-popup/uni-popup.wxml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/uni_modules/uni-transition/components/uni-transition/uni-transition.js b/unpackage/dist/dev/mp-weixin/uni_modules/uni-transition/components/uni-transition/uni-transition.js
index 6aa606f..2d3f6dd 100644
--- a/unpackage/dist/dev/mp-weixin/uni_modules/uni-transition/components/uni-transition/uni-transition.js
+++ b/unpackage/dist/dev/mp-weixin/uni_modules/uni-transition/components/uni-transition/uni-transition.js
@@ -261,5 +261,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
e: common_vendor.o((...args) => $options.onClick && $options.onClick(...args))
};
}
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "I:/Gitea/magicsound/uni_modules/uni-transition/components/uni-transition/uni-transition.vue"]]);
+const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "F:/gitCode/uniapp/magicsound/uni_modules/uni-transition/components/uni-transition/uni-transition.vue"]]);
wx.createComponent(Component);
diff --git a/unpackage/dist/dev/mp-weixin/uni_modules/v-tabs/components/v-tabs/v-tabs.js b/unpackage/dist/dev/mp-weixin/uni_modules/v-tabs/components/v-tabs/v-tabs.js
index dec79f3..0b4004c 100644
--- a/unpackage/dist/dev/mp-weixin/uni_modules/v-tabs/components/v-tabs/v-tabs.js
+++ b/unpackage/dist/dev/mp-weixin/uni_modules/v-tabs/components/v-tabs/v-tabs.js
@@ -185,5 +185,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
F: _ctx.padding
});
}
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-4a111109"], ["__file", "I:/Gitea/magicsound/uni_modules/v-tabs/components/v-tabs/v-tabs.vue"]]);
+const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-4a111109"], ["__file", "F:/gitCode/uniapp/magicsound/uni_modules/v-tabs/components/v-tabs/v-tabs.vue"]]);
wx.createComponent(Component);