main
xushilin 4 months ago
commit cc29d195ce

@ -25,10 +25,10 @@
</view> </view>
</view> </view>
<!-- welcome sentence --> <!-- welcome sentence -->
<view class="welcome"> <view class="welcome">
您好非常高兴与您交流今天有什么可以帮到您 您好非常高兴与您交流今天有什么可以帮到您
</view> </view>
<!-- suggestions --> <!-- suggestions -->
<view class="guess-panel"> <view class="guess-panel">
@ -69,8 +69,8 @@
</view> </view>
</view> </view>
<view style="height: 12px;" /> <view style="height: 12px;" />
</scroll-view> </scroll-view>
<!-- bottom dock: quick actions + input bar --> <!-- bottom dock: quick actions + input bar -->
<view class="dock"> <view class="dock">
@ -123,8 +123,8 @@
</view> </view>
</view> </view>
</template> </template>
<script> <script>
const HISTORY_KEY = 'chat_history_groups' const HISTORY_KEY = 'chat_history_groups'
@ -597,182 +597,182 @@
background: #f7f8fc; background: #f7f8fc;
} }
.nav { .nav {
height: 44px; height: 44px;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
padding: 0 12px; padding: 0 12px;
background: #ffffff; background: #ffffff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
position: fixed; position: fixed;
left: 0; left: 0;
right: 0; right: 0;
top: 0; top: 0;
z-index: 9; z-index: 9;
} }
.nav-title { .nav-title {
font-size: 16px; font-size: 16px;
font-weight: 600; font-weight: 600;
} }
.hamburger { .hamburger {
width: 18px; width: 18px;
} }
.hamburger .line { .hamburger .line {
height: 2px; height: 2px;
background: #333; background: #333;
margin: 3px 0; margin: 3px 0;
border-radius: 2px; border-radius: 2px;
} }
.gear { .gear {
width: 18px; width: 18px;
height: 18px; height: 18px;
position: relative; position: relative;
color: #000; color: #000;
} }
.content { .content {
flex: 1; flex: 1;
padding: 16px 12px 68px 12px; padding: 16px 12px 68px 12px;
background-color: #f7f8fc; background-color: #f7f8fc;
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
} }
.greet-card { .greet-card {
display: flex; display: flex;
align-items: center; align-items: center;
background: #fff; background: #fff;
border-radius: 14px; border-radius: 14px;
padding: 12px; padding: 12px;
margin-bottom: 10px; margin-bottom: 10px;
} }
.avatar-inner { .avatar-inner {
font-size: 26px; font-size: 26px;
} }
.greet-text .hi { .greet-text .hi {
font-size: 16px; font-size: 16px;
font-weight: 700; font-weight: 700;
color: #0b56ff; color: #0b56ff;
} }
.greet-text .sub { .greet-text .sub {
font-size: 12px; font-size: 12px;
color: #4a76b1; color: #4a76b1;
margin-top: 4px; margin-top: 4px;
} }
.welcome { .welcome {
font-size: 13px; font-size: 13px;
color: #333; color: #333;
background: #fff; background: #fff;
border-radius: 12px; border-radius: 12px;
padding: 10px 12px; padding: 10px 12px;
margin: 12px 0; margin: 12px 0;
} }
.guess-panel { .guess-panel {
background: #fff; background: #fff;
border-radius: 14px; border-radius: 14px;
padding: 10px; padding: 10px;
margin-bottom: 16px; margin-bottom: 16px;
} }
.guess-title { .guess-title {
color: #5f6fff; color: #5f6fff;
font-size: 14px; font-size: 14px;
margin-bottom: 8px; margin-bottom: 8px;
} }
.guess-list { .guess-list {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.guess-item { .guess-item {
background: #f7f8fc; background: #f7f8fc;
border-radius: 10px; border-radius: 10px;
padding: 12px; padding: 12px;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
margin-bottom: 10px; margin-bottom: 10px;
box-sizing: border-box; box-sizing: border-box;
} }
.guess-item:last-child { .guess-item:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
.guess-item .arrow { .guess-item .arrow {
color: #9aa3b2; color: #9aa3b2;
font-size: 18px; font-size: 18px;
} }
.chat { .chat {
margin: 6px 0 12px; margin: 6px 0 12px;
} }
.msg { .msg {
margin: 10px 0; margin: 10px 0;
display: flex; display: flex;
} }
.msg.user { .msg.user {
justify-content: flex-end; justify-content: flex-end;
} }
.bubble { .bubble {
max-width: 80%; max-width: 80%;
padding: 10px 12px; padding: 10px 12px;
border-radius: 14px; border-radius: 14px;
font-size: 14px; font-size: 14px;
line-height: 1.5; line-height: 1.5;
} }
.user-bubble { .user-bubble {
background: #4e7bff; background: #4e7bff;
color: #fff; color: #fff;
border-bottom-right-radius: 4px; border-bottom-right-radius: 4px;
margin-right: 6px; margin-right: 6px;
} }
.ai-bubble { .ai-bubble {
background: #fff; background: #fff;
color: #333; color: #333;
border-bottom-left-radius: 4px; border-bottom-left-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
} }
.listen-btn { .listen-btn {
margin-left: 8px; margin-left: 8px;
color: #6b7280; color: #6b7280;
font-size: 14px; font-size: 14px;
} }
.ai-card-title { .ai-card-title {
color: #5f6fff; color: #5f6fff;
font-weight: 600; font-weight: 600;
margin-bottom: 6px; margin-bottom: 6px;
} }
.ai-card-body { .ai-card-body {
color: #666; color: #666;
} }
/* loading animation */ /* loading animation */
.ai-loading { .ai-loading {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 6px; gap: 6px;
padding: 4px 0; padding: 4px 0;
} }
.loading-dot { .loading-dot {
width: 8px; width: 8px;
@ -782,13 +782,13 @@
animation: loading-bounce 1.5s ease-in-out infinite both; animation: loading-bounce 1.5s ease-in-out infinite both;
} }
.loading-dot:nth-child(1) { .loading-dot:nth-child(1) {
animation-delay: -0.32s; animation-delay: -0.32s;
} }
.loading-dot:nth-child(2) { .loading-dot:nth-child(2) {
animation-delay: -0.16s; animation-delay: -0.16s;
} }
@keyframes loading-bounce { @keyframes loading-bounce {
@ -805,214 +805,214 @@
} }
} }
/* bottom dock */ /* bottom dock */
.dock { .dock {
position: fixed; position: fixed;
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
background: #f7f8fc; background: #f7f8fc;
box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06); box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
padding-bottom: constant(safe-area-inset-bottom); padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom); padding-bottom: env(safe-area-inset-bottom);
} }
.quick-actions { .quick-actions {
padding: 6px 10px 4px; padding: 6px 10px 4px;
} }
.quick-actions.horizontal { .quick-actions.horizontal {
white-space: nowrap; white-space: nowrap;
width: 95%; width: 95%;
} }
.qa-btn { .qa-btn {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
min-width: 96px; min-width: 96px;
text-align: center; text-align: center;
background: #fff; background: #fff;
border-radius: 10px; border-radius: 10px;
padding: 8px 10px; padding: 8px 10px;
font-size: 12px; font-size: 12px;
color: #3b3f45; color: #3b3f45;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
margin-right: 10px; margin-right: 10px;
} }
.qa-btn.minor { .qa-btn.minor {
background: #eff1ff; background: #eff1ff;
color: #4e7bff; color: #4e7bff;
} }
.qa-btn:last-child { .qa-btn:last-child {
margin-right: 0; margin-right: 0;
} }
.input-bar { .input-bar {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 8px 10px 12px; padding: 8px 10px 12px;
gap: 8px; gap: 8px;
background: #f7f8fc; background: #f7f8fc;
} }
.input { .input {
flex: 1; flex: 1;
background: #fff; background: #fff;
border-radius: 24px; border-radius: 24px;
padding: 10px 14px; padding: 10px 14px;
font-size: 14px; font-size: 14px;
} }
.ph { .ph {
color: #9aa3b2; color: #9aa3b2;
} }
.mic { .mic {
width: 36px; width: 36px;
height: 36px; height: 36px;
border-radius: 18px; border-radius: 18px;
background: #fff; background: #fff;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
} }
.mic.recording { .mic.recording {
background: #fffbf0; background: #fffbf0;
box-shadow: 0 0 0 2px rgba(255, 193, 7, .25) inset; box-shadow: 0 0 0 2px rgba(255, 193, 7, .25) inset;
} }
.send { .send {
height: 36px; height: 36px;
line-height: 36px; line-height: 36px;
padding: 0 14px; padding: 0 14px;
border-radius: 18px; border-radius: 18px;
background: #4e7bff; background: #4e7bff;
color: #fff; color: #fff;
font-size: 14px; font-size: 14px;
} }
/* drawer */ /* drawer */
.drawer-mask { .drawer-mask {
width: 70vw; width: 70vw;
height: 100vh; height: 100vh;
} }
.drawer { .drawer {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
background: #fff; background: #fff;
border-top-right-radius: 8px; border-top-right-radius: 8px;
border-bottom-right-radius: 8px; border-bottom-right-radius: 8px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.drawer.show { .drawer.show {
transform: translateX(0); transform: translateX(0);
} }
.drawer-scroll { .drawer-scroll {
height: calc(100vh - 64px); height: calc(100vh - 64px);
padding: 12px; padding: 12px;
box-sizing: border-box; box-sizing: border-box;
} }
.drawer-group { .drawer-group {
padding: 10px 8px 0; padding: 10px 8px 0;
} }
.drawer-date { .drawer-date {
color: #9aa3b2; color: #9aa3b2;
font-size: 12px; font-size: 12px;
margin-bottom: 8px; margin-bottom: 8px;
} }
.drawer-item { .drawer-item {
color: #333; color: #333;
font-size: 13px; font-size: 13px;
line-height: 20px; line-height: 20px;
margin: 6px 0; margin: 6px 0;
} }
.drawer-divider { .drawer-divider {
height: 1px; height: 1px;
background: #eeeeee; background: #eeeeee;
margin: 12px 0; margin: 12px 0;
} }
.drawer-footer { .drawer-footer {
padding: 12px; padding: 12px;
border-top: 1px solid #eeeeee; border-top: 1px solid #eeeeee;
display: flex; display: flex;
align-items: center; align-items: center;
} }
.drawer-footer { .drawer-footer {
/* fixed height for calc above */ /* fixed height for calc above */
height: 64px; height: 64px;
} }
.user-icon { .user-icon {
width: 24px; width: 24px;
text-align: center; text-align: center;
} }
.user-name { .user-name {
flex: 1; flex: 1;
font-size: 14px; font-size: 14px;
color: #333; color: #333;
} }
.footer-gear { .footer-gear {
width: 24px; width: 24px;
text-align: center; text-align: center;
} }
/* voice overlay */ /* voice overlay */
.record-mask { .record-mask {
position: fixed; position: fixed;
left: 0; left: 0;
right: 0; right: 0;
top: 0; top: 0;
bottom: 0; bottom: 0;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
z-index: 9999; z-index: 9999;
} }
.record-box { .record-box {
background: rgba(0, 0, 0, .75); background: rgba(0, 0, 0, .75);
color: #fff; color: #fff;
padding: 16px 18px; padding: 16px 18px;
border-radius: 12px; border-radius: 12px;
display: flex; display: flex;
align-items: center; align-items: center;
gap: 10px; gap: 10px;
min-width: 220rpx; min-width: 220rpx;
} }
.record-box.cancel { .record-box.cancel {
background: rgba(221, 44, 0, .85); background: rgba(221, 44, 0, .85);
} }
.record-icon { .record-icon {
font-size: 20px; font-size: 20px;
} }
.record-text { .record-text {
font-size: 14px; font-size: 14px;
} }
.text-voice { .text-voice {
display: flex; display: flex;
align-items: center; align-items: center;
} }
.voice-play { .voice-play {
width: 20px; width: 20px;

@ -1,7 +1,7 @@
var isReady=false;var onReadyCallbacks=[]; var isReady=false;var onReadyCallbacks=[];
var isServiceReady=false;var onServiceReadyCallbacks=[]; var isServiceReady=false;var onServiceReadyCallbacks=[];
var __uniConfig = {"pages":["pages/index/index","pages/setting/index"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"萃星智能AI","compilerVersion":"4.29","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}}; var __uniConfig = {"pages":["pages/index/index","pages/setting/index"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"萃星智能AI","compilerVersion":"4.76","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true},"window":{"navigationStyle":"custom"}},{"path":"/pages/setting/index","meta":{},"window":{"navigationStyle":"custom"}}]; var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true},"window":{"navigationStyle":"custom"}},{"path":"/pages/setting/index","meta":{},"window":{"navigationStyle":"custom"}}];
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); __uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); __uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__5BDEDB4","name":"萃星智能AI","version":{"name":"1.0.1","code":100},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Record":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"abiFilters":["armeabi-v7a","arm64-v8a","x86"]},"apple":{"dSYMs":false},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"arguments":"{\"name\":\"\",\"path\":\"\",\"query\":\"\",\"id\":0}","allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"4.29","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html"}} {"@platforms":["android","iPhone","iPad"],"id":"__UNI__5BDEDB4","name":"萃星智能AI","version":{"name":"1.0.1","code":100},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Record":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"abiFilters":["armeabi-v7a","arm64-v8a","x86"]},"apple":{"dSYMs":false},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"arguments":"{\"name\":\"\",\"path\":\"\",\"query\":\"\",\"id\":0}","allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"4.76","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html"}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save