onLoad:function(options){
        if(Object.keys(options).length===0){
            //console.log("空对象")
        }else{
            this.lowpressure = options.lowPre;
            this.highpressure = options.highPre;
            this.heartrate = options.pulse; 
            //console.log("非空对象")
        }
              
    },