// 获取手机信息
getAppInfo() {
let _this = this;
plus.runtime.getProperty(plus.runtime.appid, function(wgtinfo) {
//appid属性
var wgtStr = "appid:" + wgtinfo.appid;
//version属性
wgtStr += "<br/>version:" + wgtinfo.version;
//name属性
wgtStr += "<br/>name:" + wgtinfo.name;
//description属性
wgtStr += "<br/>description:" + wgtinfo.description;
//author属性
wgtStr += "<br/>author:" + wgtinfo.author;
//email属性
wgtStr += "<br/>email:" + wgtinfo.email;
//features 属性
wgtStr += "<br/>features:" + wgtinfo.features;
_this.version = wgtinfo.version;
});
},