msb_beta
ch 3 years ago
parent 2b857c1018
commit e9c0bafc27

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-03-29 16:05:06
* @LastEditors: ch
* @LastEditTime: 2022-04-09 15:01:37
* @LastEditTime: 2022-04-30 15:33:47
* @Description: file content
-->
<template>
@ -55,8 +55,8 @@ export default {
}
},
mounted(){
console.log(Province.find(i => i.name == '重庆市'));
this.setColumAndDefalut(this.value);
},
methods: {
/**

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-04-07 17:22:44
* @LastEditors: ch
* @LastEditTime: 2022-04-29 21:58:35
* @LastEditTime: 2022-04-30 15:51:52
* @Description: file content
-->
@ -12,7 +12,7 @@
<view class="goods-item" v-for="item in goodsLeftData" :key="item.id"
@click="$Router.push(`/goodsDetail?id=${item.id}`)">
<image class="goods-item--img" :src="item.mainPicture" mode="widthFix"></image>
<view class="goods-item--title" :class="item.tagList.length && 'goods-item--title__indent'">
<view class="goods-item--title" :class="item.tagList && item.tagList.length && 'goods-item--title__indent'">
<image class="goods-item--tag" v-for="i in item.tagList" :key="i.code" src="@/static/goods/tag2.png"/>
<text>{{item.name}}</text>
</view>

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-03-22 13:54:15
* @LastEditors: ch
* @LastEditTime: 2022-04-29 22:59:29
* @LastEditTime: 2022-04-30 14:59:23
* @Description: file content
-->
<template>
@ -78,9 +78,6 @@ export default {
return false;
}
this.addresList = result;
if(!result.length){
this.$Router.replace(`/addressCreate?first=${!result.length}`)
}
this.$store.commit('SET_ADDRESS', result);
if(this.query.source === 'submitOrder'){
//

@ -67,7 +67,7 @@
<!-- 底部操作栏 -->
<view v-if="list.length" :class="`footer footer__${type}`">
<label class="all-radio" @click="handleCheckAll">
<radio class="radio" color="#FF875B"
<radio class="radio" color="#FF875B" :disabled="list && list.filter(i => i.status == 'normal').length == 0"
:checked="checkedIds.length > 0 && checkedIds.length === list.filter(i => i.status == 'normal').length" />
<text>全选</text>
</label>
@ -282,11 +282,11 @@ export default {
* 否则选中全部正常状态商品
*/
handleCheckAll() {
const { checkedIds, list } = this;
const normalList = list.filter(i => i.status == 'normal');
if(normalList.length == 0){
return false;
}
const { checkedIds, list } = this;
this.checkedIds = checkedIds.length === normalList.length ? [] :
normalList.map(item => item.id);
},
@ -509,7 +509,7 @@ export default {
position: fixed;
bottom: 0;
/* #ifdef H5 */
bottom: 100rpx;
bottom: 50px;
/* #endif */
left: 0;
right: 0;

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-03-24 11:30:55
* @LastEditors: ch
* @LastEditTime: 2022-04-29 17:05:26
* @LastEditTime: 2022-04-30 15:41:16
* @Description: file content
-->
<template>

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-03-21 10:31:54
* @LastEditors: ch
* @LastEditTime: 2022-04-29 22:57:52
* @LastEditTime: 2022-04-30 15:50:35
* @Description: file content
-->
<template>
@ -23,7 +23,7 @@
<!-- 当前条件无数据时展示 -->
<template v-if="showEmpty">
<BsEmpty tips="没搜到您想要的相关商品">
<UiButton slot="btn" @click="$Router.replace('/')"></UiButton>
<UiButton slot="btn" @click="$Router.pushTab('/')"></UiButton>
</BsEmpty>
<view class="title">为您精选</view>
<BsChoiceGoods class="goods-group" ref="choiceGoods"></BsChoiceGoods>
@ -89,6 +89,19 @@ export default {
uni.$u.toast(error.message);
return false;
}
let res = result.records.map(item => {
item.seckill = false;
item.tagList = [];
item.labelList.forEach(i => {
if(i.code === 'second_kill'){
item.seckill = true;
}else{
i.url = require('@/static/goods/tag2.png');
item.tagList.push(i);
}
})
return item;
})
this.listData = this.listData.concat(result.records);
//
if(result.records.length < this.params.length){

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-03-21 11:29:38
* @LastEditors: ch
* @LastEditTime: 2022-04-29 23:00:50
* @LastEditTime: 2022-04-30 16:09:41
* @Description: file content
-->
<template>
@ -12,8 +12,9 @@
<u--input class="search--input" focus placeholder="请输入您想搜索的商品名称"
clearable v-model="searchValue" @confirm="onSearch"
placeholderClass="search--input__placeholder">
<u-icon slot="suffix" @click="onSearch" name="search" color="#ccc" size="48rpx"></u-icon>
</u--input>
<u-icon class="search--icon" size="48rpx" name="search" @click="onSearch" color="#ccc"/>
<!-- <image class="search--icon" src="@/static/search/search.png"/> -->
</view>
</UiPageHeader>
<view class="history" v-if="historyList.length">
@ -130,11 +131,16 @@ page {
border:none;
box-sizing: border-box;
background: $color-grey1;
padding-right: 70rpx !important;
&__placeholder{
font-size: $font-size-base;
color: $color-grey5;
}
}
&--icon{
position: absolute;
right: 60rpx;
}
&--btn{
font-size: 26rpx;

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2019-08-22 19:41:20
* @LastEditors: ch
* @LastEditTime: 2022-04-29 23:01:53
* @LastEditTime: 2022-04-30 15:32:52
* @Description: file content
-->
<template>
@ -38,6 +38,8 @@
<view class="title">为您推荐</view>
<BsChoiceGoods ref="goodsGroup" ></BsChoiceGoods>
</view>
</template>
<script>

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-03-22 10:58:24
* @LastEditors: ch
* @LastEditTime: 2022-04-29 23:02:22
* @LastEditTime: 2022-04-30 14:56:38
* @Description: file content
-->
<template>
@ -13,7 +13,7 @@
{{item.name}}</text>
</view>
<BsEmpty v-if="!orderListData.length && loadingStatus === 'nomore'" tips="暂无订单记录呢~" :icon="require('@/static/order/empty.png')">
<ui-button slot="btn" type="line" @click="$Router.push('/')"></ui-button>
<ui-button slot="btn" type="line" @click="$Router.pushTab('/')"></ui-button>
</BsEmpty>
<view class="orders" v-for="item in orderListData" :key="item.orderId">
@ -80,7 +80,7 @@ export default {
this.getOrderList()
},
onReachBottom(){
this.next()
this.next();
},
methods: {
/**
@ -153,13 +153,16 @@ export default {
<style lang="scss">
page {
background: $color-grey1;
overflow: hidden;
// overflow: hidden;
}
</style>
<style lang="scss" scoped>
.tabs{
height: 100rpx;
background: $color-grey0;
position: sticky;
top: var(--window-top);
z-index: 99;
display: flex;
justify-content: space-between;
align-items: center;

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-03-22 10:58:24
* @LastEditors: ch
* @LastEditTime: 2022-04-29 23:06:34
* @LastEditTime: 2022-04-30 15:41:49
* @Description: file content
-->
<template>
@ -18,19 +18,6 @@
<text class="orders--status">{{item.refundStatusDesc}}</text>
</view>
<UiGoodsInfoMax :data="item.refundProduct" @click="$Router.push(`/orderDetail?id=${item.orderId}`)" />
<!-- <view class="orders--item">
<image class="orders--item-image" mode="widthFix" :src="item.refundProduct.productImageUrl" />
<view >
<view class="orders--item-con">
<text class="orders--item-title">{{item.refundProduct.productName}}</text>
<text class="orders--item-pirce">{{item.refundProduct.realAmount}}</text>
</view>
<view class="orders--item-desc">
<text>{{item.refundProduct.skuDescribe}}</text>
<text class="orders--item-num">x{{item.refundProduct.quantity}}</text>
</view>
</view>
</view> -->
<view class="orders--footer">
<button class="orders--footer-btn">查看详情</button>
</view>
@ -182,7 +169,7 @@ page {
}
&--footer{
display: flex;
justify-content: end;
justify-content: flex-end;
align-items: center;
margin-top: 30rpx;
&-btn{

Binary file not shown.

@ -1 +1 @@
https://ide.dcloud.net.cn/build/download/6bf1de60-c602-11ec-a312-ef91de2103d2
https://ide.dcloud.net.cn/build/download/a3377f60-c85e-11ec-994d-bda3794cff48

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
var isReady=false;var onReadyCallbacks=[];
var isServiceReady=false;var onServiceReadyCallbacks=[];
var __uniConfig = {"pages":["pages/index/index","pages/login","pages/seckill","pages/goods/category","pages/goods/search","pages/goods/list/index","pages/goods/detail/index","pages/account/index","pages/cart/cart","pages/cart/tabBarCart","pages/account/setting/index","pages/account/setting/setUserInfo","pages/account/setting/setName","pages/account/address/list","pages/account/address/create","pages/account/address/edit","pages/order/submit","pages/order/list","pages/order/detail/index","pages/order/logisitcsInfo","pages/order/orderSuccess","pages/order/payResult","pages/order/saleAfter/saleAfterList","pages/order/saleAfter/saleAfterDetail/index","pages/order/saleAfter/saleAfterSelect","pages/order/saleAfter/saleAfterApply","pages/order/saleAfter/saleAfterEdit","pages/account/message/group","pages/account/message/list"],"window":{"navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#BBBBBB","selectedColor":"#FF875B","backgroundColor":"#FFF","borderStyle":"#eee","fontSize":"24rpx","height":"120rpx","list":[{"pagePath":"pages/index/index","iconPath":"static/common/tabbar/home.png","selectedIconPath":"static/common/tabbar/home-active.png","text":"首页"},{"pagePath":"pages/goods/category","iconPath":"static/common/tabbar/category.png","selectedIconPath":"static/common/tabbar/category-active.png","text":"分类"},{"pagePath":"pages/cart/tabBarCart","iconPath":"static/common/tabbar/shopping-cart.png","selectedIconPath":"static/common/tabbar/shopping-cart-active.png","text":"购物车"},{"pagePath":"pages/account/index","iconPath":"static/common/tabbar/account.png","selectedIconPath":"static/common/tabbar/account-active.png","text":"我的"}]},"nvueCompiler":"uni-app","nvueStyleCompiler":"weex","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"马士兵严选","compilerVersion":"3.3.13","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniConfig = {"pages":["pages/index/index","pages/login","pages/seckill","pages/goods/category","pages/goods/search","pages/goods/list/index","pages/goods/detail/index","pages/account/index","pages/cart/cart","pages/cart/tabBarCart","pages/account/setting/index","pages/account/setting/setUserInfo","pages/account/setting/setName","pages/account/address/list","pages/account/address/create","pages/account/address/edit","pages/order/submit","pages/order/list","pages/order/detail/index","pages/order/logisitcsInfo","pages/order/orderSuccess","pages/order/payResult","pages/order/saleAfter/saleAfterList","pages/order/saleAfter/saleAfterDetail/index","pages/order/saleAfter/saleAfterSelect","pages/order/saleAfter/saleAfterApply","pages/order/saleAfter/saleAfterEdit","pages/account/message/group","pages/account/message/list"],"window":{"navigationBarBackgroundColor":"#fff","navigationBarTextStyle":"black","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#BBBBBB","selectedColor":"#FF875B","backgroundColor":"#FFF","borderStyle":"#eee","list":[{"pagePath":"pages/index/index","iconPath":"static/common/tabbar/home.png","selectedIconPath":"static/common/tabbar/home-active.png","text":"首页"},{"pagePath":"pages/goods/category","iconPath":"static/common/tabbar/category.png","selectedIconPath":"static/common/tabbar/category-active.png","text":"分类"},{"pagePath":"pages/cart/tabBarCart","iconPath":"static/common/tabbar/shopping-cart.png","selectedIconPath":"static/common/tabbar/shopping-cart-active.png","text":"购物车"},{"pagePath":"pages/account/index","iconPath":"static/common/tabbar/account.png","selectedIconPath":"static/common/tabbar/account-active.png","text":"我的"}]},"nvueCompiler":"uni-app","nvueStyleCompiler":"weex","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"马士兵严选","compilerVersion":"3.3.13","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选","backgroundColor":"#69ADE5"}},{"path":"/pages/login","meta":{},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选"}},{"path":"/pages/seckill","meta":{},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选"}},{"path":"/pages/goods/category","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选"}},{"path":"/pages/goods/search","meta":{},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选"}},{"path":"/pages/goods/list/index","meta":{},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选"}},{"path":"/pages/goods/detail/index","meta":{},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选"}},{"path":"/pages/account/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选"}},{"path":"/pages/cart/cart","meta":{},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选"}},{"path":"/pages/cart/tabBarCart","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationStyle":"custom","navigationBarTitleText":"马士兵严选"}},{"path":"/pages/account/setting/index","meta":{},"window":{"navigationBarTitleText":"设置"}},{"path":"/pages/account/setting/setUserInfo","meta":{},"window":{"navigationBarTitleText":"个人资料"}},{"path":"/pages/account/setting/setName","meta":{},"window":{"navigationStyle":"custom","navigationBarTitleText":"设置昵称"}},{"path":"/pages/account/address/list","meta":{},"window":{"navigationBarTitleText":"收货地址"}},{"path":"/pages/account/address/create","meta":{},"window":{"navigationBarTitleText":"新增收货地址"}},{"path":"/pages/account/address/edit","meta":{},"window":{"navigationBarTitleText":"编辑收货地址"}},{"path":"/pages/order/submit","meta":{},"window":{"navigationBarTitleText":"提交订单"}},{"path":"/pages/order/list","meta":{},"window":{"navigationBarTitleText":"我的订单"}},{"path":"/pages/order/detail/index","meta":{},"window":{"navigationBarTitleText":"订单详情","navigationBarBackgroundColor":"#F8F8F8"}},{"path":"/pages/order/logisitcsInfo","meta":{},"window":{"navigationBarTitleText":"物流详情","navigationBarBackgroundColor":"#F8F8F8"}},{"path":"/pages/order/orderSuccess","meta":{},"window":{"navigationBarTitleText":"交易成功"}},{"path":"/pages/order/payResult","meta":{},"window":{"navigationBarTitleText":"支付中"}},{"path":"/pages/order/saleAfter/saleAfterList","meta":{},"window":{"navigationBarTitleText":"售后订单"}},{"path":"/pages/order/saleAfter/saleAfterDetail/index","meta":{},"window":{"navigationBarTitleText":"售后详情","navigationBarBackgroundColor":"#F8F8F8"}},{"path":"/pages/order/saleAfter/saleAfterSelect","meta":{},"window":{"navigationBarTitleText":"申请售后"}},{"path":"/pages/order/saleAfter/saleAfterApply","meta":{},"window":{"navigationBarTitleText":"申请退款"}},{"path":"/pages/order/saleAfter/saleAfterEdit","meta":{},"window":{"navigationBarTitleText":"修改申请退款"}},{"path":"/pages/account/message/group","meta":{},"window":{"navigationBarTitleText":"消息"}},{"path":"/pages/account/message/list","meta":{},"window":{"navigationBarTitleText":"马士兵严选"}}];
__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()})}});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__3FB31B6","name":"马士兵严选","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"usingComponents":true,"nvueStyleCompiler":"马士兵严选","compilerVersion":3,"distribute":{"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\"/>"],"packagename":"uni.UNI3FB31B6","password":"nggekL5iZyDSOb/SYKVfAg==","aliasname":"yanxuan","keystore":"google-keystore.keystore","custompermissions":true},"apple":{"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}},"orientation":["portrait-primary"],"icons":{"ios":{"prerendered":"false","iphone":{"app@2x":"","app@3x":"","spotlight@2x":"","spotlight@3x":"","settings@2x":"","settings@3x":"","notification@2x":"","notification@3x":""},"appstore":"","ipad":{"app":"","app@2x":"","proapp@2x":"","spotlight":"","spotlight@2x":"","settings":"","settings@2x":"","notification":"","notification@2x":""}},"android":{"hdpi":"","xhdpi":"","xxhdpi":"","xxxhdpi":""}},"splashscreen":{}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#FFF","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.3.13","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#BBBBBB","selectedColor":"#FF875B","backgroundColor":"#FFF","borderStyle":"#eee","fontSize":"24rpx","height":"120px","list":[{"pagePath":"pages/index/index","iconPath":"static/common/tabbar/home.png","selectedIconPath":"static/common/tabbar/home-active.png","text":"首页"},{"pagePath":"pages/goods/category","iconPath":"static/common/tabbar/category.png","selectedIconPath":"static/common/tabbar/category-active.png","text":"分类"},{"pagePath":"pages/cart/tabBarCart","iconPath":"static/common/tabbar/shopping-cart.png","selectedIconPath":"static/common/tabbar/shopping-cart-active.png","text":"购物车"},{"pagePath":"pages/account/index","iconPath":"static/common/tabbar/account.png","selectedIconPath":"static/common/tabbar/account-active.png","text":"我的"}],"child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html","adid":"126770270804"}}
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__3FB31B6","name":"马士兵严选","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"usingComponents":true,"nvueStyleCompiler":"马士兵严选","compilerVersion":3,"distribute":{"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\"/>"],"packagename":"com.yanxuan","password":"nggekL5iZyDSOb/SYKVfAg==","aliasname":"yanxuan","keystore":"google-keystore.keystore","custompermissions":true},"apple":{"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}},"orientation":["portrait-primary"],"icons":{"ios":{"prerendered":"false","iphone":{"app@2x":"","app@3x":"","spotlight@2x":"","spotlight@3x":"","settings@2x":"","settings@3x":"","notification@2x":"","notification@3x":""},"appstore":"","ipad":{"app":"","app@2x":"","proapp@2x":"","spotlight":"","spotlight@2x":"","settings":"","settings@2x":"","notification":"","notification@2x":""}},"android":{"hdpi":"","xhdpi":"","xxhdpi":"","xxxhdpi":""}},"splashscreen":{}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#FFF","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.3.13","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#BBBBBB","selectedColor":"#FF875B","backgroundColor":"#FFF","borderStyle":"#eee","list":[{"pagePath":"pages/index/index","iconPath":"static/common/tabbar/home.png","selectedIconPath":"static/common/tabbar/home-active.png","text":"首页"},{"pagePath":"pages/goods/category","iconPath":"static/common/tabbar/category.png","selectedIconPath":"static/common/tabbar/category-active.png","text":"分类"},{"pagePath":"pages/cart/tabBarCart","iconPath":"static/common/tabbar/shopping-cart.png","selectedIconPath":"static/common/tabbar/shopping-cart-active.png","text":"购物车"},{"pagePath":"pages/account/index","iconPath":"static/common/tabbar/account.png","selectedIconPath":"static/common/tabbar/account-active.png","text":"我的"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html","adid":"126770270804"}}
Loading…
Cancel
Save