achao 2 سال پیش
والد
کامیت
ca4d417fa0
2فایلهای تغییر یافته به همراه426 افزوده شده و 254 حذف شده
  1. 173 0
      components/MyNumberInput.vue
  2. 253 254
      manifest.json

+ 173 - 0
components/MyNumberInput.vue

@@ -0,0 +1,173 @@
+<template>
+	<view>
+		<view class="uni-input Numberinput" :class="{'inputdis':Isedit}" @click="maskShow" :id="'input_'+myevent">
+			<text>{{myvalue}}</text>
+			<text class="myfous" v-if="IsShow"></text>
+		</view>
+
+		<view class="mybrankmask" v-if="IsShow">
+			<view style="padding: 20rpx;">
+				<view class="MymaskList">
+					<view class="maskListItem" @click="NumberCk(1)">1</view>
+					<view class="maskListItem" @click="NumberCk(2)">2</view>
+					<view class="maskListItem" @click="NumberCk(3)">3</view>
+					<view class="maskListItem" style="background-color: #FFA500;color: #fff;" @click="Cancelword()">取消
+					</view>
+				</view>
+				<view class="MymaskList">
+					<view class="maskListItem" @click="NumberCk(4)">4</view>
+					<view class="maskListItem" @click="NumberCk(5)">5</view>
+					<view class="maskListItem" @click="NumberCk(6)">6</view>
+					<view class="maskListItem" style="background-color: #67C23A;color: #fff;" @click="Tuige()">退格</view>
+				</view>
+				<view class="MymaskList">
+					<view class="maskListItem" @click="NumberCk(7)">7</view>
+					<view class="maskListItem" @click="NumberCk(8)">8</view>
+					<view class="maskListItem" @click="NumberCk(9)">9</view>
+					<view class="maskListItem" style="background-color: #F56C6C;color: #fff;" @click="Clear()">清空</view>
+				</view>
+				<view class="MymaskList">
+					<view class="maskListItem" @click="NumberCk(0)">0</view>
+					<view class="maskListItem" @click="NumberCk('.')">.</view>
+					<view class="maskListItem" style="background-color: #31BDEC;color: #fff;width: 48%;"
+						@click="Next()">下一项</view>
+				</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		name: "MyNumberInput",
+		data() {
+			return {
+				inputId: '',
+				inputShow: false
+			}
+		},
+		props: {
+			IsShow: {
+				type: Boolean,
+				default: false
+			},
+			Isedit: {
+				type: Boolean,
+				default: false
+			},
+			myvalue: {
+				type: [String, Number],
+				default: ''
+			},
+			myevent: {
+				type: String,
+				default: ''
+			}
+		},
+		methods: {
+			maskShow() {
+				this.$emit('Mykeywordck');
+			},
+			NumberCk(val) {
+				if (val == '.') {
+					if (this.myvalue.toString().indexOf('.') >= 0) {
+						return;
+					}
+				}
+				var txt = this.myvalue == null ? '' : this.myvalue;
+				var arr = {
+					even: this.myevent,
+					value: txt + val.toString()
+				};
+				this.$emit('setValue', `${JSON.stringify(arr)}`);
+				//this.$emit('update:myvalue',txt + val.toString());
+			},
+			Tuige() {
+				if (this.myvalue != null) {
+					var txt = this.myvalue.toString();
+					if (txt.length >= 1)
+						//this.$emit('update:myvalue',txt.substring(0,txt.length-1));
+						var arr = {
+							even: this.myevent,
+							value: txt.substring(0, txt.length - 1)
+						};
+					this.$emit('setValue', JSON.stringify(arr));
+				}
+			},
+			//取消按钮
+			Cancelword() {
+				this.$emit('Cancelword');
+			},
+			//清除按钮
+			Clear() {
+				var arr = {
+					even: this.myevent,
+					value: null
+				};
+				this.$emit('setValue', JSON.stringify(arr));
+			},
+			//下一个
+			Next() {
+				this.$emit('goNext');
+			}
+		}
+	}
+</script>
+
+<style>
+	.Numberinput {
+		display: flex;
+		align-items: center;
+	}
+
+	.myfous {
+		width: 1rpx;
+		height: 41rpx;
+		background-color: #000;
+		display: block;
+		animation: mytreat 1.5s linear infinite;
+	}
+
+	.mybrankmask {
+		width: 100%;
+		height: 470rpx;
+		background-color: #EBEEF5;
+		position: fixed;
+		z-index: 999;
+		left: 0;
+		bottom: 0;
+	}
+
+	.mybrankmask .MymaskList {
+		display: flex;
+		width: 100%;
+		justify-content: space-around;
+		margin-bottom: 20rpx;
+	}
+
+	.mybrankmask .MymaskList .maskListItem {
+		width: 23%;
+		height: 90rpx;
+		background-color: #fff;
+		text-align: center;
+		line-height: 90rpx;
+		border-radius: 10rpx;
+	}
+
+	//自定义光标模拟Input焦点
+	@keyframes mytreat {
+
+		/*开始画面*/
+		0% {
+			background-color: #000;
+		}
+
+		50% {
+			background: none;
+		}
+
+		100% {
+			background-color: #000;
+		}
+	}
+</style>

+ 253 - 254
manifest.json

@@ -1,256 +1,255 @@
 {
-    "name" : "易粮易运",
-    "appid" : "__UNI__7297DA2",
-    "description" : "易粮易运——为天下粮食人服务的App",
-    "versionName" : "2.1.144",
-    "versionCode" : 21144,
-    "transformPx" : false,
-    /* SDK配置 */
-    "quickapp" : {},
-    /* 快应用特有相关 */
-    "mp-weixin" : {
-        /* 小程序特有相关 */
-        "usingComponents" : true,
-        "appid" : "wx4505a6ea6f703e17",
-        "setting" : {
-            "urlCheck" : false,
-            "es6" : true,
-            "postcss" : false,
-            "minified" : true
-        },
-        "permission" : {
-            "scope.userLocation" : {
-                "desc" : "你的位置信息将用于物流运输持续后台定位"
-            }
-        },
-        "requiredBackgroundModes" : [ "location" ],
-        "uniStatistics" : {
-            "enable" : true
-        }
-    },
-    // "plugins": {
-    //     "live-player-plugin": {
-    //         "version": "1.2.10", // 注意填写该直播组件最新版本号,微信开发者工具调试时可获取最新版本号(复制时请去掉注释)
-    //         "provider": "wx2b03c6e691cd7370" // 必须填该直播组件appid,该示例值即为直播组件appid(复制时请去掉注释)
-    //     }
-    // }
-    "h5" : {
-        "title" : "unimall 多端商城",
-        "domain" : "unimall.h5.iotechn.com",
-        "router" : {
-            "mode" : "history"
-        },
-        "devServer" : {
-            "disableHostCheck" : true
-        },
-        "sdkConfigs" : {
-            "maps" : {}
-        }
-    },
-    "app-plus" : {
-        "runmode" : "liberate",
-        "nvueStyleCompiler" : "uni-app",
-        "privacy" : {
-            "prompt" : "template",
-            "template" : {
-                "title" : "服务协议和隐私政策",
-                "message" : "  请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br/>  你可阅读<a href=\"https://liangxin.zthymaoyi.com/userAgreement.html\">《服务协议》</a>和<a href=\"https://liangxin.zthymaoyi.com/screctAgreement.html\">《隐私政策》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。",
-                "buttonAccept" : "同意",
-                "buttonRefuse" : "拒绝"
-            }
-        },
-        "compatible" : {
-            "ignoreVersion" : true
-        },
-        "distribute" : {
-            "sdkConfigs" : {
-                "ad" : {},
-                "oauth" : {},
-                "push" : {
-                    "unipush" : {
-                        "icons" : {
-                            "push" : {
-                                "hdpi" : "unpackage/res/icon/36x36.png",
-                                "ldpi" : "unpackage/res/icon/18x18.png",
-                                "mdpi" : "unpackage/res/icon/24x24.png",
-                                "xhdpi" : "unpackage/res/icon/48x48.png",
-                                "xxhdpi" : "unpackage/res/icon/72x72.png"
-                            },
-                            "small" : {
-                                //  左上角小图标
-                                "ldpi" : "unpackage/res/drawable-ldpi/push_small.png",
-                                "mdpi" : "unpackage/res/drawable-mdpi/push_small.png",
-                                "hdpi" : "unpackage/res/drawable-hdpi/push_small.png",
-                                "xhdpi" : "unpackage/res/drawable-xhdpi/push_small.png",
-                                "xxhdpi" : "unpackage/res/drawable-xxhdpi/push_small.png"
-                            }
-                        }
-                    }
-                },
-                "maps" : {
-                    "amap" : {
-                        "appkey_ios" : "64541bb9b52fe4d41d8ac5c1959cf4b9",
-                        "appkey_android" : "8a601d5716a812aaf65291da18dae719"
-                    }
-                },
-                "geolocation" : {
-                    "amap" : {
-                        "__platform__" : [ "ios", "android" ],
-                        "appkey_ios" : "64541bb9b52fe4d41d8ac5c1959cf4b9",
-                        "appkey_android" : "8a601d5716a812aaf65291da18dae719"
-                    },
-                    "system" : {
-                        "__platform__" : [ "ios", "android" ]
-                    }
-                }
-            },
-            "android" : {
-                "autoSdkPermissions" : true,
-                "permissionPhoneState" : {
-                    "request" : "once",
-                    "prompt" : "为保证您正常、安全地使用,需要获取设备识别码(部分手机提示为获取手机号码)使用权限,请允许。"
-                },
-                "permissionExternalStorage" : {
-                    "request" : "once",
-                    "prompt" : "应用保存运行状态等信息,需要获取读写手机存储(系统提示为访问设备上的照片、媒体内容和文件)权限,请允许。"
-                },
-                "permissions" : [
-                    "<uses-feature android:name=\"android.hardware.camera\"/>",
-                    "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
-                    "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
-                    "<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
-                    "<uses-permission android:name=\"android.permission.CAMERA\"/>",
-                    "<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
-                    "<uses-permission android:name=\"android.permission.FORCE_BACK\"/>",
-                    "<uses-permission android:name=\"android.permission.GET_TASKS\"/>",
-                    "<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>",
-                    "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
-                    "<uses-permission android:name=\"android.permission.RECEIVE_BOOT_COMPLETED\"/>",
-                    "<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>",
-                    "<uses-permission android:name=\"android.permission.REORDER_TASKS\"/>",
-                    "<uses-permission android:name=\"android.permission.REQUEST_INSTALL_PACKAGES\"/>",
-                    "<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>"
-                ],
-                "abiFilters" : [ "armeabi-v7a", "arm64-v8a" ]
-            },
-            "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"
-                    }
-                }
-            },
-            "ios" : {
-                "privacyDescription" : {
-                    "NSPhotoLibraryUsageDescription" : "App会在您使用扫码或上传功能时,访问您的相册权限",
-                    "NSPhotoLibraryAddUsageDescription" : "App会在您使用扫码或上传功能时,访问您的相册权限",
-                    "NSCameraUsageDescription" : "App会在您使用扫码或上传功能时,访问您的拍照权限",
-                    "NSLocalNetworkUsageDescription" : "App会在您使用网络时,访问您的本地网络权限",
-                    "NSLocationWhenInUseUsageDescription" : "App会在您使用粮脉功能时,访问您的位置权限",
-                    "NSLocationAlwaysUsageDescription" : "App会在后台运行且开启粮脉功能时,访问您的位置权限",
-                    "NSLocationAlwaysAndWhenInUseUsageDescription" : "App会在后台运行或使用粮脉功能时,访问您的位置权限"
-                },
-                "capabilities" : {
-                    "entitlements" : {
-                        "com.apple.developer.associated-domains" : [ "app.zthymaoyi.com" ]
-                    }
-                },
-                "idfa" : false,
-                "dSYMs" : false
-            },
-            "splashscreen" : {
-                "androidStyle" : "default",
-                "android" : {
-                    "hdpi" : "static/img/kaiping (1).png",
-                    "xhdpi" : "static/img/kaiping (2).png",
-                    "xxhdpi" : "static/img/kaiping (3).png"
-                }
-            }
-        },
-        "nvueCompiler" : "uni-app",
-        "modules" : {
-            "SQLite" : {},
-            "Push" : {},
-            "Maps" : {},
-            "VideoPlayer" : {},
-            "Bluetooth" : {},
-            "Geolocation" : {},
-            "LivePusher" : {}
-        },
-        "splashscreen" : {
-            "waiting" : false
-        },
-        "statusbar" : {
-            "immersed" : false
-        },
-        "nativePlugins" : {
-            "FUN-AmapLocation" : {
-                "__plugin_info__" : {
-                    "name" : "持续定位、后台定位、高德定位、保活",
-                    "description" : "持续定位、后台定位、高德定位, 后台保活,购前先测是否符合需求[反馈819589789@qq.com] ",
-                    "platforms" : "Android",
-                    "url" : "https://ext.dcloud.net.cn/plugin?id=2018",
-                    "android_package_name" : "uni.UNI7297DA2",
-                    "ios_bundle_id" : "uni.UNI7297DA2",
-                    "isCloud" : true,
-                    "bought" : 1,
-                    "pid" : "2018",
-                    "parameters" : {}
-                }
-            },
-            "service-keep-live" : {
-                "__plugin_info__" : {
-                    "name" : "【推荐】安卓保活插件 防杀  增强保活,黑屏防睡眠(测试黑屏传数据一天多没问题)",
-                    "description" : "如果你的应用希望能够一直在后台运行而不被系统自动杀死的话,可以尝试一下。群485147231(已满) 598812409",
-                    "platforms" : "Android",
-                    "url" : "https://ext.dcloud.net.cn/plugin?id=3422",
-                    "android_package_name" : "uni.UNI7297DA2",
-                    "ios_bundle_id" : "uni.UNI7297DA2",
-                    "isCloud" : true,
-                    "bought" : 1,
-                    "pid" : "3422",
-                    "parameters" : {}
-                }
-            },
-            "DCloud-PushSound" : {
-                "__plugin_info__" : {
-                    "name" : "DCloud-PushSound",
-                    "description" : "自定义推送铃声",
-                    "platforms" : "Android,iOS",
-                    "url" : "",
-                    "android_package_name" : "",
-                    "ios_bundle_id" : "",
-                    "isCloud" : false,
-                    "bought" : -1,
-                    "pid" : "",
-                    "parameters" : {}
-                }
-            }
-        }
-    }
+	"name": "易粮易运",
+	"appid": "__UNI__7297DA2",
+	"description": "易粮易运——为天下粮食人服务的App",
+	"versionName": "2.1.138",
+	"versionCode": 21117,
+	"transformPx": false,
+	/* SDK配置 */
+	"quickapp": {},
+	/* 快应用特有相关 */
+	"mp-weixin": {
+		/* 小程序特有相关 */
+		"usingComponents": true,
+		"appid": "wx4505a6ea6f703e17",
+		"setting": {
+			"urlCheck": false,
+			"es6": true,
+			"postcss": false,
+			"minified": true
+		},
+		"permission": {
+			"scope.userLocation": {
+				"desc": "你的位置信息将用于物流运输持续后台定位"
+			}
+		},
+		"requiredBackgroundModes": ["location"],
+		"uniStatistics": {
+			"enable": true
+		}
+	},
+	// "plugins": {
+	//     "live-player-plugin": {
+	//         "version": "1.2.10", // 注意填写该直播组件最新版本号,微信开发者工具调试时可获取最新版本号(复制时请去掉注释)
+	//         "provider": "wx2b03c6e691cd7370" // 必须填该直播组件appid,该示例值即为直播组件appid(复制时请去掉注释)
+	//     }
+	// }
+	"h5": {
+		"title": "unimall 多端商城",
+		"domain": "unimall.h5.iotechn.com",
+		"router": {
+			"mode": "history"
+		},
+		"devServer": {
+			"disableHostCheck": true
+		},
+		"sdkConfigs": {
+			"maps": {}
+		}
+	},
+	"app-plus": {
+		"runmode": "liberate",
+		"nvueStyleCompiler": "uni-app",
+		"privacy": {
+			"prompt": "template",
+			"template": {
+				"title": "服务协议和隐私政策",
+				"message": "  请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br/>  你可阅读<a href=\"https://liangxin.zthymaoyi.com/userAgreement.html\">《服务协议》</a>和<a href=\"https://liangxin.zthymaoyi.com/screctAgreement.html\">《隐私政策》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。",
+				"buttonAccept": "同意",
+				"buttonRefuse": "拒绝"
+			}
+		},
+		"compatible": {
+			"ignoreVersion": true
+		},
+		"distribute": {
+			"sdkConfigs": {
+				"ad": {},
+				"oauth": {},
+				"push": {
+					"unipush": {
+						"icons": {
+							"push": {
+								"hdpi": "unpackage/res/icon/36x36.png",
+								"ldpi": "unpackage/res/icon/18x18.png",
+								"mdpi": "unpackage/res/icon/24x24.png",
+								"xhdpi": "unpackage/res/icon/48x48.png",
+								"xxhdpi": "unpackage/res/icon/72x72.png"
+							},
+							"small": {
+								//  左上角小图标
+								"ldpi": "unpackage/res/drawable-ldpi/push_small.png",
+								"mdpi": "unpackage/res/drawable-mdpi/push_small.png",
+								"hdpi": "unpackage/res/drawable-hdpi/push_small.png",
+								"xhdpi": "unpackage/res/drawable-xhdpi/push_small.png",
+								"xxhdpi": "unpackage/res/drawable-xxhdpi/push_small.png"
+							}
+						}
+					}
+				},
+				"maps": {
+					"amap": {
+						"appkey_ios": "64541bb9b52fe4d41d8ac5c1959cf4b9",
+						"appkey_android": "8a601d5716a812aaf65291da18dae719"
+					}
+				},
+				"geolocation": {
+					"amap": {
+						"__platform__": ["ios", "android"],
+						"appkey_ios": "64541bb9b52fe4d41d8ac5c1959cf4b9",
+						"appkey_android": "8a601d5716a812aaf65291da18dae719"
+					},
+					"system": {
+						"__platform__": ["ios", "android"]
+					}
+				}
+			},
+			"android": {
+				"autoSdkPermissions": true,
+				"permissionPhoneState": {
+					"request": "once",
+					"prompt": "为保证您正常、安全地使用,需要获取设备识别码(部分手机提示为获取手机号码)使用权限,请允许。"
+				},
+				"permissionExternalStorage": {
+					"request": "once",
+					"prompt": "应用保存运行状态等信息,需要获取读写手机存储(系统提示为访问设备上的照片、媒体内容和文件)权限,请允许。"
+				},
+				"permissions": [
+					"<uses-feature android:name=\"android.hardware.camera\"/>",
+					"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
+					"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
+					"<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
+					"<uses-permission android:name=\"android.permission.CAMERA\"/>",
+					"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
+					"<uses-permission android:name=\"android.permission.FORCE_BACK\"/>",
+					"<uses-permission android:name=\"android.permission.GET_TASKS\"/>",
+					"<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>",
+					"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
+					"<uses-permission android:name=\"android.permission.RECEIVE_BOOT_COMPLETED\"/>",
+					"<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>",
+					"<uses-permission android:name=\"android.permission.REORDER_TASKS\"/>",
+					"<uses-permission android:name=\"android.permission.REQUEST_INSTALL_PACKAGES\"/>",
+					"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>"
+				]
+			},
+			"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"
+					}
+				}
+			},
+			"ios": {
+				"privacyDescription": {
+					"NSPhotoLibraryUsageDescription": "App会在您使用扫码或上传功能时,访问您的相册权限",
+					"NSPhotoLibraryAddUsageDescription": "App会在您使用扫码或上传功能时,访问您的相册权限",
+					"NSCameraUsageDescription": "App会在您使用扫码或上传功能时,访问您的拍照权限",
+					"NSLocalNetworkUsageDescription": "App会在您使用网络时,访问您的本地网络权限",
+					"NSLocationWhenInUseUsageDescription": "App会在您使用粮脉功能时,访问您的位置权限",
+					"NSLocationAlwaysUsageDescription": "App会在后台运行且开启粮脉功能时,访问您的位置权限",
+					"NSLocationAlwaysAndWhenInUseUsageDescription": "App会在后台运行或使用粮脉功能时,访问您的位置权限"
+				},
+				"capabilities": {
+					"entitlements": {
+						"com.apple.developer.associated-domains": ["app.zthymaoyi.com"]
+					}
+				},
+				"idfa": false,
+				"dSYMs": false
+			},
+			"splashscreen": {
+				"androidStyle": "default",
+				"android": {
+					"hdpi": "static/img/kaiping (1).png",
+					"xhdpi": "static/img/kaiping (2).png",
+					"xxhdpi": "static/img/kaiping (3).png"
+				}
+			}
+		},
+		"nvueCompiler": "uni-app",
+		"modules": {
+			"SQLite": {},
+			"Push": {},
+			"Maps": {},
+			"VideoPlayer": {},
+			"Bluetooth": {},
+			"Geolocation": {},
+			"LivePusher": {}
+		},
+		"splashscreen": {
+			"waiting": false
+		},
+		"statusbar": {
+			"immersed": false
+		},
+		"nativePlugins": {
+			"FUN-AmapLocation": {
+				"__plugin_info__": {
+					"name": "持续定位、后台定位、高德定位、保活",
+					"description": "持续定位、后台定位、高德定位, 后台保活,购前先测是否符合需求[反馈819589789@qq.com] ",
+					"platforms": "Android",
+					"url": "https://ext.dcloud.net.cn/plugin?id=2018",
+					"android_package_name": "uni.UNI7297DA2",
+					"ios_bundle_id": "uni.UNI7297DA2",
+					"isCloud": true,
+					"bought": 1,
+					"pid": "2018",
+					"parameters": {}
+				}
+			},
+			"service-keep-live": {
+				"__plugin_info__": {
+					"name": "【推荐】安卓保活插件 防杀  增强保活,黑屏防睡眠(测试黑屏传数据一天多没问题)",
+					"description": "如果你的应用希望能够一直在后台运行而不被系统自动杀死的话,可以尝试一下。群485147231(已满) 598812409",
+					"platforms": "Android",
+					"url": "https://ext.dcloud.net.cn/plugin?id=3422",
+					"android_package_name": "uni.UNI7297DA2",
+					"ios_bundle_id": "uni.UNI7297DA2",
+					"isCloud": true,
+					"bought": 1,
+					"pid": "3422",
+					"parameters": {}
+				}
+			},
+			"DCloud-PushSound": {
+				"__plugin_info__": {
+					"name": "DCloud-PushSound",
+					"description": "自定义推送铃声",
+					"platforms": "Android,iOS",
+					"url": "",
+					"android_package_name": "",
+					"ios_bundle_id": "",
+					"isCloud": false,
+					"bought": -1,
+					"pid": "",
+					"parameters": {}
+				}
+			}
+		}
+	}
 }