Commit 2089dbf0 authored by chuan.liu's avatar chuan.liu

调适ios模拟器兼容性

parent c22e6c72
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
{ {
"path": "pages/funds-confirm/funds-confirm", "path": "pages/funds-confirm/funds-confirm",
"style": { "style": {
"transparentTitle":"always",
"app-plus": { "app-plus": {
"titleNView": { "titleNView": {
"titleAlign": "left", "titleAlign": "left",
...@@ -80,7 +81,10 @@ ...@@ -80,7 +81,10 @@
"backgroundColor": "#fff", "backgroundColor": "#fff",
"titleText": "选择下单类型", "titleText": "选择下单类型",
"autoBackButton": false, "autoBackButton": false,
"splitLine":true "splitLine":{
"color":"#ccc",
"height":"0.5px"
}
} }
} }
} }
...@@ -136,7 +140,7 @@ ...@@ -136,7 +140,7 @@
"titleSize": "17px", "titleSize": "17px",
"backgroundColor": "transparent", "backgroundColor": "transparent",
"titleText": "销售计划选择", "titleText": "销售计划选择",
"autoBackButton": false, "autoBackButton": true,
"buttons": [{ "buttons": [{
"type": "none", "type": "none",
"text": "选择", "text": "选择",
...@@ -156,7 +160,7 @@ ...@@ -156,7 +160,7 @@
"titleSize": "17px", "titleSize": "17px",
"backgroundColor": "transparent", "backgroundColor": "transparent",
"titleText": "产品查询", "titleText": "产品查询",
"autoBackButton": false, "autoBackButton": true,
"buttons": [{ "buttons": [{
"type": "none", "type": "none",
"text": "选择", "text": "选择",
...@@ -176,7 +180,7 @@ ...@@ -176,7 +180,7 @@
"titleSize": "17px", "titleSize": "17px",
"backgroundColor": "transparent", "backgroundColor": "transparent",
"titleText": "商机选择", "titleText": "商机选择",
"autoBackButton": false, "autoBackButton": true,
"buttons": [{ "buttons": [{
"type": "none", "type": "none",
"text": "选择", "text": "选择",
...@@ -196,7 +200,7 @@ ...@@ -196,7 +200,7 @@
"titleSize": "17px", "titleSize": "17px",
"backgroundColor": "transparent", "backgroundColor": "transparent",
"titleText": "团购客户选择", "titleText": "团购客户选择",
"autoBackButton": false, "autoBackButton": true,
"buttons": [{ "buttons": [{
"type": "none", "type": "none",
"text": "选择", "text": "选择",
...@@ -618,11 +622,6 @@ ...@@ -618,11 +622,6 @@
"iconPath": "static/image/shop@3x.png", "iconPath": "static/image/shop@3x.png",
"selectedIconPath": "static/image/shop@3x.png", "selectedIconPath": "static/image/shop@3x.png",
"text": "要货" "text": "要货"
}, {
"pagePath": "pages/shop/shop",
"iconPath": "static/image/shop@3x.png",
"selectedIconPath": "static/image/shop@3x.png",
"text": "要货2"
}, { }, {
"pagePath": "pages/message/message", "pagePath": "pages/message/message",
"iconPath": "static/image/message@3x.png", "iconPath": "static/image/message@3x.png",
......
<template> <template>
<view class="lists"> <view class="lists">
<view class="status_bar"> <view class="status_bar" :style="navHeight"></view>
</view>
<view class="header-bg"></view> <view class="header-bg"></view>
<view class="main"> <view class="main">
<view class="middle view"> <view class="middle view">
...@@ -13,7 +12,6 @@ ...@@ -13,7 +12,6 @@
<text class="middle-date-des">H533008256</text> <text class="middle-date-des">H533008256</text>
</view> </view>
</view> </view>
<image class="icon-arrow" src="@/static/image/arrow_r@3x.png" mode="aspectFit"></image>
</view> </view>
</view> </view>
...@@ -25,7 +23,6 @@ ...@@ -25,7 +23,6 @@
<text class="middle-date-des">五粮液</text> <text class="middle-date-des">五粮液</text>
</view> </view>
</view> </view>
<image class="icon-arrow" src="@/static/image/arrow_r@3x.png" mode="aspectFit"></image>
</view> </view>
</view> </view>
<view class="text-block"> <view class="text-block">
...@@ -66,15 +63,27 @@ ...@@ -66,15 +63,27 @@
</template> </template>
<script> <script>
import {
mapState
} from 'vuex'
export default { export default {
data() { data() {
return { return {
applyNum: 100, applyNum: 100,
remark:'', remark: '',
array: ['2021', '2020', '2019', '2018'], array: ['2021', '2020', '2019', '2018'],
index: 0, index: 0,
} }
}, },
computed: {
...mapState(['sysinfo']),
navHeight() {
return {
'height': `${this.sysinfo.safeArea.top + 44}px`
}
},
},
methods: { methods: {
bindPickerChange(e) { bindPickerChange(e) {
console.log('picker发送选择改变,携带值为', e.detail.value) console.log('picker发送选择改变,携带值为', e.detail.value)
...@@ -94,7 +103,6 @@ ...@@ -94,7 +103,6 @@
.status_bar { .status_bar {
height: var(--status-bar-height); height: var(--status-bar-height);
height: 44px;
} }
.header-bg { .header-bg {
...@@ -149,6 +157,7 @@ ...@@ -149,6 +157,7 @@
flex: 3; flex: 3;
font-size: 28rpx; font-size: 28rpx;
color: $text-base-color; color: $text-base-color;
line-height: 96rpx;
} }
.picker-year { .picker-year {
...@@ -169,7 +178,7 @@ ...@@ -169,7 +178,7 @@
flex: 1; flex: 1;
} }
.uni-input{ .uni-input {
font-size: 14px; font-size: 14px;
color: $text-base-color; color: $text-base-color;
} }
...@@ -180,11 +189,11 @@ ...@@ -180,11 +189,11 @@
top: 40rpx; top: 40rpx;
width: 7px; width: 7px;
height: 10px; height: 10px;
z-index:10; z-index: 10;
} }
.remark-text { .remark-text {
width: 100%; flex: 1;
height: 320rpx; height: 320rpx;
background: #f5f6f7; background: #f5f6f7;
border-radius: 4px; border-radius: 4px;
...@@ -194,7 +203,7 @@ ...@@ -194,7 +203,7 @@
.bottom { .bottom {
margin-top: 68rpx; margin-top: 68rpx;
padding: 0 16rpx; padding: 0 16rpx;
justify-content: space-between; justify-content: center;
} }
.btn { .btn {
......
...@@ -204,7 +204,7 @@ ...@@ -204,7 +204,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
box-sizing: border-box; box-sizing: border-box;
background-color: #f2f6f7; background-color: #fff;
padding-bottom: 100rpx; padding-bottom: 100rpx;
} }
...@@ -228,11 +228,11 @@ ...@@ -228,11 +228,11 @@
left: 16px; left: 16px;
top: var(--status-bar-height); top: var(--status-bar-height);
z-index: 10; z-index: 10;
background-color: rgba(255, 255, 255, 0.2); background-color: rgba(255, 255, 255, 0.25);
border-radius: 16px; border-radius: 16px;
padding-left: 33px; padding-left: 33px;
font-size: 13px; font-size: 13px;
color: rgba(255, 255, 255, 0.6); color: rgba(255, 255, 255, 0.8);
.icon-search { .icon-search {
position: absolute; position: absolute;
...@@ -288,7 +288,8 @@ ...@@ -288,7 +288,8 @@
box-sizing: border-box; box-sizing: border-box;
background: #ffffff; background: #ffffff;
border-radius: 32rpx 32rpx 0px 0px; border-radius: 32rpx 32rpx 0px 0px;
margin-top: -80rpx; margin-top: -110rpx;
z-index:10;
} }
.block { .block {
......
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
<text class="upload-text">附件上传</text> <text class="upload-text">附件上传</text>
</view> </view>
<view class="upload-block"> <view class="upload-block">
<uni-file-picker ref='files' :auto-upload='false' v-model="fileList" file-mediatype="image" :imageStyles="imageStyles" @select="select" @progress="progress" @success="success" @fail='fail'> <uni-file-picker ref='files' :auto-upload='false' v-model="fileList" file-mediatype="image"
:imageStyles="imageStyles" @select="select" @progress="progress" @success="success" @fail='fail'>
<text>+</text> <text>+</text>
</uni-file-picker> </uni-file-picker>
</view> </view>
...@@ -29,7 +30,7 @@ ...@@ -29,7 +30,7 @@
<image class="popup-content-head__icon" src="@/static/image/icon_plan@3x.png" mode=""></image> <image class="popup-content-head__icon" src="@/static/image/icon_plan@3x.png" mode=""></image>
</view> </view>
<view class="popup-content-content"> <view class="popup-content-content">
<text class="popup-content-content__title">支付成功</text> <text class="popup-content-content__title">提交成功</text>
<text class="popup-content-content__title2">订单号:{{ orderNo }}</text> <text class="popup-content-content__title2">订单号:{{ orderNo }}</text>
</view> </view>
<view class="popup-content-foot"> <view class="popup-content-foot">
...@@ -50,8 +51,8 @@ ...@@ -50,8 +51,8 @@
fileList: [], fileList: [],
} }
}, },
computed:{ computed: {
imageStyles(){ imageStyles() {
return { return {
width: 64, width: 64,
height: 64, height: 64,
...@@ -61,6 +62,11 @@ ...@@ -61,6 +62,11 @@
} }
}, },
}, },
onBackPress(event) {
console.log('event', event)
this.$emit('click', 'quotaOrder')
return false
},
methods: { methods: {
change(e) { change(e) {
console.log('当前模式:' + e.type + ',状态:' + e.show); console.log('当前模式:' + e.type + ',状态:' + e.show);
...@@ -75,7 +81,7 @@ ...@@ -75,7 +81,7 @@
}, },
// 上传成功 // 上传成功
success(e) { success(e) {
console.log('上传成功',e) console.log('上传成功', e)
}, },
// 上传失败 // 上传失败
fail(e) { fail(e) {
...@@ -181,12 +187,12 @@ ...@@ -181,12 +187,12 @@
margin-top: 90rpx; margin-top: 90rpx;
} }
.uni-file-picker{ .uni-file-picker {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
/deep/ .uni-file-picker__container{ /deep/ .uni-file-picker__container {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
...@@ -243,7 +249,7 @@ ...@@ -243,7 +249,7 @@
width: 580rpx; width: 580rpx;
height: 408rpx; height: 408rpx;
background: #ffffff; background: #ffffff;
border-radius: 20rpx; border-radius: 24rpx;
} }
.popup-content-head { .popup-content-head {
...@@ -280,6 +286,7 @@ ...@@ -280,6 +286,7 @@
.popup-content-foot__btn { .popup-content-foot__btn {
width: 152rpx; width: 152rpx;
height: 60rpx; height: 60rpx;
font-size: 22rpx;
line-height: 60rpx; line-height: 60rpx;
background: #ffedee; background: #ffedee;
text-align: center; text-align: center;
......
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
<text class="summary-num">789*6*4</text> <text class="summary-num">789*6*4</text>
</view> </view>
</view> </view>
<scroll-view class="scroll-area view" :scroll-top="scrollTop" scroll-y="true">
<view class="middle view"> <view class="middle view">
<view class="text-block title-first"> <view class="text-block title-first">
<text class="middle-date title-first__text">计划内</text> <text class="middle-date title-first__text">计划内</text>
...@@ -29,7 +31,8 @@ ...@@ -29,7 +31,8 @@
<view class="middle-date-des uni-list picker-year"> <view class="middle-date-des uni-list picker-year">
<view class="uni-list-cell"> <view class="uni-list-cell">
<view class="uni-list-cell-db"> <view class="uni-list-cell-db">
<input class="middle-date-des" type="text" v-model="selectedSalePlan.product" placeholder="请填写" /> <input class="middle-date-des" type="text" v-model="selectedSalePlan.product"
placeholder="请填写" />
</view> </view>
</view> </view>
</view> </view>
...@@ -50,6 +53,7 @@ ...@@ -50,6 +53,7 @@
<image class="planout-block-icon" src="@/static/image/shop_more@3x.png" mode="aspectFit"></image> <image class="planout-block-icon" src="@/static/image/shop_more@3x.png" mode="aspectFit"></image>
</view> </view>
<uni-swipe-action class="planout-block-lists"> <uni-swipe-action class="planout-block-lists">
<uni-swipe-action-item v-for="item in 2" :key='item'> <uni-swipe-action-item v-for="item in 2" :key='item'>
<view class="middle view planout-block-item"> <view class="middle view planout-block-item">
...@@ -69,7 +73,8 @@ ...@@ -69,7 +73,8 @@
</view> </view>
<view class="text-block"> <view class="text-block">
<text class="middle-date">数量(件)</text> <text class="middle-date">数量(件)</text>
<input class="middle-date-des" type="text" v-model="selectedProduct.quantity" placeholder="请填写" /> <input class="middle-date-des" type="text" v-model="selectedProduct.quantity"
placeholder="请填写" />
</view> </view>
<view class="text-block"> <view class="text-block">
<text class="middle-date">单价</text> <text class="middle-date">单价</text>
...@@ -81,7 +86,8 @@ ...@@ -81,7 +86,8 @@
</view> </view>
</view> </view>
<template v-slot:right> <template v-slot:right>
<view class="swipe-right-block" @click="handleDel"><text class="swipe-right-block__text">删除</text> <view class="swipe-right-block" @click="handleDel">
<text class="swipe-right-block__text">删除</text>
</view> </view>
</template> </template>
</uni-swipe-action-item> </uni-swipe-action-item>
...@@ -97,6 +103,7 @@ ...@@ -97,6 +103,7 @@
<text class="btn-text">下一步</text> <text class="btn-text">下一步</text>
</button> </button>
</view> </view>
</scroll-view>
</view> </view>
</template> </template>
...@@ -105,23 +112,23 @@ ...@@ -105,23 +112,23 @@
data() { data() {
return { return {
selectedSalePlan: { selectedSalePlan: {
id:'请选择', id: '请选择',
checked:false, checked: false,
product:'请填写', product: '请填写',
quantity:0, quantity: 0,
price:0 price: 0
}, },
selectedProduct:{ selectedProduct: {
id:'请选择', id: '请选择',
checked:false, checked: false,
product:'请填写', product: '请填写',
quantity:0, quantity: 0,
price:0 price: 0
} }
} }
}, },
onBackPress(event){ onBackPress(event) {
console.log('event',event) console.log('event', event)
uni.switchTab({ uni.switchTab({
url: `/pages/go-order/go-order` url: `/pages/go-order/go-order`
}) })
...@@ -130,31 +137,35 @@ ...@@ -130,31 +137,35 @@
mounted() { mounted() {
console.log('监听到事件来自 update'); console.log('监听到事件来自 update');
let _this = this let _this = this
uni.$once('selectedSalePlan',function(data){ uni.$once('selectedSalePlan', function(data) {
console.log('监听到事件来自 selectedSalePlan ,携带参数 msg 为:' + data.selectedSalePlan.id); console.log('监听到事件来自 selectedSalePlan ,携带参数 msg 为:' + data.selectedSalePlan.id);
_this.selectedSalePlan = {...data.selectedSalePlan} _this.selectedSalePlan = {
...data.selectedSalePlan
}
}) })
uni.$once('selectedProduct',function(data){ uni.$once('selectedProduct', function(data) {
console.log('监听到事件来自 selectedProduct ,携带参数 msg 为:' + data.selectedProduct.id); console.log('监听到事件来自 selectedProduct ,携带参数 msg 为:' + data.selectedProduct.id);
_this.selectedProduct = {...data.selectedProduct} _this.selectedProduct = {
...data.selectedProduct
}
}) })
}, },
methods: { methods: {
handleDel() { handleDel() {
console.log(1) console.log(1)
}, },
selectPlanOrder(){ selectPlanOrder() {
uni.navigateTo({ uni.navigateTo({
url: `/pages/select-sale-plan/select-sale-plan` url: `/pages/select-sale-plan/select-sale-plan`
}); });
}, },
selectProduct(){ selectProduct() {
uni.navigateTo({ uni.navigateTo({
url: `/pages/select-product/select-product` url: `/pages/select-product/select-product`
}); });
}, },
nextStep() { nextStep() {
this.$emit('click','orderUpload') this.$emit('click', 'orderUpload')
}, },
preStep() { preStep() {
uni.switchTab({ uni.switchTab({
...@@ -183,7 +194,7 @@ ...@@ -183,7 +194,7 @@
padding: 32rpx 64rpx 40rpx 48rpx; padding: 32rpx 64rpx 40rpx 48rpx;
} }
.summary-block{ .summary-block {
display: flex; display: flex;
align-items: center; align-items: center;
} }
...@@ -290,7 +301,11 @@ ...@@ -290,7 +301,11 @@
font-weight: 500; font-weight: 500;
} }
.planout-block-lists{ .scroll-area{
padding-bottom: 40rpx;
}
.planout-block-lists {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
...@@ -308,16 +323,20 @@ ...@@ -308,16 +323,20 @@
width: 152rpx; width: 152rpx;
background: linear-gradient(90deg, #fb4d61, #ff0f00 100%); background: linear-gradient(90deg, #fb4d61, #ff0f00 100%);
border-radius: 0px 8px 8px 0px; border-radius: 0px 8px 8px 0px;
display: flex;
align-items: center;
justify-content: center; justify-content: center;
} }
.swipe-right-block__text { .swipe-right-block__text {
width: 152rpx;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center;
color: #fff; color: #fff;
font-size: 34rpx; font-size: 34rpx;
font-weight: 500; font-weight: 500;
text-align: center;
padding-left: 24rpx;
} }
.planout-block { .planout-block {
...@@ -342,6 +361,7 @@ ...@@ -342,6 +361,7 @@
.planout-block-item { .planout-block-item {
flex: 1; flex: 1;
width: 750rpx;
} }
.bottom-area { .bottom-area {
......
...@@ -84,7 +84,8 @@ ...@@ -84,7 +84,8 @@
componentHeight(){ componentHeight(){
console.log('componentHeight',`${this.sysinfo.safeArea.height - 44 - this.topHeight}px`,this.sysinfo); console.log('componentHeight',`${this.sysinfo.safeArea.height - 44 - this.topHeight}px`,this.sysinfo);
return { return {
'height':`${this.sysinfo.safeArea.height - 44 - this.topHeight}px` 'height':`${this.sysinfo.safeArea.height - 44 - this.topHeight}px`,
'overflow-y':'scroll'
} }
}, },
winHeight(){ winHeight(){
...@@ -120,8 +121,11 @@ ...@@ -120,8 +121,11 @@
// #endif // #endif
}, },
onBackPress() { onBackPress() {
uni.navigateBack({ // uni.navigateBack({
delta: 1 // delta: 1
// })
uni.switchTab({
url:"pages/go-order/go-order"
}) })
}, },
methods: { methods: {
......
No preview for this file type
This diff is collapsed.
This diff is collapsed.
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__343534B","name":"五粮液APP","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,"nvueCompiler":"uni-app","nvue":{"flex-direction":"row"},"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"]},"apple":{},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"arguments":"{\"name\":\"me\",\"query\":\"uuid=c4bba940-f69e-11ea-a419-6bafda9d095e&__id__=1\",\"id\":0,\"pathName\":\"pages/home/home\"}","allowsInlineMediaPlayback":true,"safearea":{"background":"rgba(250,250,250,0.90)","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.3.13","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"row"},"nvueLaunchMode":"normal"},"tabBar":{"iconWidth":"19px","spacing":"4px","color":"#999999","selectedColor":"#FF1D32","borderStyle":"rgba(250,250,250,0.90)","backgroundColor":"rgba(250,250,250,0.90)","list":[{"pagePath":"pages/home/home","iconPath":"static/image/home@3x.png","selectedIconPath":"static/image/home@3x.png","text":"首页"},{"pagePath":"pages/go-order/go-order","iconPath":"static/image/plan@3x.png","selectedIconPath":"static/image/plan@3x.png","text":"下单"},{"pagePath":"pages/shop/shop","iconPath":"static/image/shop@3x.png","selectedIconPath":"static/image/shop@3x.png","text":"要货"},{"pagePath":"pages/message/message","iconPath":"static/image/message@3x.png","selectedIconPath":"static/image/message@3x.png","text":"消息"},{"pagePath":"pages/usercenter/usercenter","iconPath":"static/image/usercenter@3x.png","selectedIconPath":"static/image/usercenter@3x.png","text":"我的"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}} {"@platforms":["android","iPhone","iPad"],"id":"__UNI__343534B","name":"五粮液APP","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,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","nvue":{"flex-direction":"row"},"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"]},"apple":{},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"arguments":"{\"name\":\"me\",\"query\":\"uuid=c4bba940-f69e-11ea-a419-6bafda9d095e&__id__=1\",\"id\":0,\"pathName\":\"pages/home/home\"}","allowsInlineMediaPlayback":true,"safearea":{"background":"rgba(250,250,250,0.90)","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.3.13","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"row"},"nvueLaunchMode":"normal"},"tabBar":{"iconWidth":"19px","spacing":"4px","color":"#999999","selectedColor":"#FF1D32","borderStyle":"rgba(250,250,250,0.90)","backgroundColor":"rgba(250,250,250,0.90)","list":[{"pagePath":"pages/home/home","iconPath":"static/image/home@3x.png","selectedIconPath":"static/image/home@3x.png","text":"首页"},{"pagePath":"pages/go-order/go-order","iconPath":"static/image/plan@3x.png","selectedIconPath":"static/image/plan@3x.png","text":"下单"},{"pagePath":"pages/purchase/purchase","iconPath":"static/image/shop@3x.png","selectedIconPath":"static/image/shop@3x.png","text":"要货"},{"pagePath":"pages/message/message","iconPath":"static/image/message@3x.png","selectedIconPath":"static/image/message@3x.png","text":"消息"},{"pagePath":"pages/usercenter/usercenter","iconPath":"static/image/usercenter@3x.png","selectedIconPath":"static/image/usercenter@3x.png","text":"我的"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}}
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment