Best JavaScript code snippet using playwright-internal
app-view.js
Source:app-view.js
1var __pageFrameStartTime__ = Date.now();2var __webviewId__;3var __wxAppCode__ = {};4var __WXML_GLOBAL__ = {5 entrys: {},6 defines: {},7 modules: {},8 ops: [],9 wxs_nf_init: undefined,10 total_ops: 011};12var $gwx;13/*v0.5vv_20190312_syb_scopedata*/window.__wcc_version__='v0.5vv_20190312_syb_scopedata';window.__wcc_version_info__={"customComponents":true,"fixZeroRpx":true,"propValueDeepCopy":false};14var $gwxc15var $gaic={}16$gwx=function(path,global){17if(typeof global === 'undefined') global={};if(typeof __WXML_GLOBAL__ === 'undefined') {__WXML_GLOBAL__={};18}__WXML_GLOBAL__.modules = __WXML_GLOBAL__.modules || {};19function _(a,b){if(typeof(b)!='undefined')a.children.push(b);}20function _v(k){if(typeof(k)!='undefined')return {tag:'virtual','wxKey':k,children:[]};return {tag:'virtual',children:[]};}21function _n(tag){$gwxc++;if($gwxc>=16000){throw 'Dom limit exceeded, please check if there\'s any mistake you\'ve made.'};return {tag:'wx-'+tag,attr:{},children:[],n:[],raw:{},generics:{}}}22function _p(a,b){b&&a.properities.push(b);}23function _s(scope,env,key){return typeof(scope[key])!='undefined'?scope[key]:env[key]}24function _wp(m){console.warn("WXMLRT_$gwx:"+m)}25function _wl(tname,prefix){_wp(prefix+':-1:-1:-1: Template `' + tname + '` is being called recursively, will be stop.')}26$gwn=console.warn;27$gwl=console.log;28function $gwh()29{30function x()31{32}33x.prototype = 34{35hn: function( obj, all )36{37if( typeof(obj) == 'object' )38{39var cnt=0;40var any1=false,any2=false;41for(var x in obj)42{43any1=any1|x==='__value__';44any2=any2|x==='__wxspec__';45cnt++;46if(cnt>2)break;47}48return cnt == 2 && any1 && any2 && ( all || obj.__wxspec__ !== 'm' || this.hn(obj.__value__) === 'h' ) ? "h" : "n";49}50return "n";51},52nh: function( obj, special )53{54return { __value__: obj, __wxspec__: special ? special : true }55},56rv: function( obj )57{58return this.hn(obj,true)==='n'?obj:this.rv(obj.__value__);59},60hm: function( obj )61{62if( typeof(obj) == 'object' )63{64var cnt=0;65var any1=false,any2=false;66for(var x in obj)67{68any1=any1|x==='__value__';69any2=any2|x==='__wxspec__';70cnt++;71if(cnt>2)break;72}73return cnt == 2 && any1 && any2 && (obj.__wxspec__ === 'm' || this.hm(obj.__value__) );74}75return false;76}77}78return new x;79}80wh=$gwh();81function $gstack(s){82var tmp=s.split('\n '+' '+' '+' ');83for(var i=0;i<tmp.length;++i){84if(0==i) continue;85if(")"===tmp[i][tmp[i].length-1])86tmp[i]=tmp[i].replace(/\s\(.*\)$/,"");87else88tmp[i]="at anonymous function";89}90return tmp.join('\n '+' '+' '+' ');91}92function $gwrt( should_pass_type_info )93{94function ArithmeticEv( ops, e, s, g, o )95{96var _f = false;97var rop = ops[0][1];98var _a,_b,_c,_d, _aa, _bb;99switch( rop )100{101case '?:':102_a = rev( ops[1], e, s, g, o, _f );103_c = should_pass_type_info && ( wh.hn(_a) === 'h' );104_d = wh.rv( _a ) ? rev( ops[2], e, s, g, o, _f ) : rev( ops[3], e, s, g, o, _f );105_d = _c && wh.hn( _d ) === 'n' ? wh.nh( _d, 'c' ) : _d;106return _d;107break;108case '&&':109_a = rev( ops[1], e, s, g, o, _f );110_c = should_pass_type_info && ( wh.hn(_a) === 'h' );111_d = wh.rv( _a ) ? rev( ops[2], e, s, g, o, _f ) : wh.rv( _a );112_d = _c && wh.hn( _d ) === 'n' ? wh.nh( _d, 'c' ) : _d;113return _d;114break;115case '||':116_a = rev( ops[1], e, s, g, o, _f );117_c = should_pass_type_info && ( wh.hn(_a) === 'h' );118_d = wh.rv( _a ) ? wh.rv(_a) : rev( ops[2], e, s, g, o, _f );119_d = _c && wh.hn( _d ) === 'n' ? wh.nh( _d, 'c' ) : _d;120return _d;121break;122case '+':123case '*':124case '/':125case '%':126case '|':127case '^':128case '&':129case '===':130case '==':131case '!=':132case '!==':133case '>=':134case '<=':135case '>':136case '<':137case '<<':138case '>>':139_a = rev( ops[1], e, s, g, o, _f );140_b = rev( ops[2], e, s, g, o, _f );141_c = should_pass_type_info && (wh.hn( _a ) === 'h' || wh.hn( _b ) === 'h');142switch( rop )143{144case '+':145_d = wh.rv( _a ) + wh.rv( _b );146break;147case '*':148_d = wh.rv( _a ) * wh.rv( _b );149break;150case '/':151_d = wh.rv( _a ) / wh.rv( _b );152break;153case '%':154_d = wh.rv( _a ) % wh.rv( _b );155break;156case '|':157_d = wh.rv( _a ) | wh.rv( _b );158break;159case '^':160_d = wh.rv( _a ) ^ wh.rv( _b );161break;162case '&':163_d = wh.rv( _a ) & wh.rv( _b );164break;165case '===':166_d = wh.rv( _a ) === wh.rv( _b );167break;168case '==':169_d = wh.rv( _a ) == wh.rv( _b );170break;171case '!=':172_d = wh.rv( _a ) != wh.rv( _b );173break;174case '!==':175_d = wh.rv( _a ) !== wh.rv( _b );176break;177case '>=':178_d = wh.rv( _a ) >= wh.rv( _b );179break;180case '<=':181_d = wh.rv( _a ) <= wh.rv( _b );182break;183case '>':184_d = wh.rv( _a ) > wh.rv( _b );185break;186case '<':187_d = wh.rv( _a ) < wh.rv( _b );188break;189case '<<':190_d = wh.rv( _a ) << wh.rv( _b );191break;192case '>>':193_d = wh.rv( _a ) >> wh.rv( _b );194break;195default:196break;197}198return _c ? wh.nh( _d, "c" ) : _d;199break;200case '-':201_a = ops.length === 3 ? rev( ops[1], e, s, g, o, _f ) : 0;202_b = ops.length === 3 ? rev( ops[2], e, s, g, o, _f ) : rev( ops[1], e, s, g, o, _f );203_c = should_pass_type_info && (wh.hn( _a ) === 'h' || wh.hn( _b ) === 'h');204_d = _c ? wh.rv( _a ) - wh.rv( _b ) : _a - _b;205return _c ? wh.nh( _d, "c" ) : _d;206break;207case '!':208_a = rev( ops[1], e, s, g, o, _f );209_c = should_pass_type_info && (wh.hn( _a ) == 'h');210_d = !wh.rv(_a);211return _c ? wh.nh( _d, "c" ) : _d;212case '~':213_a = rev( ops[1], e, s, g, o, _f );214_c = should_pass_type_info && (wh.hn( _a ) == 'h');215_d = ~wh.rv(_a);216return _c ? wh.nh( _d, "c" ) : _d;217default:218$gwn('unrecognized op' + rop );219}220}221function rev( ops, e, s, g, o, newap )222{223var op = ops[0];224var _f = false;225if ( typeof newap !== "undefined" ) o.ap = newap;226if( typeof(op)==='object' )227{228var vop=op[0];229var _a, _aa, _b, _bb, _c, _d, _s, _e, _ta, _tb, _td;230switch(vop)231{232case 2:233return ArithmeticEv(ops,e,s,g,o);234break;235case 4: 236return rev( ops[1], e, s, g, o, _f );237break;238case 5: 239switch( ops.length )240{241case 2: 242_a = rev( ops[1],e,s,g,o,_f );243return should_pass_type_info?[_a]:[wh.rv(_a)];244return [_a];245break;246case 1: 247return [];248break;249default:250_a = rev( ops[1],e,s,g,o,_f );251_b = rev( ops[2],e,s,g,o,_f );252_a.push( 253should_pass_type_info ?254_b :255wh.rv( _b )256);257return _a;258break;259}260break;261case 6:262_a = rev(ops[1],e,s,g,o);263var ap = o.ap;264_ta = wh.hn(_a)==='h';265_aa = _ta ? wh.rv(_a) : _a;266o.is_affected |= _ta;267if( should_pass_type_info )268{269if( _aa===null || typeof(_aa) === 'undefined' )270{271return _ta ? wh.nh(undefined, 'e') : undefined;272}273_b = rev(ops[2],e,s,g,o,_f);274_tb = wh.hn(_b) === 'h';275_bb = _tb ? wh.rv(_b) : _b;276o.ap = ap;277o.is_affected |= _tb;278if( _bb===null || typeof(_bb) === 'undefined' || 279_bb === "__proto__" || _bb === "prototype" || _bb === "caller" ) 280{281return (_ta || _tb) ? wh.nh(undefined, 'e') : undefined;282}283_d = _aa[_bb];284if ( typeof _d === 'function' && !ap ) _d = undefined;285_td = wh.hn(_d)==='h';286o.is_affected |= _td;287return (_ta || _tb) ? (_td ? _d : wh.nh(_d, 'e')) : _d;288}289else290{291if( _aa===null || typeof(_aa) === 'undefined' )292{293return undefined;294}295_b = rev(ops[2],e,s,g,o,_f);296_tb = wh.hn(_b) === 'h';297_bb = _tb ? wh.rv(_b) : _b;298o.ap = ap;299o.is_affected |= _tb;300if( _bb===null || typeof(_bb) === 'undefined' || 301_bb === "__proto__" || _bb === "prototype" || _bb === "caller" ) 302{303return undefined;304}305_d = _aa[_bb];306if ( typeof _d === 'function' && !ap ) _d = undefined;307_td = wh.hn(_d)==='h';308o.is_affected |= _td;309return _td ? wh.rv(_d) : _d;310}311case 7: 312switch(ops[1][0])313{314case 11:315o.is_affected |= wh.hn(g)==='h';316return g;317case 3:318_s = wh.rv( s );319_e = wh.rv( e );320_b = ops[1][1];321if (g && g.f && g.f.hasOwnProperty(_b) )322{323_a = g.f;324o.ap = true;325}326else327{328_a = _s && _s.hasOwnProperty(_b) ? 329s : (_e && _e.hasOwnProperty(_b) ? e : undefined );330}331if( should_pass_type_info )332{333if( _a )334{335_ta = wh.hn(_a) === 'h';336_aa = _ta ? wh.rv( _a ) : _a;337_d = _aa[_b];338_td = wh.hn(_d) === 'h';339o.is_affected |= _ta || _td;340_d = _ta && !_td ? wh.nh(_d,'e') : _d;341return _d;342}343}344else345{346if( _a )347{348_ta = wh.hn(_a) === 'h';349_aa = _ta ? wh.rv( _a ) : _a;350_d = _aa[_b];351_td = wh.hn(_d) === 'h';352o.is_affected |= _ta || _td;353return wh.rv(_d);354}355}356return undefined;357}358break;359case 8: 360_a = {};361_a[ops[1]] = rev(ops[2],e,s,g,o,_f);362return _a;363break;364case 9: 365_a = rev(ops[1],e,s,g,o,_f);366_b = rev(ops[2],e,s,g,o,_f);367function merge( _a, _b, _ow )368{369var ka, _bbk;370_ta = wh.hn(_a)==='h';371_tb = wh.hn(_b)==='h';372_aa = wh.rv(_a);373_bb = wh.rv(_b);374for(var k in _bb)375{376if ( _ow || !_aa.hasOwnProperty(k) )377{378_aa[k] = should_pass_type_info ? (_tb ? wh.nh(_bb[k],'e') : _bb[k]) : wh.rv(_bb[k]);379}380}381return _a;382}383var _c = _a384var _ow = true385if ( typeof(ops[1][0]) === "object" && ops[1][0][0] === 10 ) {386_a = _b387_b = _c388_ow = false389}390if ( typeof(ops[1][0]) === "object" && ops[1][0][0] === 10 ) {391var _r = {}392return merge( merge( _r, _a, _ow ), _b, _ow );393}394else395return merge( _a, _b, _ow );396break;397case 10:398_a = rev(ops[1],e,s,g,o,_f);399_a = should_pass_type_info ? _a : wh.rv( _a );400return _a ;401break;402case 12:403var _r;404_a = rev(ops[1],e,s,g,o);405if ( !o.ap )406{407return should_pass_type_info && wh.hn(_a)==='h' ? wh.nh( _r, 'f' ) : _r;408}409var ap = o.ap;410_b = rev(ops[2],e,s,g,o,_f);411o.ap = ap;412_ta = wh.hn(_a)==='h';413_tb = _ca(_b);414_aa = wh.rv(_a); 415_bb = wh.rv(_b); snap_bb=$gdc(_bb,"nv_");416try{417_r = typeof _aa === "function" ? $gdc(_aa.apply(null, snap_bb)) : undefined;418} catch (e){419e.message = e.message.replace(/nv_/g,"");420e.stack = e.stack.substring(0,e.stack.indexOf("\n", e.stack.lastIndexOf("at nv_")));421e.stack = e.stack.replace(/\snv_/g," "); 422e.stack = $gstack(e.stack); 423if(g.debugInfo)424{425e.stack += "\n "+" "+" "+" at "+g.debugInfo[0]+":"+g.debugInfo[1]+":"+g.debugInfo[2];426console.error(e);427}428_r = undefined;429}430return should_pass_type_info && (_tb || _ta) ? wh.nh( _r, 'f' ) : _r;431}432}433else434{435if( op === 3 || op === 1) return ops[1];436else if( op === 11 ) 437{438var _a='';439for( var i = 1 ; i < ops.length ; i++ )440{441var xp = wh.rv(rev(ops[i],e,s,g,o,_f));442_a += typeof(xp) === 'undefined' ? '' : xp;443}444return _a;445}446}447}448function wrapper( ops, e, s, g, o, newap )449{450if( ops[0] == '11182016' )451{452g.debugInfo = ops[2];453return rev( ops[1], e, s, g, o, newap );454}455else456{457g.debugInfo = null;458return rev( ops, e, s, g, o, newap );459}460}461return wrapper;462}463gra=$gwrt(true); 464grb=$gwrt(false); 465function TestTest( expr, ops, e,s,g, expect_a, expect_b, expect_affected )466{467{468var o = {is_affected:false};469var a = gra( ops, e,s,g, o );470if( JSON.stringify(a) != JSON.stringify( expect_a )471|| o.is_affected != expect_affected )472{473console.warn( "A. " + expr + " get result " + JSON.stringify(a) + ", " + o.is_affected + ", but " + JSON.stringify( expect_a ) + ", " + expect_affected + " is expected" );474}475}476{477var o = {is_affected:false};478var a = grb( ops, e,s,g, o );479if( JSON.stringify(a) != JSON.stringify( expect_b )480|| o.is_affected != expect_affected )481{482console.warn( "B. " + expr + " get result " + JSON.stringify(a) + ", " + o.is_affected + ", but " + JSON.stringify( expect_b ) + ", " + expect_affected + " is expected" );483}484}485}486function wfor( to_iter, func, env, _s, global, father, itemname, indexname, keyname )487{488var _n = wh.hn( to_iter ) === 'n'; 489var scope = wh.rv( _s ); 490var has_old_item = scope.hasOwnProperty(itemname);491var has_old_index = scope.hasOwnProperty(indexname);492var old_item = scope[itemname];493var old_index = scope[indexname];494var full = Object.prototype.toString.call(wh.rv(to_iter));495var type = full[8]; 496if( type === 'N' && full[10] === 'l' ) type = 'X'; 497var _y;498if( _n )499{500if( type === 'A' ) 501{502var r_iter_item;503for( var i = 0 ; i < to_iter.length ; i++ )504{505scope[itemname] = to_iter[i];506scope[indexname] = _n ? i : wh.nh(i, 'h');507r_iter_item = wh.rv(to_iter[i]);508var key = keyname && r_iter_item ? (keyname==="*this" ? r_iter_item : wh.rv(r_iter_item[keyname])) : undefined;509_y = _v(key);510_(father,_y);511func( env, scope, _y, global );512}513}514else if( type === 'O' ) 515{516var i = 0;517var r_iter_item;518for( var k in to_iter )519{520scope[itemname] = to_iter[k];521scope[indexname] = _n ? k : wh.nh(k, 'h');522r_iter_item = wh.rv(to_iter[k]);523var key = keyname && r_iter_item ? (keyname==="*this" ? r_iter_item : wh.rv(r_iter_item[keyname])) : undefined;524_y = _v(key);525_(father,_y);526func( env,scope,_y,global );527i++;528}529}530else if( type === 'S' ) 531{532for( var i = 0 ; i < to_iter.length ; i++ )533{534scope[itemname] = to_iter[i];535scope[indexname] = _n ? i : wh.nh(i, 'h');536_y = _v( to_iter[i] + i );537_(father,_y);538func( env,scope,_y,global );539}540}541else if( type === 'N' ) 542{543for( var i = 0 ; i < to_iter ; i++ )544{545scope[itemname] = i;546scope[indexname] = _n ? i : wh.nh(i, 'h');547_y = _v( i );548_(father,_y);549func(env,scope,_y,global);550}551}552else553{554}555}556else557{558var r_to_iter = wh.rv(to_iter);559var r_iter_item, iter_item;560if( type === 'A' ) 561{562for( var i = 0 ; i < r_to_iter.length ; i++ )563{564iter_item = r_to_iter[i];565iter_item = wh.hn(iter_item)==='n' ? wh.nh(iter_item,'h') : iter_item;566r_iter_item = wh.rv( iter_item );567scope[itemname] = iter_item568scope[indexname] = _n ? i : wh.nh(i, 'h');569var key = keyname && r_iter_item ? (keyname==="*this" ? r_iter_item : wh.rv(r_iter_item[keyname])) : undefined;570_y = _v(key);571_(father,_y);572func( env, scope, _y, global );573}574}575else if( type === 'O' ) 576{577var i=0;578for( var k in r_to_iter )579{580iter_item = r_to_iter[k];581iter_item = wh.hn(iter_item)==='n'? wh.nh(iter_item,'h') : iter_item;582r_iter_item = wh.rv( iter_item );583scope[itemname] = iter_item;584scope[indexname] = _n ? k : wh.nh(k, 'h');585var key = keyname && r_iter_item ? (keyname==="*this" ? r_iter_item : wh.rv(r_iter_item[keyname])) : undefined;586_y=_v(key);587_(father,_y);588func( env, scope, _y, global );589i++590}591}592else if( type === 'S' ) 593{594for( var i = 0 ; i < r_to_iter.length ; i++ )595{596iter_item = wh.nh(r_to_iter[i],'h');597scope[itemname] = iter_item;598scope[indexname] = _n ? i : wh.nh(i, 'h');599_y = _v( to_iter[i] + i );600_(father,_y);601func( env, scope, _y, global );602}603}604else if( type === 'N' ) 605{606for( var i = 0 ; i < r_to_iter ; i++ )607{608iter_item = wh.nh(i,'h');609scope[itemname] = iter_item;610scope[indexname]= _n ? i : wh.nh(i,'h');611_y = _v( i );612_(father,_y);613func(env,scope,_y,global);614}615}616else617{618}619}620if(has_old_item)621{622scope[itemname]=old_item;623}624else625{626delete scope[itemname];627}628if(has_old_index)629{630scope[indexname]=old_index;631}632else633{634delete scope[indexname];635}636}637function _ca(o)638{ 639if ( wh.hn(o) == 'h' ) return true;640if ( typeof o !== "object" ) return false;641for(var i in o){ 642if ( o.hasOwnProperty(i) ){643if (_ca(o[i])) return true;644}645}646return false;647}648function _da( node, attrname, opindex, raw, o )649{650var isaffected = false;651var value = $gdc( raw, "", 2 );652if ( o.ap && value && value.constructor===Function ) 653{654attrname = "$wxs:" + attrname; 655node.attr["$gdc"] = $gdc;656}657if ( o.is_affected || _ca(raw) ) 658{659node.n.push( attrname );660node.raw[attrname] = raw;661}662node.attr[attrname] = value;663}664function _r( node, attrname, opindex, env, scope, global ) 665{666global.opindex=opindex;667var o = {}, _env;668var a = grb( z[opindex], env, scope, global, o );669_da( node, attrname, opindex, a, o );670}671function _rz( z, node, attrname, opindex, env, scope, global ) 672{673global.opindex=opindex;674var o = {}, _env;675var a = grb( z[opindex], env, scope, global, o );676_da( node, attrname, opindex, a, o );677}678function _o( opindex, env, scope, global )679{680global.opindex=opindex;681var nothing = {};682var r = grb( z[opindex], env, scope, global, nothing );683return (r&&r.constructor===Function) ? undefined : r;684}685function _oz( z, opindex, env, scope, global )686{687global.opindex=opindex;688var nothing = {};689var r = grb( z[opindex], env, scope, global, nothing );690return (r&&r.constructor===Function) ? undefined : r;691}692function _1( opindex, env, scope, global, o )693{694var o = o || {};695global.opindex=opindex;696return gra( z[opindex], env, scope, global, o );697}698function _1z( z, opindex, env, scope, global, o )699{700var o = o || {};701global.opindex=opindex;702return gra( z[opindex], env, scope, global, o );703}704function _2( opindex, func, env, scope, global, father, itemname, indexname, keyname )705{706var o = {};707var to_iter = _1( opindex, env, scope, global );708wfor( to_iter, func, env, scope, global, father, itemname, indexname, keyname );709}710function _2z( z, opindex, func, env, scope, global, father, itemname, indexname, keyname )711{712var o = {};713var to_iter = _1z( z, opindex, env, scope, global );714wfor( to_iter, func, env, scope, global, father, itemname, indexname, keyname );715}716function _m(tag,attrs,generics,env,scope,global)717{718var tmp=_n(tag);719var base=0;720for(var i = 0 ; i < attrs.length ; i+=2 )721{722if(base+attrs[i+1]<0)723{724tmp.attr[attrs[i]]=true;725}726else727{728_r(tmp,attrs[i],base+attrs[i+1],env,scope,global);729if(base===0)base=attrs[i+1];730}731}732for(var i=0;i<generics.length;i+=2)733{734if(base+generics[i+1]<0)735{736tmp.generics[generics[i]]="";737}738else739{740var $t=grb(z[base+generics[i+1]],env,scope,global);741if ($t!="") $t="wx-"+$t;742tmp.generics[generics[i]]=$t;743if(base===0)base=generics[i+1];744}745}746return tmp;747}748function _mz(z,tag,attrs,generics,env,scope,global)749{750var tmp=_n(tag);751var base=0;752for(var i = 0 ; i < attrs.length ; i+=2 )753{754if(base+attrs[i+1]<0)755{756tmp.attr[attrs[i]]=true;757}758else759{760_rz(z, tmp,attrs[i],base+attrs[i+1],env,scope,global);761if(base===0)base=attrs[i+1];762}763}764for(var i=0;i<generics.length;i+=2)765{766if(base+generics[i+1]<0)767{768tmp.generics[generics[i]]="";769}770else771{772var $t=grb(z[base+generics[i+1]],env,scope,global);773if ($t!="") $t="wx-"+$t;774tmp.generics[generics[i]]=$t;775if(base===0)base=generics[i+1];776}777}778return tmp;779}780var nf_init=function(){781if(typeof __WXML_GLOBAL__==="undefined"||undefined===__WXML_GLOBAL__.wxs_nf_init){782nf_init_Object();nf_init_Function();nf_init_Array();nf_init_String();nf_init_Boolean();nf_init_Number();nf_init_Math();nf_init_Date();nf_init_RegExp();783}784if(typeof __WXML_GLOBAL__!=="undefined") __WXML_GLOBAL__.wxs_nf_init=true;785};786var nf_init_Object=function(){787Object.defineProperty(Object.prototype,"nv_constructor",{writable:true,value:"Object"})788Object.defineProperty(Object.prototype,"nv_toString",{writable:true,value:function(){return "[object Object]"}})789}790var nf_init_Function=function(){791Object.defineProperty(Function.prototype,"nv_constructor",{writable:true,value:"Function"})792Object.defineProperty(Function.prototype,"nv_length",{get:function(){return this.length;},set:function(){}});793Object.defineProperty(Function.prototype,"nv_toString",{writable:true,value:function(){return "[function Function]"}})794}795var nf_init_Array=function(){796Object.defineProperty(Array.prototype,"nv_toString",{writable:true,value:function(){return this.nv_join();}})797Object.defineProperty(Array.prototype,"nv_join",{writable:true,value:function(s){798s=undefined==s?',':s;799var r="";800for(var i=0;i<this.length;++i){801if(0!=i) r+=s;802if(null==this[i]||undefined==this[i]) r+=''; 803else if(typeof this[i]=='function') r+=this[i].nv_toString();804else if(typeof this[i]=='object'&&this[i].nv_constructor==="Array") r+=this[i].nv_join();805else r+=this[i].toString();806}807return r;808}})809Object.defineProperty(Array.prototype,"nv_constructor",{writable:true,value:"Array"})810Object.defineProperty(Array.prototype,"nv_concat",{writable:true,value:Array.prototype.concat})811Object.defineProperty(Array.prototype,"nv_pop",{writable:true,value:Array.prototype.pop})812Object.defineProperty(Array.prototype,"nv_push",{writable:true,value:Array.prototype.push})813Object.defineProperty(Array.prototype,"nv_reverse",{writable:true,value:Array.prototype.reverse})814Object.defineProperty(Array.prototype,"nv_shift",{writable:true,value:Array.prototype.shift})815Object.defineProperty(Array.prototype,"nv_slice",{writable:true,value:Array.prototype.slice})816Object.defineProperty(Array.prototype,"nv_sort",{writable:true,value:Array.prototype.sort})817Object.defineProperty(Array.prototype,"nv_splice",{writable:true,value:Array.prototype.splice})818Object.defineProperty(Array.prototype,"nv_unshift",{writable:true,value:Array.prototype.unshift})819Object.defineProperty(Array.prototype,"nv_indexOf",{writable:true,value:Array.prototype.indexOf})820Object.defineProperty(Array.prototype,"nv_lastIndexOf",{writable:true,value:Array.prototype.lastIndexOf})821Object.defineProperty(Array.prototype,"nv_every",{writable:true,value:Array.prototype.every})822Object.defineProperty(Array.prototype,"nv_some",{writable:true,value:Array.prototype.some})823Object.defineProperty(Array.prototype,"nv_forEach",{writable:true,value:Array.prototype.forEach})824Object.defineProperty(Array.prototype,"nv_map",{writable:true,value:Array.prototype.map})825Object.defineProperty(Array.prototype,"nv_filter",{writable:true,value:Array.prototype.filter})826Object.defineProperty(Array.prototype,"nv_reduce",{writable:true,value:Array.prototype.reduce})827Object.defineProperty(Array.prototype,"nv_reduceRight",{writable:true,value:Array.prototype.reduceRight})828Object.defineProperty(Array.prototype,"nv_length",{get:function(){return this.length;},set:function(value){this.length=value;}});829}830var nf_init_String=function(){831Object.defineProperty(String.prototype,"nv_constructor",{writable:true,value:"String"})832Object.defineProperty(String.prototype,"nv_toString",{writable:true,value:String.prototype.toString})833Object.defineProperty(String.prototype,"nv_valueOf",{writable:true,value:String.prototype.valueOf})834Object.defineProperty(String.prototype,"nv_charAt",{writable:true,value:String.prototype.charAt})835Object.defineProperty(String.prototype,"nv_charCodeAt",{writable:true,value:String.prototype.charCodeAt})836Object.defineProperty(String.prototype,"nv_concat",{writable:true,value:String.prototype.concat})837Object.defineProperty(String.prototype,"nv_indexOf",{writable:true,value:String.prototype.indexOf})838Object.defineProperty(String.prototype,"nv_lastIndexOf",{writable:true,value:String.prototype.lastIndexOf})839Object.defineProperty(String.prototype,"nv_localeCompare",{writable:true,value:String.prototype.localeCompare})840Object.defineProperty(String.prototype,"nv_match",{writable:true,value:String.prototype.match})841Object.defineProperty(String.prototype,"nv_replace",{writable:true,value:String.prototype.replace})842Object.defineProperty(String.prototype,"nv_search",{writable:true,value:String.prototype.search})843Object.defineProperty(String.prototype,"nv_slice",{writable:true,value:String.prototype.slice})844Object.defineProperty(String.prototype,"nv_split",{writable:true,value:String.prototype.split})845Object.defineProperty(String.prototype,"nv_substring",{writable:true,value:String.prototype.substring})846Object.defineProperty(String.prototype,"nv_toLowerCase",{writable:true,value:String.prototype.toLowerCase})847Object.defineProperty(String.prototype,"nv_toLocaleLowerCase",{writable:true,value:String.prototype.toLocaleLowerCase})848Object.defineProperty(String.prototype,"nv_toUpperCase",{writable:true,value:String.prototype.toUpperCase})849Object.defineProperty(String.prototype,"nv_toLocaleUpperCase",{writable:true,value:String.prototype.toLocaleUpperCase})850Object.defineProperty(String.prototype,"nv_trim",{writable:true,value:String.prototype.trim})851Object.defineProperty(String.prototype,"nv_length",{get:function(){return this.length;},set:function(value){this.length=value;}});852}853var nf_init_Boolean=function(){854Object.defineProperty(Boolean.prototype,"nv_constructor",{writable:true,value:"Boolean"})855Object.defineProperty(Boolean.prototype,"nv_toString",{writable:true,value:Boolean.prototype.toString})856Object.defineProperty(Boolean.prototype,"nv_valueOf",{writable:true,value:Boolean.prototype.valueOf})857}858var nf_init_Number=function(){859Object.defineProperty(Number,"nv_MAX_VALUE",{writable:false,value:Number.MAX_VALUE})860Object.defineProperty(Number,"nv_MIN_VALUE",{writable:false,value:Number.MIN_VALUE})861Object.defineProperty(Number,"nv_NEGATIVE_INFINITY",{writable:false,value:Number.NEGATIVE_INFINITY})862Object.defineProperty(Number,"nv_POSITIVE_INFINITY",{writable:false,value:Number.POSITIVE_INFINITY})863Object.defineProperty(Number.prototype,"nv_constructor",{writable:true,value:"Number"})864Object.defineProperty(Number.prototype,"nv_toString",{writable:true,value:Number.prototype.toString})865Object.defineProperty(Number.prototype,"nv_toLocaleString",{writable:true,value:Number.prototype.toLocaleString})866Object.defineProperty(Number.prototype,"nv_valueOf",{writable:true,value:Number.prototype.valueOf})867Object.defineProperty(Number.prototype,"nv_toFixed",{writable:true,value:Number.prototype.toFixed})868Object.defineProperty(Number.prototype,"nv_toExponential",{writable:true,value:Number.prototype.toExponential})869Object.defineProperty(Number.prototype,"nv_toPrecision",{writable:true,value:Number.prototype.toPrecision})870}871var nf_init_Math=function(){872Object.defineProperty(Math,"nv_E",{writable:false,value:Math.E})873Object.defineProperty(Math,"nv_LN10",{writable:false,value:Math.LN10})874Object.defineProperty(Math,"nv_LN2",{writable:false,value:Math.LN2})875Object.defineProperty(Math,"nv_LOG2E",{writable:false,value:Math.LOG2E})876Object.defineProperty(Math,"nv_LOG10E",{writable:false,value:Math.LOG10E})877Object.defineProperty(Math,"nv_PI",{writable:false,value:Math.PI})878Object.defineProperty(Math,"nv_SQRT1_2",{writable:false,value:Math.SQRT1_2})879Object.defineProperty(Math,"nv_SQRT2",{writable:false,value:Math.SQRT2})880Object.defineProperty(Math,"nv_abs",{writable:false,value:Math.abs})881Object.defineProperty(Math,"nv_acos",{writable:false,value:Math.acos})882Object.defineProperty(Math,"nv_asin",{writable:false,value:Math.asin})883Object.defineProperty(Math,"nv_atan",{writable:false,value:Math.atan})884Object.defineProperty(Math,"nv_atan2",{writable:false,value:Math.atan2})885Object.defineProperty(Math,"nv_ceil",{writable:false,value:Math.ceil})886Object.defineProperty(Math,"nv_cos",{writable:false,value:Math.cos})887Object.defineProperty(Math,"nv_exp",{writable:false,value:Math.exp})888Object.defineProperty(Math,"nv_floor",{writable:false,value:Math.floor})889Object.defineProperty(Math,"nv_log",{writable:false,value:Math.log})890Object.defineProperty(Math,"nv_max",{writable:false,value:Math.max})891Object.defineProperty(Math,"nv_min",{writable:false,value:Math.min})892Object.defineProperty(Math,"nv_pow",{writable:false,value:Math.pow})893Object.defineProperty(Math,"nv_random",{writable:false,value:Math.random})894Object.defineProperty(Math,"nv_round",{writable:false,value:Math.round})895Object.defineProperty(Math,"nv_sin",{writable:false,value:Math.sin})896Object.defineProperty(Math,"nv_sqrt",{writable:false,value:Math.sqrt})897Object.defineProperty(Math,"nv_tan",{writable:false,value:Math.tan})898}899var nf_init_Date=function(){900Object.defineProperty(Date.prototype,"nv_constructor",{writable:true,value:"Date"})901Object.defineProperty(Date,"nv_parse",{writable:true,value:Date.parse})902Object.defineProperty(Date,"nv_UTC",{writable:true,value:Date.UTC})903Object.defineProperty(Date,"nv_now",{writable:true,value:Date.now})904Object.defineProperty(Date.prototype,"nv_toString",{writable:true,value:Date.prototype.toString})905Object.defineProperty(Date.prototype,"nv_toDateString",{writable:true,value:Date.prototype.toDateString})906Object.defineProperty(Date.prototype,"nv_toTimeString",{writable:true,value:Date.prototype.toTimeString})907Object.defineProperty(Date.prototype,"nv_toLocaleString",{writable:true,value:Date.prototype.toLocaleString})908Object.defineProperty(Date.prototype,"nv_toLocaleDateString",{writable:true,value:Date.prototype.toLocaleDateString})909Object.defineProperty(Date.prototype,"nv_toLocaleTimeString",{writable:true,value:Date.prototype.toLocaleTimeString})910Object.defineProperty(Date.prototype,"nv_valueOf",{writable:true,value:Date.prototype.valueOf})911Object.defineProperty(Date.prototype,"nv_getTime",{writable:true,value:Date.prototype.getTime})912Object.defineProperty(Date.prototype,"nv_getFullYear",{writable:true,value:Date.prototype.getFullYear})913Object.defineProperty(Date.prototype,"nv_getUTCFullYear",{writable:true,value:Date.prototype.getUTCFullYear})914Object.defineProperty(Date.prototype,"nv_getMonth",{writable:true,value:Date.prototype.getMonth})915Object.defineProperty(Date.prototype,"nv_getUTCMonth",{writable:true,value:Date.prototype.getUTCMonth})916Object.defineProperty(Date.prototype,"nv_getDate",{writable:true,value:Date.prototype.getDate})917Object.defineProperty(Date.prototype,"nv_getUTCDate",{writable:true,value:Date.prototype.getUTCDate})918Object.defineProperty(Date.prototype,"nv_getDay",{writable:true,value:Date.prototype.getDay})919Object.defineProperty(Date.prototype,"nv_getUTCDay",{writable:true,value:Date.prototype.getUTCDay})920Object.defineProperty(Date.prototype,"nv_getHours",{writable:true,value:Date.prototype.getHours})921Object.defineProperty(Date.prototype,"nv_getUTCHours",{writable:true,value:Date.prototype.getUTCHours})922Object.defineProperty(Date.prototype,"nv_getMinutes",{writable:true,value:Date.prototype.getMinutes})923Object.defineProperty(Date.prototype,"nv_getUTCMinutes",{writable:true,value:Date.prototype.getUTCMinutes})924Object.defineProperty(Date.prototype,"nv_getSeconds",{writable:true,value:Date.prototype.getSeconds})925Object.defineProperty(Date.prototype,"nv_getUTCSeconds",{writable:true,value:Date.prototype.getUTCSeconds})926Object.defineProperty(Date.prototype,"nv_getMilliseconds",{writable:true,value:Date.prototype.getMilliseconds})927Object.defineProperty(Date.prototype,"nv_getUTCMilliseconds",{writable:true,value:Date.prototype.getUTCMilliseconds})928Object.defineProperty(Date.prototype,"nv_getTimezoneOffset",{writable:true,value:Date.prototype.getTimezoneOffset})929Object.defineProperty(Date.prototype,"nv_setTime",{writable:true,value:Date.prototype.setTime})930Object.defineProperty(Date.prototype,"nv_setMilliseconds",{writable:true,value:Date.prototype.setMilliseconds})931Object.defineProperty(Date.prototype,"nv_setUTCMilliseconds",{writable:true,value:Date.prototype.setUTCMilliseconds})932Object.defineProperty(Date.prototype,"nv_setSeconds",{writable:true,value:Date.prototype.setSeconds})933Object.defineProperty(Date.prototype,"nv_setUTCSeconds",{writable:true,value:Date.prototype.setUTCSeconds})934Object.defineProperty(Date.prototype,"nv_setMinutes",{writable:true,value:Date.prototype.setMinutes})935Object.defineProperty(Date.prototype,"nv_setUTCMinutes",{writable:true,value:Date.prototype.setUTCMinutes})936Object.defineProperty(Date.prototype,"nv_setHours",{writable:true,value:Date.prototype.setHours})937Object.defineProperty(Date.prototype,"nv_setUTCHours",{writable:true,value:Date.prototype.setUTCHours})938Object.defineProperty(Date.prototype,"nv_setDate",{writable:true,value:Date.prototype.setDate})939Object.defineProperty(Date.prototype,"nv_setUTCDate",{writable:true,value:Date.prototype.setUTCDate})940Object.defineProperty(Date.prototype,"nv_setMonth",{writable:true,value:Date.prototype.setMonth})941Object.defineProperty(Date.prototype,"nv_setUTCMonth",{writable:true,value:Date.prototype.setUTCMonth})942Object.defineProperty(Date.prototype,"nv_setFullYear",{writable:true,value:Date.prototype.setFullYear})943Object.defineProperty(Date.prototype,"nv_setUTCFullYear",{writable:true,value:Date.prototype.setUTCFullYear})944Object.defineProperty(Date.prototype,"nv_toUTCString",{writable:true,value:Date.prototype.toUTCString})945Object.defineProperty(Date.prototype,"nv_toISOString",{writable:true,value:Date.prototype.toISOString})946Object.defineProperty(Date.prototype,"nv_toJSON",{writable:true,value:Date.prototype.toJSON})947}948var nf_init_RegExp=function(){949Object.defineProperty(RegExp.prototype,"nv_constructor",{writable:true,value:"RegExp"})950Object.defineProperty(RegExp.prototype,"nv_exec",{writable:true,value:RegExp.prototype.exec})951Object.defineProperty(RegExp.prototype,"nv_test",{writable:true,value:RegExp.prototype.test})952Object.defineProperty(RegExp.prototype,"nv_toString",{writable:true,value:RegExp.prototype.toString})953Object.defineProperty(RegExp.prototype,"nv_source",{get:function(){return this.source;},set:function(){}});954Object.defineProperty(RegExp.prototype,"nv_global",{get:function(){return this.global;},set:function(){}});955Object.defineProperty(RegExp.prototype,"nv_ignoreCase",{get:function(){return this.ignoreCase;},set:function(){}});956Object.defineProperty(RegExp.prototype,"nv_multiline",{get:function(){return this.multiline;},set:function(){}});957Object.defineProperty(RegExp.prototype,"nv_lastIndex",{get:function(){return this.lastIndex;},set:function(v){this.lastIndex=v;}});958}959nf_init();960var nv_getDate=function(){var args=Array.prototype.slice.call(arguments);args.unshift(Date);return new(Function.prototype.bind.apply(Date, args));}961var nv_getRegExp=function(){var args=Array.prototype.slice.call(arguments);args.unshift(RegExp);return new(Function.prototype.bind.apply(RegExp, args));}962var nv_console={}963nv_console.nv_log=function(){var res="WXSRT:";for(var i=0;i<arguments.length;++i)res+=arguments[i]+" ";console.log(res);}964var nv_parseInt = parseInt, nv_parseFloat = parseFloat, nv_isNaN = isNaN, nv_isFinite = isFinite, nv_decodeURI = decodeURI, nv_decodeURIComponent = decodeURIComponent, nv_encodeURI = encodeURI, nv_encodeURIComponent = encodeURIComponent;965function $gdc(o,p,r) {966o=wh.rv(o);967if(o===null||o===undefined) return o;968if(o.constructor===String||o.constructor===Boolean||o.constructor===Number) return o;969if(o.constructor===Object){970var copy={};971for(var k in o)972if(o.hasOwnProperty(k))973if(undefined===p) copy[k.substring(3)]=$gdc(o[k],p,r);974else copy[p+k]=$gdc(o[k],p,r);975return copy;976}977if(o.constructor===Array){978var copy=[];979for(var i=0;i<o.length;i++) copy.push($gdc(o[i],p,r));980return copy;981}982if(o.constructor===Date){983var copy=new Date();984copy.setTime(o.getTime());985return copy;986}987if(o.constructor===RegExp){988var f="";989if(o.global) f+="g";990if(o.ignoreCase) f+="i";991if(o.multiline) f+="m";992return (new RegExp(o.source,f));993}994if(r&&o.constructor===Function){995if ( r == 1 ) return $gdc(o(),undefined, 2);996if ( r == 2 ) return o;997}998return null;999}1000var nv_JSON={}1001nv_JSON.nv_stringify=function(o){1002JSON.stringify(o);1003return JSON.stringify($gdc(o));1004}1005nv_JSON.nv_parse=function(o){1006if(o===undefined) return undefined;1007var t=JSON.parse(o);1008return $gdc(t,'nv_');1009}1010function _af(p, a, c){1011p.extraAttr = {"t_action": a, "t_cid": c};1012}1013function _gv( )1014{if( typeof( window.__webview_engine_version__) == 'undefined' ) return 0.0;1015return window.__webview_engine_version__;}1016function _ai(i,p,e,me,r,c){var x=_grp(p,e,me);if(x)i.push(x);else{i.push('');_wp(me+':import:'+r+':'+c+': Path `'+p+'` not found from `'+me+'`.')}}1017function _grp(p,e,me){if(p[0]!='/'){var mepart=me.split('/');mepart.pop();var ppart=p.split('/');for(var i=0;i<ppart.length;i++){if( ppart[i]=='..')mepart.pop();else if(!ppart[i]||ppart[i]=='.')continue;else mepart.push(ppart[i]);}p=mepart.join('/');}if(me[0]=='.'&&p[0]=='/')p='.'+p;if(e[p])return p;if(e[p+'.wxml'])return p+'.wxml';}1018function _gd(p,c,e,d){if(!c)return;if(d[p][c])return d[p][c];for(var x=e[p].i.length-1;x>=0;x--){if(e[p].i[x]&&d[e[p].i[x]][c])return d[e[p].i[x]][c]};for(var x=e[p].ti.length-1;x>=0;x--){var q=_grp(e[p].ti[x],e,p);if(q&&d[q][c])return d[q][c]}var ii=_gapi(e,p);for(var x=0;x<ii.length;x++){if(ii[x]&&d[ii[x]][c])return d[ii[x]][c]}for(var k=e[p].j.length-1;k>=0;k--)if(e[p].j[k]){for(var q=e[e[p].j[k]].ti.length-1;q>=0;q--){var pp=_grp(e[e[p].j[k]].ti[q],e,p);if(pp&&d[pp][c]){return d[pp][c]}}}}1019function _gapi(e,p){if(!p)return [];if($gaic[p]){return $gaic[p]};var ret=[],q=[],h=0,t=0,put={},visited={};q.push(p);visited[p]=true;t++;while(h<t){var a=q[h++];for(var i=0;i<e[a].ic.length;i++){var nd=e[a].ic[i];var np=_grp(nd,e,a);if(np&&!visited[np]){visited[np]=true;q.push(np);t++;}}for(var i=0;a!=p&&i<e[a].ti.length;i++){var ni=e[a].ti[i];var nm=_grp(ni,e,a);if(nm&&!put[nm]){put[nm]=true;ret.push(nm);}}}$gaic[p]=ret;return ret;}1020var $ixc={};function _ic(p,ent,me,e,s,r,gg){var x=_grp(p,ent,me);ent[me].j.push(x);if(x){if($ixc[x]){_wp('-1:include:-1:-1: `'+p+'` is being included in a loop, will be stop.');return;}$ixc[x]=true;try{ent[x].f(e,s,r,gg)}catch(e){}$ixc[x]=false;}else{_wp(me+':include:-1:-1: Included path `'+p+'` not found from `'+me+'`.')}}1021function _w(tn,f,line,c){_wp(f+':template:'+line+':'+c+': Template `'+tn+'` not found.');}function _ev(dom){var changed=false;delete dom.properities;delete dom.n;if(dom.children){do{changed=false;var newch = [];for(var i=0;i<dom.children.length;i++){var ch=dom.children[i];if( ch.tag=='virtual'){changed=true;for(var j=0;ch.children&&j<ch.children.length;j++){newch.push(ch.children[j]);}}else { newch.push(ch); } } dom.children = newch; }while(changed);for(var i=0;i<dom.children.length;i++){_ev(dom.children[i]);}} return dom; }1022function _tsd( root )1023{1024if( root.tag == "wx-wx-scope" ) 1025{1026root.tag = "virtual";1027root.wxCkey = "11";1028root['wxScopeData'] = root.attr['wx:scope-data'];1029delete root.n;1030delete root.raw;1031delete root.generics;1032delete root.attr;1033}1034for( var i = 0 ; root.children && i < root.children.length ; i++ )1035{1036_tsd( root.children[i] );1037}1038return root;1039}1040var e_={}1041if(typeof(global.entrys)==='undefined')global.entrys={};e_=global.entrys;1042var d_={}1043if(typeof(global.defines)==='undefined')global.defines={};d_=global.defines;1044var f_={}1045if(typeof(global.modules)==='undefined')global.modules={};f_=global.modules || {};1046var p_={}1047__WXML_GLOBAL__.ops_cached = __WXML_GLOBAL__.ops_cached || {}1048__WXML_GLOBAL__.ops_set = __WXML_GLOBAL__.ops_set || {};1049__WXML_GLOBAL__.ops_init = __WXML_GLOBAL__.ops_init || {};1050var z=__WXML_GLOBAL__.ops_set.$gwx || [];1051function gz$gwx_1(){1052if( __WXML_GLOBAL__.ops_cached.$gwx_1)return __WXML_GLOBAL__.ops_cached.$gwx_11053__WXML_GLOBAL__.ops_cached.$gwx_1=[];1054(function(z){var a=11;function Z(ops){z.push(ops)}1055})(__WXML_GLOBAL__.ops_cached.$gwx_1);return __WXML_GLOBAL__.ops_cached.$gwx_11056}1057function gz$gwx_2(){1058if( __WXML_GLOBAL__.ops_cached.$gwx_2)return __WXML_GLOBAL__.ops_cached.$gwx_21059__WXML_GLOBAL__.ops_cached.$gwx_2=[];1060(function(z){var a=11;function Z(ops){z.push(ops)}1061Z([3,'240d2e56'])1062Z([3,'_view M240d2e56 container'])1063Z([3,'index'])1064Z([3,'item'])1065Z([[7],[3,'baikeList']])1066Z(z[2])1067Z([3,'_view M240d2e56'])1068Z([[7],[3,'index']])1069Z([3,'handleProxy'])1070Z([3,'_view M240d2e56 wenzhang'])1071Z([[7],[3,'$k']])1072Z([[2,'+'],[1,'240d2e56-0-'],[[7],[3,'index']]])1073Z([3,'_view M240d2e56 kuai'])1074Z([3,'_view M240d2e56 textkuang'])1075Z([3,'_text M240d2e56 title'])1076Z([3,'true'])1077Z([a,[[6],[[7],[3,'item']],[3,'title']]])1078Z([3,'_view M240d2e56 laiyuan'])1079Z([a,[[6],[[7],[3,'doctype']],[[6],[[7],[3,'item']],[3,'doctype']]]])1080Z([3,'_image M240d2e56 image'])1081Z([3,'false'])1082Z([3,'scaleToFill'])1083Z([[6],[[7],[3,'item']],[3,'image']])1084})(__WXML_GLOBAL__.ops_cached.$gwx_2);return __WXML_GLOBAL__.ops_cached.$gwx_21085}1086function gz$gwx_3(){1087if( __WXML_GLOBAL__.ops_cached.$gwx_3)return __WXML_GLOBAL__.ops_cached.$gwx_31088__WXML_GLOBAL__.ops_cached.$gwx_3=[];1089(function(z){var a=11;function Z(ops){z.push(ops)}1090Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1091Z([3,'240d2e56'])1092})(__WXML_GLOBAL__.ops_cached.$gwx_3);return __WXML_GLOBAL__.ops_cached.$gwx_31093}1094function gz$gwx_4(){1095if( __WXML_GLOBAL__.ops_cached.$gwx_4)return __WXML_GLOBAL__.ops_cached.$gwx_41096__WXML_GLOBAL__.ops_cached.$gwx_4=[];1097(function(z){var a=11;function Z(ops){z.push(ops)}1098Z([3,'264e2b16'])1099Z([3,'_view M264e2b16 biaoqingkuai'])1100Z([3,'index'])1101Z([3,'item'])1102Z([[7],[3,'biaoqingList']])1103Z(z[2])1104Z([3,'_view M264e2b16 biaoqingList'])1105Z([[7],[3,'index']])1106Z([3,'_view M264e2b16 box'])1107Z([3,'handleProxy'])1108Z([3,'_image M264e2b16 image_box'])1109Z([[7],[3,'$k']])1110Z([[2,'+'],[1,'264e2b16-0-'],[[7],[3,'index']]])1111Z([3,'scaleToFill'])1112Z([[7],[3,'item']])1113})(__WXML_GLOBAL__.ops_cached.$gwx_4);return __WXML_GLOBAL__.ops_cached.$gwx_41114}1115function gz$gwx_5(){1116if( __WXML_GLOBAL__.ops_cached.$gwx_5)return __WXML_GLOBAL__.ops_cached.$gwx_51117__WXML_GLOBAL__.ops_cached.$gwx_5=[];1118(function(z){var a=11;function Z(ops){z.push(ops)}1119Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1120Z([3,'264e2b16'])1121})(__WXML_GLOBAL__.ops_cached.$gwx_5);return __WXML_GLOBAL__.ops_cached.$gwx_51122}1123function gz$gwx_6(){1124if( __WXML_GLOBAL__.ops_cached.$gwx_6)return __WXML_GLOBAL__.ops_cached.$gwx_61125__WXML_GLOBAL__.ops_cached.$gwx_6=[];1126(function(z){var a=11;function Z(ops){z.push(ops)}1127Z([3,'46f1d10a'])1128Z([3,'_view M46f1d10a kuai'])1129Z([3,'index'])1130Z([3,'item'])1131Z([[7],[3,'huashuList']])1132Z(z[2])1133Z([3,'_view M46f1d10a huashuList'])1134Z([[7],[3,'index']])1135Z([3,'_view M46f1d10a duihua'])1136Z([3,'minindex'])1137Z([3,'huashu'])1138Z([[6],[[7],[3,'item']],[3,'chat_content']])1139Z(z[9])1140Z([3,'_view M46f1d10a'])1141Z([[7],[3,'minindex']])1142Z([[2,'=='],[[6],[[7],[3,'huashu']],[3,'ans_sex']],[1,2]])1143Z([3,'_view M46f1d10a nv'])1144Z([3,'_image M46f1d10a item_img'])1145Z([3,'../static/nv.png'])1146Z([3,'handleProxy'])1147Z([3,'_view M46f1d10a textkuang'])1148Z([[7],[3,'$k']])1149Z([[2,'+'],[[2,'+'],[[2,'+'],[1,'46f1d10a-0-'],[[7],[3,'index']]],[1,'-']],[[7],[3,'minindex']]])1150Z([3,'_text M46f1d10a text'])1151Z([3,'true'])1152Z([a,[[6],[[7],[3,'huashu']],[3,'content']]])1153Z([3,'_view M46f1d10a nan'])1154Z(z[17])1155Z([3,'../static/nan.png'])1156Z(z[19])1157Z(z[20])1158Z(z[21])1159Z([[2,'+'],[[2,'+'],[[2,'+'],[1,'46f1d10a-1-'],[[7],[3,'index']]],[1,'-']],[[7],[3,'minindex']]])1160Z(z[23])1161Z(z[24])1162Z([a,z[25][1]])1163})(__WXML_GLOBAL__.ops_cached.$gwx_6);return __WXML_GLOBAL__.ops_cached.$gwx_61164}1165function gz$gwx_7(){1166if( __WXML_GLOBAL__.ops_cached.$gwx_7)return __WXML_GLOBAL__.ops_cached.$gwx_71167__WXML_GLOBAL__.ops_cached.$gwx_7=[];1168(function(z){var a=11;function Z(ops){z.push(ops)}1169Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1170Z([3,'46f1d10a'])1171})(__WXML_GLOBAL__.ops_cached.$gwx_7);return __WXML_GLOBAL__.ops_cached.$gwx_71172}1173function gz$gwx_8(){1174if( __WXML_GLOBAL__.ops_cached.$gwx_8)return __WXML_GLOBAL__.ops_cached.$gwx_81175__WXML_GLOBAL__.ops_cached.$gwx_8=[];1176(function(z){var a=11;function Z(ops){z.push(ops)}1177Z([3,'7db0e2ed'])1178Z([[7],[3,'show']])1179Z([3,'_view M7db0e2ed loadMoreGif'])1180Z([3,'_image M7db0e2ed'])1181Z([3,'../../static/loadding.gif'])1182})(__WXML_GLOBAL__.ops_cached.$gwx_8);return __WXML_GLOBAL__.ops_cached.$gwx_81183}1184function gz$gwx_9(){1185if( __WXML_GLOBAL__.ops_cached.$gwx_9)return __WXML_GLOBAL__.ops_cached.$gwx_91186__WXML_GLOBAL__.ops_cached.$gwx_9=[];1187(function(z){var a=11;function Z(ops){z.push(ops)}1188Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1189Z([3,'7db0e2ed'])1190})(__WXML_GLOBAL__.ops_cached.$gwx_9);return __WXML_GLOBAL__.ops_cached.$gwx_91191}1192function gz$gwx_10(){1193if( __WXML_GLOBAL__.ops_cached.$gwx_10)return __WXML_GLOBAL__.ops_cached.$gwx_101194__WXML_GLOBAL__.ops_cached.$gwx_10=[];1195(function(z){var a=11;function Z(ops){z.push(ops)}1196Z([3,'55c372b8'])1197Z([[7],[3,'show']])1198Z([3,'_view M55c372b8 empty-placeholder'])1199Z([3,'_image M55c372b8 icon-xl'])1200Z([3,'../static/kong.png'])1201})(__WXML_GLOBAL__.ops_cached.$gwx_10);return __WXML_GLOBAL__.ops_cached.$gwx_101202}1203function gz$gwx_11(){1204if( __WXML_GLOBAL__.ops_cached.$gwx_11)return __WXML_GLOBAL__.ops_cached.$gwx_111205__WXML_GLOBAL__.ops_cached.$gwx_11=[];1206(function(z){var a=11;function Z(ops){z.push(ops)}1207Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1208Z([3,'55c372b8'])1209})(__WXML_GLOBAL__.ops_cached.$gwx_11);return __WXML_GLOBAL__.ops_cached.$gwx_111210}1211function gz$gwx_12(){1212if( __WXML_GLOBAL__.ops_cached.$gwx_12)return __WXML_GLOBAL__.ops_cached.$gwx_121213__WXML_GLOBAL__.ops_cached.$gwx_12=[];1214(function(z){var a=11;function Z(ops){z.push(ops)}1215Z([3,'6e0041c6'])1216Z([3,'_view M6e0041c6 swiper-tab'])1217Z([3,'index'])1218Z([3,'item'])1219Z([[7],[3,'tabList']])1220Z(z[2])1221Z([3,'handleProxy'])1222Z([a,[3,'_view M6e0041c6 '],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[[7],[3,'index']]],[1,'swiper-tab-list active'],[1,'swiper-tab-list']]])1223Z([[7],[3,'$k']])1224Z([[2,'+'],[1,'6e0041c6-0-'],[[7],[3,'index']]])1225Z([[7],[3,'index']])1226Z([a,[[7],[3,'item']]])1227})(__WXML_GLOBAL__.ops_cached.$gwx_12);return __WXML_GLOBAL__.ops_cached.$gwx_121228}1229function gz$gwx_13(){1230if( __WXML_GLOBAL__.ops_cached.$gwx_13)return __WXML_GLOBAL__.ops_cached.$gwx_131231__WXML_GLOBAL__.ops_cached.$gwx_13=[];1232(function(z){var a=11;function Z(ops){z.push(ops)}1233Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1234Z([3,'6e0041c6'])1235})(__WXML_GLOBAL__.ops_cached.$gwx_13);return __WXML_GLOBAL__.ops_cached.$gwx_131236}1237function gz$gwx_14(){1238if( __WXML_GLOBAL__.ops_cached.$gwx_14)return __WXML_GLOBAL__.ops_cached.$gwx_141239__WXML_GLOBAL__.ops_cached.$gwx_14=[];1240(function(z){var a=11;function Z(ops){z.push(ops)}1241Z([3,'55b9fb76'])1242Z([3,'_view M55b9fb76 adding'])1243Z([3,'_view M55b9fb76'])1244Z([3,'åè½æ£å¨å®å'])1245Z(z[2])1246Z([3,'æè°¢å
³æ³¨ä¸æ¯æ'])1247Z(z[2])1248Z([3,'æ¬è¯·æå¾
'])1249Z([3,'_view M55b9fb76 futrue'])1250Z([3,'æç±è±åä¸æç±èç'])1251})(__WXML_GLOBAL__.ops_cached.$gwx_14);return __WXML_GLOBAL__.ops_cached.$gwx_141252}1253function gz$gwx_15(){1254if( __WXML_GLOBAL__.ops_cached.$gwx_15)return __WXML_GLOBAL__.ops_cached.$gwx_151255__WXML_GLOBAL__.ops_cached.$gwx_15=[];1256(function(z){var a=11;function Z(ops){z.push(ops)}1257Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1258Z([3,'55b9fb76'])1259})(__WXML_GLOBAL__.ops_cached.$gwx_15);return __WXML_GLOBAL__.ops_cached.$gwx_151260}1261function gz$gwx_16(){1262if( __WXML_GLOBAL__.ops_cached.$gwx_16)return __WXML_GLOBAL__.ops_cached.$gwx_161263__WXML_GLOBAL__.ops_cached.$gwx_16=[];1264(function(z){var a=11;function Z(ops){z.push(ops)}1265Z([3,'7eafb46f'])1266Z([3,'_view M7eafb46f baike'])1267Z([3,'_view M7eafb46f'])1268Z([[6],[[7],[3,'baike']],[3,'content']])1269Z([3,'_view M7eafb46f dikuang'])1270Z([3,'_view M7eafb46f shoucangkuang'])1271Z([[7],[3,'dianzan']])1272Z([3,'handleProxy'])1273Z([3,'_image M7eafb46f shoucang'])1274Z([[7],[3,'$k']])1275Z([1,'7eafb46f-1'])1276Z([3,'https://www.lianaizhuli.com/yidianzan.png'])1277Z(z[7])1278Z(z[8])1279Z(z[9])1280Z([1,'7eafb46f-0'])1281Z([3,'https://www.lianaizhuli.com/weidianzan.png'])1282Z(z[2])1283Z([a,[[6],[[7],[3,'baike']],[3,'dianzan']]])1284Z(z[5])1285Z([[7],[3,'shoucang']])1286Z(z[7])1287Z(z[8])1288Z(z[9])1289Z([1,'7eafb46f-3'])1290Z([3,'https://www.lianaizhuli.com/yishoucang.png'])1291Z(z[7])1292Z(z[8])1293Z(z[9])1294Z([1,'7eafb46f-2'])1295Z([3,'https://www.lianaizhuli.com/weishoucang.png'])1296Z(z[2])1297Z([a,[[6],[[7],[3,'baike']],[3,'shoucang']]])1298})(__WXML_GLOBAL__.ops_cached.$gwx_16);return __WXML_GLOBAL__.ops_cached.$gwx_161299}1300function gz$gwx_17(){1301if( __WXML_GLOBAL__.ops_cached.$gwx_17)return __WXML_GLOBAL__.ops_cached.$gwx_171302__WXML_GLOBAL__.ops_cached.$gwx_17=[];1303(function(z){var a=11;function Z(ops){z.push(ops)}1304Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1305Z([3,'7eafb46f'])1306})(__WXML_GLOBAL__.ops_cached.$gwx_17);return __WXML_GLOBAL__.ops_cached.$gwx_171307}1308function gz$gwx_18(){1309if( __WXML_GLOBAL__.ops_cached.$gwx_18)return __WXML_GLOBAL__.ops_cached.$gwx_181310__WXML_GLOBAL__.ops_cached.$gwx_18=[];1311(function(z){var a=11;function Z(ops){z.push(ops)}1312Z([3,'7e04958d'])1313Z([3,'_view M7e04958d baikelist'])1314Z([3,'index'])1315Z([3,'item'])1316Z([[7],[3,'baikeList']])1317Z(z[2])1318Z([3,'_view M7e04958d'])1319Z([[7],[3,'index']])1320Z([3,'handleProxy'])1321Z([3,'_view M7e04958d wenzhang'])1322Z([[7],[3,'$k']])1323Z([[2,'+'],[1,'7e04958d-0-'],[[7],[3,'index']]])1324Z([3,'_view M7e04958d kuai'])1325Z([3,'_view M7e04958d textkuang'])1326Z([3,'_text M7e04958d title'])1327Z([3,'true'])1328Z([a,[[6],[[7],[3,'item']],[3,'title']]])1329Z([3,'_view M7e04958d laiyuan'])1330Z([a,[[6],[[7],[3,'item']],[3,'count']],[3,'次é
读']])1331Z([3,'_image M7e04958d image'])1332Z([3,'false'])1333Z([3,'scaleToFill'])1334Z([[6],[[7],[3,'item']],[3,'image']])1335Z([[2,'!'],[[7],[3,'isend']]])1336Z([3,'_view M7e04958d textend'])1337Z([3,'å è½½ä¸......'])1338Z([[7],[3,'isend']])1339Z(z[24])1340Z([3,'æç±è±åä¸æç±èç'])1341})(__WXML_GLOBAL__.ops_cached.$gwx_18);return __WXML_GLOBAL__.ops_cached.$gwx_181342}1343function gz$gwx_19(){1344if( __WXML_GLOBAL__.ops_cached.$gwx_19)return __WXML_GLOBAL__.ops_cached.$gwx_191345__WXML_GLOBAL__.ops_cached.$gwx_19=[];1346(function(z){var a=11;function Z(ops){z.push(ops)}1347Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1348Z([3,'7e04958d'])1349})(__WXML_GLOBAL__.ops_cached.$gwx_19);return __WXML_GLOBAL__.ops_cached.$gwx_191350}1351function gz$gwx_20(){1352if( __WXML_GLOBAL__.ops_cached.$gwx_20)return __WXML_GLOBAL__.ops_cached.$gwx_201353__WXML_GLOBAL__.ops_cached.$gwx_20=[];1354(function(z){var a=11;function Z(ops){z.push(ops)}1355Z([3,'094c3c9e'])1356Z([3,'_view M094c3c9e dingdan'])1357Z([3,'_view M094c3c9e title'])1358Z([3,'æ¨ç订åå¦ä¸'])1359Z([3,'index'])1360Z([3,'item'])1361Z([[7],[3,'dingdan']])1362Z(z[4])1363Z([3,'_view M094c3c9e'])1364Z([[7],[3,'index']])1365Z([3,'_view M094c3c9e dingdankuang'])1366Z([3,'_view M094c3c9e dingdanminkuang'])1367Z(z[8])1368Z([3,'_text M094c3c9e guding'])1369Z([3,'å½åç¶æ'])1370Z([3,'_text M094c3c9e xiangqing'])1371Z([3,'æ¯ä»æå'])1372Z(z[8])1373Z(z[13])1374Z([3,'ååå称'])1375Z(z[15])1376Z([a,[[6],[[6],[[7],[3,'item']],[3,'attach']],[3,'detail']]])1377Z(z[8])1378Z(z[13])1379Z([3,'æ¯ä»æ¶é´'])1380Z(z[15])1381Z([a,[[6],[[7],[3,'item']],[3,'time_end']]])1382Z(z[8])1383Z(z[13])1384Z([3,'ä»æ¬¾éé¢'])1385Z(z[15])1386Z([a,[[2,'*'],[[6],[[7],[3,'item']],[3,'cash_fee']],[1,0.01]]])1387Z(z[8])1388Z(z[13])1389Z([3,'交æåå·'])1390Z(z[15])1391Z([a,[[6],[[7],[3,'item']],[3,'transaction_id']]])1392Z([[2,'!'],[[7],[3,'isend']]])1393Z([3,'_view M094c3c9e textend'])1394Z([3,'å è½½ä¸......'])1395Z([[7],[3,'isend']])1396Z(z[38])1397Z([3,'æç±è±åä¸æç±èç'])1398})(__WXML_GLOBAL__.ops_cached.$gwx_20);return __WXML_GLOBAL__.ops_cached.$gwx_201399}1400function gz$gwx_21(){1401if( __WXML_GLOBAL__.ops_cached.$gwx_21)return __WXML_GLOBAL__.ops_cached.$gwx_211402__WXML_GLOBAL__.ops_cached.$gwx_21=[];1403(function(z){var a=11;function Z(ops){z.push(ops)}1404Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1405Z([3,'094c3c9e'])1406})(__WXML_GLOBAL__.ops_cached.$gwx_21);return __WXML_GLOBAL__.ops_cached.$gwx_211407}1408function gz$gwx_22(){1409if( __WXML_GLOBAL__.ops_cached.$gwx_22)return __WXML_GLOBAL__.ops_cached.$gwx_221410__WXML_GLOBAL__.ops_cached.$gwx_22=[];1411(function(z){var a=11;function Z(ops){z.push(ops)}1412Z([3,'6c4d1db9'])1413Z([3,'_view M6c4d1db9 fenxiao'])1414Z([3,'_image M6c4d1db9 banner'])1415Z([3,'widthFix'])1416Z([[6],[[7],[3,'fenxiao']],[3,'banner']])1417Z([3,'_view M6c4d1db9 tab-h'])1418Z([3,'scrollLeft'])1419Z([3,'true'])1420Z([3,'index'])1421Z([3,'item'])1422Z([[7],[3,'tablist']])1423Z(z[8])1424Z([3,'handleProxy'])1425Z([a,[3,'_view M6c4d1db9 '],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[[7],[3,'index']]],[1,'tab-itemactive'],[1,'tab-item']]])1426Z([[7],[3,'$k']])1427Z([[2,'+'],[1,'6c4d1db9-0-'],[[7],[3,'index']]])1428Z([[7],[3,'index']])1429Z([a,[[7],[3,'item']]])1430Z([[2,'=='],[[7],[3,'currentTab']],[1,0]])1431Z(z[12])1432Z(z[12])1433Z([3,'_view M6c4d1db9 shouhang'])1434Z(z[14])1435Z([1,'6c4d1db9-1'])1436Z([3,'_view M6c4d1db9 userinfo-avatar'])1437Z([3,'_image M6c4d1db9 avatarUrl'])1438Z([[6],[[7],[3,'userinfo']],[3,'avatarUrl']])1439Z([3,'_view M6c4d1db9 headercontent0'])1440Z([a,[[6],[[7],[3,'userinfo']],[3,'nickName']]])1441Z([3,'_view M6c4d1db9 jibie'])1442Z([a,[[6],[[7],[3,'fenxiao']],[3,'jibie']]])1443Z(z[18])1444Z(z[12])1445Z(z[12])1446Z(z[21])1447Z(z[14])1448Z([1,'6c4d1db9-2'])1449Z(z[29])1450Z([3,'_text M6c4d1db9'])1451Z([3,'ç´æ¥æ¨å¹¿æ¶çç'])1452Z([a,[[6],[[7],[3,'fenxiao']],[3,'yijibili']]])1453Z(z[29])1454Z(z[38])1455Z([3,'é´æ¥æ¨å¹¿æ¶çç'])1456Z([a,[[6],[[7],[3,'fenxiao']],[3,'erjibili']]])1457Z(z[18])1458Z(z[12])1459Z(z[12])1460Z([3,'_view M6c4d1db9 shuju'])1461Z(z[14])1462Z([1,'6c4d1db9-13'])1463Z(z[12])1464Z([3,'_view M6c4d1db9 minkuang'])1465Z(z[14])1466Z([1,'6c4d1db9-3'])1467Z(z[38])1468Z([3,'æ»æ¨å¹¿æ¶çï¼å
ï¼'])1469Z([3,'_view M6c4d1db9 shuzhi'])1470Z([a,[[6],[[7],[3,'fenxiao']],[3,'zongshouyi']]])1471Z(z[12])1472Z(z[52])1473Z(z[14])1474Z([1,'6c4d1db9-4'])1475Z([3,'_text M6c4d1db9 kedianji'])1476Z([3,'æ»æ¨å¹¿è®¢å(ç¬)'])1477Z(z[57])1478Z([a,[[6],[[6],[[7],[3,'fenxiao']],[3,'dingdan']],[3,'length']]])1479Z(z[12])1480Z(z[52])1481Z(z[14])1482Z([1,'6c4d1db9-5'])1483Z(z[38])1484Z([3,'ä»å¤©æ¨å¹¿æ¶çï¼å
ï¼'])1485Z(z[57])1486Z([a,[[6],[[7],[3,'fenxiao']],[3,'jintianshouyi']]])1487Z(z[12])1488Z(z[52])1489Z(z[14])1490Z([1,'6c4d1db9-6'])1491Z(z[38])1492Z([3,'ä»å¤©æ¨å¹¿è®¢åï¼ç¬ï¼'])1493Z(z[57])1494Z([a,[[6],[[7],[3,'fenxiao']],[3,'jintiandingdan']]])1495Z(z[12])1496Z(z[52])1497Z(z[14])1498Z([1,'6c4d1db9-7'])1499Z(z[38])1500Z([3,'å¯æç°ï¼å
ï¼'])1501Z(z[57])1502Z([a,[[6],[[7],[3,'fenxiao']],[3,'ketixian']]])1503Z(z[12])1504Z(z[52])1505Z(z[14])1506Z([1,'6c4d1db9-8'])1507Z(z[38])1508Z([3,'å·²æç°ï¼å
ï¼'])1509Z(z[57])1510Z([a,[[6],[[7],[3,'fenxiao']],[3,'yitixian']]])1511Z(z[12])1512Z(z[52])1513Z(z[14])1514Z([1,'6c4d1db9-9'])1515Z(z[63])1516Z([3,'ä¸çº§æ¨å¹¿åï¼äººï¼'])1517Z(z[57])1518Z([a,[[6],[[7],[3,'fenxiao']],[3,'yijiyonghu']]])1519Z(z[12])1520Z(z[52])1521Z(z[14])1522Z([1,'6c4d1db9-10'])1523Z(z[63])1524Z([3,'客æ·æ»æ°ï¼äººï¼'])1525Z(z[57])1526Z([a,[[2,'+'],[[6],[[7],[3,'fenxiao']],[3,'yijiyonghu']],[[6],[[7],[3,'fenxiao']],[3,'erjiyonghu']]]])1527Z(z[12])1528Z(z[52])1529Z(z[14])1530Z([1,'6c4d1db9-11'])1531Z(z[63])1532Z([3,'ç«å³æç°'])1533Z(z[12])1534Z(z[52])1535Z(z[14])1536Z([1,'6c4d1db9-12'])1537Z(z[63])1538Z([3,'æç°è®°å½'])1539Z(z[57])1540Z([a,[[6],[[6],[[7],[3,'fenxiao']],[3,'tixianjilu']],[3,'length']]])1541Z(z[18])1542Z(z[12])1543Z(z[12])1544Z([3,'_view M6c4d1db9 xiangqing'])1545Z(z[14])1546Z([1,'6c4d1db9-16'])1547Z(z[8])1548Z(z[9])1549Z([[7],[3,'dingdan']])1550Z(z[8])1551Z([[2,'=='],[[7],[3,'currentTab0']],[1,1]])1552Z([3,'_view M6c4d1db9'])1553Z(z[16])1554Z([3,'_view M6c4d1db9 dingdankuang'])1555Z([3,'_view M6c4d1db9 dingdanminkuang'])1556Z(z[140])1557Z([3,'_text M6c4d1db9 guding'])1558Z([3,'ç¨æ·å称'])1559Z([3,'_text M6c4d1db9 xiangqing'])1560Z([a,[[6],[[7],[3,'item']],[3,'yonghuming']]])1561Z(z[140])1562Z(z[145])1563Z([3,'ååå称'])1564Z(z[147])1565Z([a,[[6],[[7],[3,'item']],[3,'shangpinming']]])1566Z(z[140])1567Z(z[145])1568Z([3,'æ¯ä»æ¶é´'])1569Z(z[147])1570Z([a,[[6],[[7],[3,'item']],[3,'time']]])1571Z(z[140])1572Z(z[145])1573Z([3,'ååä»·æ ¼'])1574Z(z[147])1575Z([a,[[6],[[7],[3,'item']],[3,'total_fee']]])1576Z(z[140])1577Z(z[145])1578Z([3,'ä½ çæ¶ç'])1579Z(z[147])1580Z([a,[[6],[[7],[3,'item']],[3,'shouyi']]])1581Z(z[8])1582Z(z[9])1583Z([[7],[3,'yijiyonghu']])1584Z(z[8])1585Z([[2,'=='],[[7],[3,'currentTab0']],[1,6]])1586Z(z[140])1587Z(z[16])1588Z(z[142])1589Z(z[143])1590Z(z[140])1591Z(z[145])1592Z(z[146])1593Z(z[147])1594Z([a,[[6],[[7],[3,'item']],[3,'nickName']]])1595Z(z[140])1596Z(z[145])1597Z([3,'æ·»å æ¶é´'])1598Z(z[147])1599Z([a,z[158][1]])1600Z(z[8])1601Z(z[9])1602Z([[7],[3,'fenxiaoyonghu']])1603Z(z[8])1604Z([[2,'=='],[[7],[3,'currentTab0']],[1,7]])1605Z(z[140])1606Z(z[16])1607Z(z[142])1608Z(z[143])1609Z(z[140])1610Z(z[145])1611Z(z[146])1612Z(z[147])1613Z([a,z[182][1]])1614Z(z[140])1615Z(z[145])1616Z(z[185])1617Z(z[147])1618Z([a,z[158][1]])1619Z(z[8])1620Z(z[9])1621Z([[7],[3,'tixianjilu']])1622Z(z[8])1623Z([[2,'=='],[[7],[3,'currentTab0']],[1,9]])1624Z(z[140])1625Z(z[16])1626Z(z[142])1627Z(z[143])1628Z(z[140])1629Z(z[145])1630Z([3,'æç°éé¢'])1631Z(z[147])1632Z([a,[[6],[[7],[3,'item']],[3,'tixianjine']],[3,'å
']])1633Z(z[140])1634Z(z[145])1635Z([3,'æç°æ¶é´'])1636Z(z[147])1637Z([a,z[158][1]])1638Z([[2,'=='],[[7],[3,'currentTab0']],[1,8]])1639Z(z[140])1640Z([3,'_view M6c4d1db9 tixian'])1641Z([3,'æç°æéï¼'])1642Z(z[12])1643Z([3,'_view M6c4d1db9 jinshi'])1644Z(z[14])1645Z([1,'6c4d1db9-14'])1646Z([3,'请确ä¿ä½ å
³æ³¨äºãæç±èçãå
¬ä¼å·ï¼å¹¶è¿å
¥è¿èåæ 左边ãå å
¥ä¼åãï¼ç¹å»è¿å
¥ä¼åæè
课ç¨å¹¶ææï¼æç´æ¥è¿å
¥é¾æ¥http://www.lianaizhuli.com/kechenglist(ç¹å»å¯å¤å¶é¾æ¥),å¦åæ æ³æç°æåã'])1647Z([a,[[6],[[7],[3,'fenxiao']],[3,'tixiantixing']]])1648Z([3,'_view M6c4d1db9 tixianjine'])1649Z([3,'_text M6c4d1db9 tixianclour'])1650Z([3,'æç°éé¢ï¼'])1651Z([3,'bindinput'])1652Z([3,'_input M6c4d1db9 jinekuang'])1653Z([3,'tixianjine'])1654Z(z[237])1655Z(z[220][2])1656Z(z[12])1657Z([3,'_button M6c4d1db9 dianjitixian'])1658Z(z[14])1659Z([1,'6c4d1db9-15'])1660Z([3,'primary'])1661Z([3,'æç°'])1662Z([[2,'=='],[[7],[3,'currentTab']],[1,1]])1663Z(z[12])1664Z(z[12])1665Z(z[2])1666Z(z[14])1667Z([1,'6c4d1db9-17'])1668Z(z[3])1669Z([[6],[[7],[3,'fenxiao']],[3,'xiangqing']])1670Z([[2,'=='],[[7],[3,'currentTab']],[1,2]])1671Z(z[12])1672Z(z[12])1673Z(z[140])1674Z(z[14])1675Z([1,'6c4d1db9-20'])1676Z([3,'_view M6c4d1db9 wenankuag'])1677Z([3,'æååææ¡ï¼ç¹å»å¯å¤å¶'])1678Z(z[12])1679Z([3,'_view M6c4d1db9 wenan'])1680Z(z[14])1681Z([1,'6c4d1db9-18'])1682Z([a,[[6],[[7],[3,'fenxiao']],[3,'wenan']]])1683Z(z[264])1684Z([3,'ç¹å»æµ·æ¥é¢è§å¹¶ä¿åå°ç¸åï¼ç¶ååæååææåï¼å³å¯èººçèµé±ððð'])1685Z([3,'_view M6c4d1db9 haibaokuang'])1686Z(z[8])1687Z(z[9])1688Z([[7],[3,'haibao']])1689Z(z[8])1690Z(z[140])1691Z(z[16])1692Z(z[12])1693Z([3,'_image M6c4d1db9 haibao'])1694Z(z[14])1695Z([[2,'+'],[1,'6c4d1db9-19-'],[[7],[3,'index']]])1696Z([3,'scaleToFill'])1697Z([[7],[3,'item']])1698Z([[7],[3,'loading']])1699Z([3,'_view M6c4d1db9 loadingkuang'])1700Z(z[140])1701Z([3,'æ£å¨çææµ·æ¥...'])1702Z([3,'_image M6c4d1db9 loading'])1703Z([3,'../static/loadding.gif'])1704})(__WXML_GLOBAL__.ops_cached.$gwx_22);return __WXML_GLOBAL__.ops_cached.$gwx_221705}1706function gz$gwx_23(){1707if( __WXML_GLOBAL__.ops_cached.$gwx_23)return __WXML_GLOBAL__.ops_cached.$gwx_231708__WXML_GLOBAL__.ops_cached.$gwx_23=[];1709(function(z){var a=11;function Z(ops){z.push(ops)}1710Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1711Z([3,'6c4d1db9'])1712})(__WXML_GLOBAL__.ops_cached.$gwx_23);return __WXML_GLOBAL__.ops_cached.$gwx_231713}1714function gz$gwx_24(){1715if( __WXML_GLOBAL__.ops_cached.$gwx_24)return __WXML_GLOBAL__.ops_cached.$gwx_241716__WXML_GLOBAL__.ops_cached.$gwx_24=[];1717(function(z){var a=11;function Z(ops){z.push(ops)}1718Z([3,'3de791f4'])1719Z([3,'_view M3de791f4 home'])1720Z([[7],[3,'autoplay']])1721Z([3,'true'])1722Z([3,'_swiper M3de791f4 swiper'])1723Z([[7],[3,'duration']])1724Z([[7],[3,'indicatorActiveColor']])1725Z([[7],[3,'indicatorDots']])1726Z([[7],[3,'interval']])1727Z([3,'index'])1728Z([3,'item'])1729Z([[7],[3,'lunbotu']])1730Z(z[9])1731Z([[7],[3,'index']])1732Z([3,'_swiper-item M3de791f4'])1733Z([3,'handleProxy'])1734Z([3,'_image M3de791f4 slide-image'])1735Z([[7],[3,'$k']])1736Z([[2,'+'],[1,'3de791f4-0-'],[[7],[3,'index']]])1737Z([3,'scaleToFill'])1738Z([[6],[[7],[3,'item']],[3,'adurl']])1739Z(z[15])1740Z(z[15])1741Z([3,'_view M3de791f4'])1742Z(z[17])1743Z([1,'3de791f4-16'])1744Z([3,'_view M3de791f4 tubiao'])1745Z(z[9])1746Z(z[10])1747Z([[7],[3,'tubiao']])1748Z(z[9])1749Z([3,'_view M3de791f4 box'])1750Z(z[13])1751Z(z[15])1752Z(z[23])1753Z(z[17])1754Z([[2,'+'],[1,'3de791f4-1-'],[[7],[3,'index']]])1755Z([3,'_image M3de791f4 image'])1756Z(z[19])1757Z([[6],[[7],[3,'item']],[3,'image']])1758Z([3,'_view M3de791f4 title'])1759Z([a,[[6],[[7],[3,'item']],[3,'title']]])1760Z(z[15])1761Z(z[23])1762Z(z[17])1763Z([1,'3de791f4-3'])1764Z([3,'_view M3de791f4 search'])1765Z([3,'_view M3de791f4 text'])1766Z([a,[[7],[3,'inputValue']]])1767Z(z[37])1768Z(z[19])1769Z([[7],[3,'searchicon']])1770Z([3,'_view M3de791f4 searchmiaoshu'])1771Z([a,[[7],[3,'miaoshu']]])1772Z([3,'_view M3de791f4 tuijiankuang'])1773Z(z[9])1774Z(z[10])1775Z([[7],[3,'tuijian']])1776Z(z[9])1777Z(z[15])1778Z([3,'_view M3de791f4 tuijian'])1779Z(z[17])1780Z([[2,'+'],[1,'3de791f4-2-'],[[7],[3,'index']]])1781Z(z[13])1782Z([a,[[7],[3,'item']]])1783Z([3,'_view M3de791f4 kuai3'])1784Z([3,'_view M3de791f4 shouhang'])1785Z([3,'_image M3de791f4 image1'])1786Z(z[19])1787Z([[6],[[7],[3,'kecheng']],[3,'image']])1788Z(z[15])1789Z([3,'_view M3de791f4 gengduo'])1790Z(z[17])1791Z([1,'3de791f4-4'])1792Z([a,[[7],[3,'gengduotext']]])1793Z([3,'_image M3de791f4 image2'])1794Z(z[19])1795Z([[7],[3,'gengduoicon']])1796Z(z[9])1797Z(z[10])1798Z([[6],[[7],[3,'kecheng']],[3,'data']])1799Z(z[9])1800Z(z[15])1801Z(z[31])1802Z(z[17])1803Z([[2,'+'],[1,'3de791f4-5-'],[[7],[3,'index']]])1804Z(z[13])1805Z(z[23])1806Z(z[37])1807Z(z[19])1808Z(z[39])1809Z(z[47])1810Z([3,'_view M3de791f4 bigtext'])1811Z([a,z[41][1]])1812Z([3,'_view M3de791f4 minlan'])1813Z([3,'_view M3de791f4 laiyuan'])1814Z([a,[[6],[[7],[3,'item']],[3,'count']],[3,'人å¦ä¹ ']])1815Z([[6],[[7],[3,'item']],[3,'yigoumai']])1816Z([3,'_view M3de791f4 yigoumai'])1817Z([3,'å»å¦ä¹ '])1818Z([[2,'=='],[[6],[[7],[3,'item']],[3,'yigoumai']],[1,0]])1819Z(z[98])1820Z([a,[3,'Â¥'],[[6],[[7],[3,'item']],[3,'jiage']]])1821Z([3,'_view M3de791f4 kuai4'])1822Z(z[66])1823Z(z[67])1824Z(z[19])1825Z([[6],[[7],[3,'xingxiangjianshe']],[3,'image']])1826Z(z[15])1827Z(z[71])1828Z(z[17])1829Z([1,'3de791f4-6'])1830Z([a,z[74][1]])1831Z(z[75])1832Z(z[19])1833Z(z[77])1834Z([3,'_view M3de791f4 bigbox'])1835Z(z[9])1836Z(z[10])1837Z([[6],[[7],[3,'xingxiangjianshe']],[3,'data']])1838Z(z[9])1839Z(z[15])1840Z(z[31])1841Z(z[17])1842Z([[2,'+'],[1,'3de791f4-7-'],[[7],[3,'index']]])1843Z(z[13])1844Z(z[37])1845Z(z[19])1846Z([[6],[[7],[3,'item']],[3,'newimage']])1847Z(z[47])1848Z(z[92])1849Z([a,z[41][1]])1850Z([3,'_view M3de791f4 mintext'])1851Z([a,z[96][1],[3,'次é
读']])1852Z(z[65])1853Z(z[66])1854Z(z[67])1855Z(z[19])1856Z([[6],[[7],[3,'qingganbaike']],[3,'image']])1857Z(z[15])1858Z(z[71])1859Z(z[17])1860Z([1,'3de791f4-8'])1861Z([a,z[74][1]])1862Z(z[75])1863Z(z[19])1864Z(z[77])1865Z(z[9])1866Z(z[10])1867Z([[6],[[7],[3,'qingganbaike']],[3,'data']])1868Z(z[9])1869Z(z[15])1870Z(z[31])1871Z(z[17])1872Z([[2,'+'],[1,'3de791f4-9-'],[[7],[3,'index']]])1873Z(z[13])1874Z(z[23])1875Z(z[37])1876Z(z[19])1877Z(z[128])1878Z(z[47])1879Z(z[92])1880Z([a,z[41][1]])1881Z(z[132])1882Z([a,z[96][1],z[133][2]])1883Z([[7],[3,'islianmeng']])1884Z(z[103])1885Z(z[66])1886Z(z[67])1887Z(z[19])1888Z([[6],[[7],[3,'liaomeishizhan']],[3,'image']])1889Z(z[15])1890Z(z[71])1891Z(z[17])1892Z([1,'3de791f4-10'])1893Z([a,z[74][1]])1894Z(z[75])1895Z(z[19])1896Z(z[77])1897Z(z[116])1898Z(z[9])1899Z(z[10])1900Z([[6],[[7],[3,'liaomeishizhan']],[3,'data']])1901Z(z[9])1902Z(z[15])1903Z(z[31])1904Z(z[17])1905Z([[2,'+'],[1,'3de791f4-11-'],[[7],[3,'index']]])1906Z(z[13])1907Z(z[37])1908Z(z[19])1909Z(z[128])1910Z(z[47])1911Z(z[92])1912Z([a,z[41][1]])1913Z(z[132])1914Z([a,z[96][1],z[133][2]])1915Z(z[65])1916Z(z[66])1917Z(z[67])1918Z(z[19])1919Z([[6],[[7],[3,'sijiao']],[3,'image']])1920Z(z[15])1921Z(z[71])1922Z(z[17])1923Z([1,'3de791f4-12'])1924Z([a,z[74][1]])1925Z(z[75])1926Z(z[19])1927Z(z[77])1928Z(z[9])1929Z(z[10])1930Z([[6],[[7],[3,'sijiao']],[3,'data']])1931Z(z[9])1932Z(z[15])1933Z(z[31])1934Z(z[17])1935Z([[2,'+'],[1,'3de791f4-13-'],[[7],[3,'index']]])1936Z(z[13])1937Z(z[23])1938Z(z[37])1939Z(z[19])1940Z(z[128])1941Z(z[47])1942Z(z[92])1943Z([a,z[41][1]])1944Z(z[132])1945Z([a,z[96][1],z[96][2]])1946Z(z[103])1947Z(z[66])1948Z(z[67])1949Z(z[19])1950Z([[6],[[7],[3,'xinliceshi']],[3,'image']])1951Z(z[15])1952Z(z[71])1953Z(z[17])1954Z([1,'3de791f4-14'])1955Z([a,z[74][1]])1956Z(z[75])1957Z(z[19])1958Z(z[77])1959Z(z[116])1960Z(z[9])1961Z(z[10])1962Z([[6],[[7],[3,'xinliceshi']],[3,'data']])1963Z(z[9])1964Z(z[15])1965Z(z[31])1966Z(z[17])1967Z([[2,'+'],[1,'3de791f4-15-'],[[7],[3,'index']]])1968Z(z[13])1969Z(z[37])1970Z(z[19])1971Z(z[128])1972Z(z[47])1973Z(z[92])1974Z([a,z[41][1]])1975Z(z[132])1976Z([a,z[96][1],[3,'次æµè¯']])1977})(__WXML_GLOBAL__.ops_cached.$gwx_24);return __WXML_GLOBAL__.ops_cached.$gwx_241978}1979function gz$gwx_25(){1980if( __WXML_GLOBAL__.ops_cached.$gwx_25)return __WXML_GLOBAL__.ops_cached.$gwx_251981__WXML_GLOBAL__.ops_cached.$gwx_25=[];1982(function(z){var a=11;function Z(ops){z.push(ops)}1983Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])1984Z([3,'3de791f4'])1985})(__WXML_GLOBAL__.ops_cached.$gwx_25);return __WXML_GLOBAL__.ops_cached.$gwx_251986}1987function gz$gwx_26(){1988if( __WXML_GLOBAL__.ops_cached.$gwx_26)return __WXML_GLOBAL__.ops_cached.$gwx_261989__WXML_GLOBAL__.ops_cached.$gwx_26=[];1990(function(z){var a=11;function Z(ops){z.push(ops)}1991Z([3,'3de801c3'])1992Z([3,'handleProxy'])1993Z(z[1])1994Z([3,'_view M3de801c3 info'])1995Z([[7],[3,'$k']])1996Z([1,'3de801c3-6'])1997Z([3,'_view M3de801c3 header'])1998Z([3,'_view M3de801c3 headcontent'])1999Z([3,'_view M3de801c3 wenhouyu'])2000Z([a,[[7],[3,'wenhouyu']]])2001Z(z[1])2002Z([3,'_image M3de801c3 tuichu'])2003Z(z[4])2004Z([1,'3de801c3-0'])2005Z([3,'../static/tuichu.png'])2006Z([3,'_view M3de801c3 headimgurlkuang'])2007Z([3,'_image M3de801c3 headimgurl'])2008Z([3,'scaleToFill'])2009Z([[6],[[7],[3,'userinfo']],[3,'headimgurl']])2010Z([3,'_view M3de801c3 wenzikuang'])2011Z([3,'_view M3de801c3 diyihang'])2012Z([3,'_view M3de801c3 nickname'])2013Z([a,[[6],[[7],[3,'userinfo']],[3,'nickname']]])2014Z([[7],[3,'vipdengji']])2015Z([3,'_image M3de801c3 vipimage'])2016Z([3,'https://www.lianaizhuli.com/geren/VIP.png'])2017Z(z[24])2018Z([3,'https://www.lianaizhuli.com/geren/feiVIP.png'])2019Z(z[1])2020Z([3,'_view M3de801c3 dierhang'])2021Z(z[4])2022Z([1,'3de801c3-2'])2023Z([a,[[6],[[7],[3,'detail']],[[7],[3,'vipdengji']]]])2024Z(z[1])2025Z([3,'_view M3de801c3'])2026Z(z[4])2027Z([1,'3de801c3-1'])2028Z([3,'color:#333;padding-left:80rpx;padding-right:20rpx;'])2029Z([3,'积å'])2030Z(z[34])2031Z([3,'color:#ff7e00;'])2032Z([a,[[7],[3,'jifen']]])2033Z([3,'_view M3de801c3 disanhang'])2034Z(z[1])2035Z([3,'_image M3de801c3 banimage'])2036Z(z[4])2037Z([1,'3de801c3-3'])2038Z([3,'https://www.lianaizhuli.com/geren/huiyuanchongzhi.png'])2039Z(z[1])2040Z(z[44])2041Z(z[4])2042Z([1,'3de801c3-4'])2043Z([3,'https://www.lianaizhuli.com/geren/wodeshoucang.png'])2044Z(z[1])2045Z(z[1])2046Z([3,'_view M3de801c3 info_block'])2047Z(z[4])2048Z([1,'3de801c3-5'])2049Z([3,'_navigator M3de801c3 item'])2050Z([3,'/pages/vip'])2051Z([3,'_view M3de801c3 item_content'])2052Z([3,'_image M3de801c3 item_img'])2053Z([3,'../static/shengjihuiyuan.png'])2054Z([3,'_view M3de801c3 text'])2055Z([3,'_view M3de801c3 text1'])2056Z([3,'å级ä¼å'])2057Z([3,'_image M3de801c3 text2'])2058Z([3,'../static/jiantou.png'])2059Z([[7],[3,'islianmeng']])2060Z(z[58])2061Z([3,'/pages/fenxiao'])2062Z(z[60])2063Z(z[61])2064Z([3,'../static/fenxiao.png'])2065Z(z[63])2066Z(z[64])2067Z([3,'æ¨å¹¿ä¸å¿'])2068Z(z[66])2069Z(z[67])2070Z(z[58])2071Z([3,'/pages/tequan'])2072Z(z[60])2073Z(z[61])2074Z([3,'../static/wodetequan.png'])2075Z(z[63])2076Z(z[64])2077Z([3,'æçç¹æ'])2078Z(z[66])2079Z(z[67])2080Z(z[58])2081Z([3,'/pages/jifen'])2082Z(z[60])2083Z(z[61])2084Z([3,'../static/wodejifen.png'])2085Z(z[63])2086Z(z[64])2087Z([3,'æç积å'])2088Z(z[66])2089Z(z[67])2090Z([3,'_button M3de801c3 item'])2091Z([3,'contact'])2092Z([3,'false'])2093Z([3,'weapp'])2094Z(z[60])2095Z(z[61])2096Z([3,'../static/zaixiankefu.png'])2097Z(z[63])2098Z(z[64])2099Z([3,'å¨çº¿å®¢æ'])2100Z(z[66])2101Z(z[67])2102Z(z[58])2103Z([3,'/pages/weixin'])2104Z(z[60])2105Z(z[61])2106Z([3,'../static/daoshiweixin.png'])2107Z(z[63])2108Z(z[64])2109Z([3,'导å¸å¾®ä¿¡'])2110Z(z[66])2111Z(z[67])2112Z(z[58])2113Z([3,'/pages/dingdan'])2114Z(z[60])2115Z(z[61])2116Z([3,'../static/quanbudingdan.png'])2117Z(z[63])2118Z(z[64])2119Z([3,'å
¨é¨è®¢å'])2120Z(z[66])2121Z(z[67])2122})(__WXML_GLOBAL__.ops_cached.$gwx_26);return __WXML_GLOBAL__.ops_cached.$gwx_262123}2124function gz$gwx_27(){2125if( __WXML_GLOBAL__.ops_cached.$gwx_27)return __WXML_GLOBAL__.ops_cached.$gwx_272126__WXML_GLOBAL__.ops_cached.$gwx_27=[];2127(function(z){var a=11;function Z(ops){z.push(ops)}2128Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2129Z([3,'3de801c3'])2130})(__WXML_GLOBAL__.ops_cached.$gwx_27);return __WXML_GLOBAL__.ops_cached.$gwx_272131}2132function gz$gwx_28(){2133if( __WXML_GLOBAL__.ops_cached.$gwx_28)return __WXML_GLOBAL__.ops_cached.$gwx_282134__WXML_GLOBAL__.ops_cached.$gwx_28=[];2135(function(z){var a=11;function Z(ops){z.push(ops)}2136Z([3,'7f24077b'])2137Z([3,'_view M7f24077b jifen'])2138Z([3,'_view M7f24077b tequan'])2139Z([3,'æ¨å½åç积å为'])2140Z([3,'_view M7f24077b shuzi'])2141Z([a,[[7],[3,'jifen']]])2142Z([[2,'<'],[[7],[3,'vipdengji']],[1,6]])2143Z([3,'_view M7f24077b'])2144Z([3,'_view M7f24077b kaitongtext'])2145Z([3,'ç¹å»å级ï¼è§£éæ´å¤ä¼åä¸å±æå¡ï¼è·åæ´å¤ç§¯åï¼ä¸ºæ¨æä¾æ´å¤æç±è½å~'])2146Z([3,'_navigator M7f24077b vip'])2147Z([3,'/pages/vip'])2148Z([3,'å级ä¼å'])2149})(__WXML_GLOBAL__.ops_cached.$gwx_28);return __WXML_GLOBAL__.ops_cached.$gwx_282150}2151function gz$gwx_29(){2152if( __WXML_GLOBAL__.ops_cached.$gwx_29)return __WXML_GLOBAL__.ops_cached.$gwx_292153__WXML_GLOBAL__.ops_cached.$gwx_29=[];2154(function(z){var a=11;function Z(ops){z.push(ops)}2155Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2156Z([3,'7f24077b'])2157})(__WXML_GLOBAL__.ops_cached.$gwx_29);return __WXML_GLOBAL__.ops_cached.$gwx_292158}2159function gz$gwx_30(){2160if( __WXML_GLOBAL__.ops_cached.$gwx_30)return __WXML_GLOBAL__.ops_cached.$gwx_302161__WXML_GLOBAL__.ops_cached.$gwx_30=[];2162(function(z){var a=11;function Z(ops){z.push(ops)}2163Z([3,'7429f00a'])2164Z([3,'_view M7429f00a kecheng'])2165Z([3,'_image M7429f00a banner'])2166Z([3,'widthFix'])2167Z([[6],[[7],[3,'kecheng']],[3,'image']])2168Z([3,'_view M7429f00a title'])2169Z([a,[[6],[[7],[3,'kecheng']],[3,'title']]])2170Z([3,'_view M7429f00a tab-h'])2171Z([3,'scrollLeft'])2172Z([3,'true'])2173Z([3,'index'])2174Z([3,'item'])2175Z([[7],[3,'tablist']])2176Z(z[10])2177Z([3,'handleProxy'])2178Z([a,[3,'_view M7429f00a '],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[[7],[3,'index']]],[1,'tab-itemactive'],[1,'tab-item']]])2179Z([[7],[3,'$k']])2180Z([[2,'+'],[1,'7429f00a-0-'],[[7],[3,'index']]])2181Z([[7],[3,'index']])2182Z([a,[[7],[3,'item']]])2183Z([[2,'=='],[[7],[3,'currentTab']],[1,0]])2184Z(z[14])2185Z(z[14])2186Z(z[2])2187Z(z[16])2188Z([1,'7429f00a-3'])2189Z(z[3])2190Z([[6],[[7],[3,'kecheng']],[3,'url']])2191Z(z[14])2192Z(z[14])2193Z([3,'_view M7429f00a libiao'])2194Z(z[16])2195Z([1,'7429f00a-2'])2196Z(z[10])2197Z(z[11])2198Z([[6],[[7],[3,'kecheng']],[3,'children']])2199Z(z[10])2200Z([3,'_view M7429f00a'])2201Z(z[18])2202Z(z[14])2203Z([3,'_view M7429f00a titlekuang'])2204Z(z[16])2205Z([[2,'+'],[1,'7429f00a-1-'],[[7],[3,'index']]])2206Z([3,'_view M7429f00a itemtitle'])2207Z([a,[[6],[[7],[3,'item']],[3,'title']]])2208Z([[6],[[7],[3,'kecheng']],[3,'yigoumai']])2209Z([3,'_view M7429f00a yigoumai'])2210Z([3,'å»å¦ä¹ '])2211Z(z[37])2212Z([[2,'||'],[[2,'<'],[[7],[3,'index']],[1,1]],[[2,'&&'],[[2,'<'],[[7],[3,'index']],[1,2]],[[2,'>='],[[6],[[6],[[7],[3,'kecheng']],[3,'children']],[3,'length']],[1,5]]]])2213Z(z[46])2214Z([3,'å
è´¹'])2215Z([3,'_image M7429f00a suo'])2216Z([3,'../static/suo.png'])2217Z([[2,'=='],[[6],[[7],[3,'kecheng']],[3,'yigoumai']],[1,0]])2218Z([3,'_view M7429f00a kuang'])2219Z(z[14])2220Z([3,'_view M7429f00a text'])2221Z(z[16])2222Z([1,'7429f00a-4'])2223Z([a,[3,'ç¹ä»· '],[[6],[[7],[3,'kecheng']],[3,'jiage']]])2224})(__WXML_GLOBAL__.ops_cached.$gwx_30);return __WXML_GLOBAL__.ops_cached.$gwx_302225}2226function gz$gwx_31(){2227if( __WXML_GLOBAL__.ops_cached.$gwx_31)return __WXML_GLOBAL__.ops_cached.$gwx_312228__WXML_GLOBAL__.ops_cached.$gwx_31=[];2229(function(z){var a=11;function Z(ops){z.push(ops)}2230Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2231Z([3,'7429f00a'])2232})(__WXML_GLOBAL__.ops_cached.$gwx_31);return __WXML_GLOBAL__.ops_cached.$gwx_312233}2234function gz$gwx_32(){2235if( __WXML_GLOBAL__.ops_cached.$gwx_32)return __WXML_GLOBAL__.ops_cached.$gwx_322236__WXML_GLOBAL__.ops_cached.$gwx_32=[];2237(function(z){var a=11;function Z(ops){z.push(ops)}2238Z([3,'6e718ba8'])2239Z([3,'_view M6e718ba8 kechenglist'])2240Z([3,'index'])2241Z([3,'item'])2242Z([[7],[3,'kechenglist']])2243Z(z[2])2244Z([3,'_view M6e718ba8'])2245Z([[7],[3,'index']])2246Z([3,'handleProxy'])2247Z([3,'_view M6e718ba8 wenzhang'])2248Z([[7],[3,'$k']])2249Z([[2,'+'],[1,'6e718ba8-0-'],[[7],[3,'index']]])2250Z([3,'_view M6e718ba8 kuai'])2251Z([3,'_view M6e718ba8 textkuang'])2252Z([3,'_text M6e718ba8 title'])2253Z([3,'true'])2254Z([a,[[6],[[7],[3,'item']],[3,'title']]])2255Z([3,'_view M6e718ba8 minlan'])2256Z([3,'_view M6e718ba8 laiyuan'])2257Z([a,[[6],[[7],[3,'item']],[3,'count']],[3,'次å¦ä¹ ']])2258Z([3,'_view M6e718ba8 yigoumai'])2259Z([a,[3,'Â¥'],[[6],[[7],[3,'item']],[3,'jiage']]])2260Z([[6],[[7],[3,'item']],[3,'yigoumai']])2261Z(z[20])2262Z([3,'å·²è´ä¹°'])2263Z([3,'_view M6e718ba8 weigoumai'])2264Z([3,'å»è¯è¯»'])2265Z([3,'_image M6e718ba8 image'])2266Z([3,'false'])2267Z([3,'scaleToFill'])2268Z([[6],[[7],[3,'item']],[3,'image']])2269Z([[2,'!'],[[7],[3,'isend']]])2270Z([3,'_view M6e718ba8 textend'])2271Z([3,'å è½½ä¸......'])2272Z([[7],[3,'isend']])2273Z(z[32])2274Z([3,'æç±è±åä¸æç±èç'])2275})(__WXML_GLOBAL__.ops_cached.$gwx_32);return __WXML_GLOBAL__.ops_cached.$gwx_322276}2277function gz$gwx_33(){2278if( __WXML_GLOBAL__.ops_cached.$gwx_33)return __WXML_GLOBAL__.ops_cached.$gwx_332279__WXML_GLOBAL__.ops_cached.$gwx_33=[];2280(function(z){var a=11;function Z(ops){z.push(ops)}2281Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2282Z([3,'6e718ba8'])2283})(__WXML_GLOBAL__.ops_cached.$gwx_33);return __WXML_GLOBAL__.ops_cached.$gwx_332284}2285function gz$gwx_34(){2286if( __WXML_GLOBAL__.ops_cached.$gwx_34)return __WXML_GLOBAL__.ops_cached.$gwx_342287__WXML_GLOBAL__.ops_cached.$gwx_34=[];2288(function(z){var a=11;function Z(ops){z.push(ops)}2289Z([3,'5c503c04'])2290Z([3,'_view M5c503c04 kechengneirong'])2291Z([3,'_view M5c503c04 title'])2292Z([a,[[6],[[7],[3,'kecheng']],[3,'title']]])2293Z([3,'_view M5c503c04'])2294Z([[6],[[7],[3,'kecheng']],[3,'content']])2295})(__WXML_GLOBAL__.ops_cached.$gwx_34);return __WXML_GLOBAL__.ops_cached.$gwx_342296}2297function gz$gwx_35(){2298if( __WXML_GLOBAL__.ops_cached.$gwx_35)return __WXML_GLOBAL__.ops_cached.$gwx_352299__WXML_GLOBAL__.ops_cached.$gwx_35=[];2300(function(z){var a=11;function Z(ops){z.push(ops)}2301Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2302Z([3,'5c503c04'])2303})(__WXML_GLOBAL__.ops_cached.$gwx_35);return __WXML_GLOBAL__.ops_cached.$gwx_352304}2305function gz$gwx_36(){2306if( __WXML_GLOBAL__.ops_cached.$gwx_36)return __WXML_GLOBAL__.ops_cached.$gwx_362307__WXML_GLOBAL__.ops_cached.$gwx_36=[];2308(function(z){var a=11;function Z(ops){z.push(ops)}2309Z([3,'8c32d9c4'])2310Z([3,'_view M8c32d9c4 liaomeishizhan'])2311Z([3,'_text M8c32d9c4 title'])2312Z([3,'true'])2313Z([a,[[6],[[7],[3,'liaomeishizhan']],[3,'title']]])2314Z([3,'_view M8c32d9c4'])2315Z([[6],[[7],[3,'liaomeishizhan']],[3,'content']])2316Z([3,'_view M8c32d9c4 dikuang'])2317Z([3,'_view M8c32d9c4 shoucangkuang'])2318Z([[7],[3,'dianzan']])2319Z([3,'handleProxy'])2320Z([3,'_image M8c32d9c4 shoucang'])2321Z([[7],[3,'$k']])2322Z([1,'8c32d9c4-1'])2323Z([3,'https://www.lianaizhuli.com/yidianzan.png'])2324Z(z[10])2325Z(z[11])2326Z(z[12])2327Z([1,'8c32d9c4-0'])2328Z([3,'https://www.lianaizhuli.com/weidianzan.png'])2329Z(z[5])2330Z([a,[[6],[[7],[3,'liaomeishizhan']],[3,'dianzan']]])2331Z(z[8])2332Z([[7],[3,'shoucang']])2333Z(z[10])2334Z(z[11])2335Z(z[12])2336Z([1,'8c32d9c4-3'])2337Z([3,'https://www.lianaizhuli.com/yishoucang.png'])2338Z(z[10])2339Z(z[11])2340Z(z[12])2341Z([1,'8c32d9c4-2'])2342Z([3,'https://www.lianaizhuli.com/weishoucang.png'])2343Z(z[5])2344Z([a,[[6],[[7],[3,'liaomeishizhan']],[3,'shoucang']]])2345})(__WXML_GLOBAL__.ops_cached.$gwx_36);return __WXML_GLOBAL__.ops_cached.$gwx_362346}2347function gz$gwx_37(){2348if( __WXML_GLOBAL__.ops_cached.$gwx_37)return __WXML_GLOBAL__.ops_cached.$gwx_372349__WXML_GLOBAL__.ops_cached.$gwx_37=[];2350(function(z){var a=11;function Z(ops){z.push(ops)}2351Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2352Z([3,'8c32d9c4'])2353})(__WXML_GLOBAL__.ops_cached.$gwx_37);return __WXML_GLOBAL__.ops_cached.$gwx_372354}2355function gz$gwx_38(){2356if( __WXML_GLOBAL__.ops_cached.$gwx_38)return __WXML_GLOBAL__.ops_cached.$gwx_382357__WXML_GLOBAL__.ops_cached.$gwx_38=[];2358(function(z){var a=11;function Z(ops){z.push(ops)}2359Z([3,'703e84bc'])2360Z([3,'_view M703e84bc liaomeishizhanlist'])2361Z([3,'index'])2362Z([3,'item'])2363Z([[7],[3,'liaomeishizhanList']])2364Z(z[2])2365Z([3,'_view M703e84bc'])2366Z([[7],[3,'index']])2367Z([3,'handleProxy'])2368Z([3,'_view M703e84bc wenzhang'])2369Z([[7],[3,'$k']])2370Z([[2,'+'],[1,'703e84bc-0-'],[[7],[3,'index']]])2371Z([3,'_view M703e84bc kuai'])2372Z([3,'_view M703e84bc textkuang'])2373Z([3,'_text M703e84bc title'])2374Z([3,'true'])2375Z([a,[[6],[[7],[3,'item']],[3,'title']]])2376Z([3,'_view M703e84bc laiyuan'])2377Z([a,[[6],[[7],[3,'item']],[3,'count']],[3,'次é
读']])2378Z([3,'_image M703e84bc image'])2379Z([3,'false'])2380Z([3,'scaleToFill'])2381Z([[6],[[7],[3,'item']],[3,'image']])2382Z([[2,'!'],[[7],[3,'isend']]])2383Z([3,'_view M703e84bc textend'])2384Z([3,'å è½½ä¸......'])2385Z([[7],[3,'isend']])2386Z(z[24])2387Z([3,'æç±è±åä¸æç±èç'])2388})(__WXML_GLOBAL__.ops_cached.$gwx_38);return __WXML_GLOBAL__.ops_cached.$gwx_382389}2390function gz$gwx_39(){2391if( __WXML_GLOBAL__.ops_cached.$gwx_39)return __WXML_GLOBAL__.ops_cached.$gwx_392392__WXML_GLOBAL__.ops_cached.$gwx_39=[];2393(function(z){var a=11;function Z(ops){z.push(ops)}2394Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2395Z([3,'703e84bc'])2396})(__WXML_GLOBAL__.ops_cached.$gwx_39);return __WXML_GLOBAL__.ops_cached.$gwx_392397}2398function gz$gwx_40(){2399if( __WXML_GLOBAL__.ops_cached.$gwx_40)return __WXML_GLOBAL__.ops_cached.$gwx_402400__WXML_GLOBAL__.ops_cached.$gwx_40=[];2401(function(z){var a=11;function Z(ops){z.push(ops)}2402Z([3,'47188cfa'])2403Z([3,'_view M47188cfa liaomeitaolu'])2404Z([3,'handleProxy'])2405Z([3,'true'])2406Z([3,'_swiper M47188cfa swiper'])2407Z([[7],[3,'$k']])2408Z([1,'47188cfa-6'])2409Z([3,'50rpx'])2410Z(z[7])2411Z([3,'index'])2412Z([3,'item'])2413Z([[7],[3,'LilunList']])2414Z(z[9])2415Z([[7],[3,'index']])2416Z([3,'_swiper-item M47188cfa'])2417Z([3,'_view M47188cfa current'])2418Z([a,[[2,'+'],[[7],[3,'index']],[1,1]],[3,'/'],[[6],[[7],[3,'LilunList']],[3,'length']]])2419Z([3,'_view M47188cfa secondkuai'])2420Z([3,'_view M47188cfa duihua'])2421Z(z[2])2422Z([3,'_view M47188cfa biaoti'])2423Z(z[5])2424Z([[2,'+'],[1,'47188cfa-0-'],[[7],[3,'index']]])2425Z([3,'_text M47188cfa'])2426Z(z[3])2427Z([a,[[6],[[7],[3,'item']],[3,'title']],[3,'\n']])2428Z(z[2])2429Z([3,'_view M47188cfa fangshi'])2430Z(z[5])2431Z([[2,'+'],[1,'47188cfa-1-'],[[7],[3,'index']]])2432Z([3,'_a M47188cfa'])2433Z([3,'color:#333;'])2434Z([3,'éåæ
æ¯ï¼'])2435Z(z[23])2436Z(z[3])2437Z([a,[[6],[[7],[3,'item']],[3,'fangshi']],z[25][2]])2438Z(z[2])2439Z(z[27])2440Z(z[5])2441Z([[2,'+'],[1,'47188cfa-2-'],[[7],[3,'index']]])2442Z(z[30])2443Z(z[31])2444Z([3,'使ç¨ææï¼'])2445Z(z[23])2446Z(z[3])2447Z([a,[[6],[[7],[3,'item']],[3,'xiaoguo']],z[25][2]])2448Z([3,'_view M47188cfa jiexi'])2449Z(z[30])2450Z(z[31])2451Z([3,'å
·ä½åæ³ï¼'])2452Z([3,'minindex'])2453Z([3,'minitem'])2454Z([[6],[[7],[3,'item']],[3,'datalist']])2455Z(z[50])2456Z([3,'_view M47188cfa'])2457Z([[7],[3,'minindex']])2458Z([[2,'=='],[[6],[[7],[3,'minitem']],[3,'person']],[1,0]])2459Z([3,'_view M47188cfa nv'])2460Z([3,'_image M47188cfa item_img'])2461Z([3,'../images/nv.png'])2462Z(z[2])2463Z([3,'_view M47188cfa textkuang'])2464Z(z[5])2465Z([[2,'+'],[[2,'+'],[[2,'+'],[1,'47188cfa-3-'],[[7],[3,'index']]],[1,'-']],[[7],[3,'minindex']]])2466Z([3,'_text M47188cfa text'])2467Z(z[3])2468Z([a,[[6],[[7],[3,'minitem']],[3,'content']]])2469Z([[2,'=='],[[6],[[7],[3,'minitem']],[3,'person']],[1,1]])2470Z([3,'_view M47188cfa nan'])2471Z(z[58])2472Z([3,'../images/nan.png'])2473Z(z[2])2474Z(z[61])2475Z(z[5])2476Z([[2,'+'],[[2,'+'],[[2,'+'],[1,'47188cfa-4-'],[[7],[3,'index']]],[1,'-']],[[7],[3,'minindex']]])2477Z(z[64])2478Z(z[3])2479Z([a,z[66][1]])2480Z([[2,'>'],[[6],[[6],[[7],[3,'item']],[3,'content']],[3,'length']],[1,0]])2481Z(z[54])2482Z(z[46])2483Z(z[30])2484Z(z[31])2485Z([3,'解æï¼'])2486Z(z[2])2487Z([3,'_view M47188cfa content'])2488Z(z[5])2489Z([[2,'+'],[1,'47188cfa-5-'],[[7],[3,'index']]])2490Z(z[23])2491Z(z[3])2492Z([a,[[6],[[7],[3,'item']],[3,'content']]])2493})(__WXML_GLOBAL__.ops_cached.$gwx_40);return __WXML_GLOBAL__.ops_cached.$gwx_402494}2495function gz$gwx_41(){2496if( __WXML_GLOBAL__.ops_cached.$gwx_41)return __WXML_GLOBAL__.ops_cached.$gwx_412497__WXML_GLOBAL__.ops_cached.$gwx_41=[];2498(function(z){var a=11;function Z(ops){z.push(ops)}2499Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2500Z([3,'47188cfa'])2501})(__WXML_GLOBAL__.ops_cached.$gwx_41);return __WXML_GLOBAL__.ops_cached.$gwx_412502}2503function gz$gwx_42(){2504if( __WXML_GLOBAL__.ops_cached.$gwx_42)return __WXML_GLOBAL__.ops_cached.$gwx_422505__WXML_GLOBAL__.ops_cached.$gwx_42=[];2506(function(z){var a=11;function Z(ops){z.push(ops)}2507Z([3,'842f9ed0'])2508Z([3,'handleProxy'])2509Z(z[1])2510Z([3,'_view M842f9ed0 liaomeitaolulist'])2511Z([[7],[3,'$k']])2512Z([1,'842f9ed0-43'])2513Z([3,'_view M842f9ed0 tou'])2514Z([3,'_view M842f9ed0 kuai'])2515Z([3,'_view M842f9ed0 biaoti'])2516Z([3,'_view M842f9ed0 kuai_flag'])2517Z([3,'_biaoti M842f9ed0'])2518Z([3,'æ讪æå·§'])2519Z([3,'_view M842f9ed0 kuai_list'])2520Z(z[1])2521Z([3,'_button M842f9ed0 weui-btn'])2522Z(z[4])2523Z([1,'842f9ed0-0'])2524Z([3,'mini'])2525Z([3,'default'])2526Z([3,'ç´æ¥å¼åºç½'])2527Z(z[1])2528Z(z[14])2529Z(z[4])2530Z([1,'842f9ed0-1'])2531Z(z[17])2532Z(z[18])2533Z([3,'é´æ¥å¼åºç½'])2534Z(z[1])2535Z(z[14])2536Z(z[4])2537Z([1,'842f9ed0-2'])2538Z(z[17])2539Z(z[18])2540Z([3,'å¹½é»å¼åºç½'])2541Z(z[12])2542Z(z[1])2543Z(z[14])2544Z(z[4])2545Z([1,'842f9ed0-3'])2546Z(z[17])2547Z(z[18])2548Z([3,'好å¥å¼åºç½'])2549Z(z[1])2550Z(z[14])2551Z(z[4])2552Z([1,'842f9ed0-4'])2553Z(z[17])2554Z(z[18])2555Z([3,'çéå¼åºç½'])2556Z(z[1])2557Z(z[14])2558Z(z[4])2559Z([1,'842f9ed0-5'])2560Z(z[17])2561Z(z[18])2562Z([3,'é
å§å¼åºç½'])2563Z(z[12])2564Z(z[1])2565Z(z[14])2566Z(z[4])2567Z([1,'842f9ed0-6'])2568Z(z[17])2569Z(z[18])2570Z([3,'å
¨ç¯å¢æ讪'])2571Z(z[1])2572Z(z[14])2573Z(z[4])2574Z([1,'842f9ed0-7'])2575Z(z[17])2576Z(z[18])2577Z([3,'æ讪模æ¿'])2578Z(z[1])2579Z(z[14])2580Z(z[4])2581Z([1,'842f9ed0-8'])2582Z(z[17])2583Z(z[18])2584Z([3,'è°ä¾å¹½é»'])2585Z(z[12])2586Z(z[1])2587Z(z[14])2588Z(z[4])2589Z([1,'842f9ed0-9'])2590Z(z[17])2591Z(z[18])2592Z([3,'æ¶å·åç»'])2593Z(z[1])2594Z(z[14])2595Z(z[4])2596Z([1,'842f9ed0-10'])2597Z(z[17])2598Z(z[18])2599Z([3,'ç¥åå¤'])2600Z(z[7])2601Z(z[8])2602Z(z[9])2603Z(z[10])2604Z([3,'åæçç¥'])2605Z(z[12])2606Z(z[1])2607Z(z[14])2608Z(z[4])2609Z([1,'842f9ed0-11'])2610Z(z[17])2611Z(z[18])2612Z([3,'é«ä»·å¼å±ç¤º'])2613Z(z[1])2614Z(z[14])2615Z(z[4])2616Z([1,'842f9ed0-12'])2617Z(z[17])2618Z(z[18])2619Z([3,'æ¨æ'])2620Z(z[1])2621Z(z[14])2622Z(z[4])2623Z([1,'842f9ed0-13'])2624Z(z[17])2625Z(z[18])2626Z([3,'æå'])2627Z(z[12])2628Z(z[1])2629Z(z[14])2630Z(z[4])2631Z([1,'842f9ed0-14'])2632Z(z[17])2633Z(z[18])2634Z([3,'æä»æ§æµè¯'])2635Z(z[1])2636Z(z[14])2637Z(z[4])2638Z([1,'842f9ed0-15'])2639Z(z[17])2640Z(z[18])2641Z([3,'çé'])2642Z(z[1])2643Z(z[14])2644Z(z[4])2645Z([1,'842f9ed0-16'])2646Z(z[17])2647Z(z[18])2648Z([3,'ä¸è´æ§æµè¯'])2649Z(z[12])2650Z(z[1])2651Z(z[14])2652Z(z[4])2653Z([1,'842f9ed0-17'])2654Z(z[17])2655Z(z[18])2656Z([3,'å¼å¯¼è¿½é'])2657Z(z[7])2658Z(z[8])2659Z(z[9])2660Z(z[10])2661Z([3,'è天äºå¨'])2662Z(z[12])2663Z(z[1])2664Z(z[14])2665Z(z[4])2666Z([1,'842f9ed0-18'])2667Z(z[17])2668Z(z[18])2669Z([3,'å·è¯»'])2670Z(z[1])2671Z(z[14])2672Z(z[4])2673Z([1,'842f9ed0-19'])2674Z(z[17])2675Z(z[18])2676Z([3,'好ææµè¯'])2677Z(z[1])2678Z(z[14])2679Z(z[4])2680Z([1,'842f9ed0-20'])2681Z(z[17])2682Z(z[18])2683Z([3,'ç±æ
è§'])2684Z(z[12])2685Z(z[1])2686Z(z[14])2687Z(z[4])2688Z([1,'842f9ed0-21'])2689Z(z[17])2690Z(z[18])2691Z([3,'é访å¼è°è¯'])2692Z(z[1])2693Z(z[14])2694Z(z[4])2695Z([1,'842f9ed0-22'])2696Z(z[17])2697Z(z[18])2698Z([3,'è§è²æ®æ¼'])2699Z(z[1])2700Z(z[14])2701Z(z[4])2702Z([1,'842f9ed0-23'])2703Z(z[17])2704Z(z[18])2705Z([3,'æ
æå
±é¸£'])2706Z(z[12])2707Z(z[1])2708Z(z[14])2709Z(z[4])2710Z([1,'842f9ed0-24'])2711Z(z[17])2712Z(z[18])2713Z([3,'èµç¾è¯æ¯'])2714Z(z[1])2715Z(z[14])2716Z(z[4])2717Z([1,'842f9ed0-25'])2718Z(z[17])2719Z(z[18])2720Z([3,'è°æ
è¯æ¯'])2721Z(z[1])2722Z(z[14])2723Z(z[4])2724Z([1,'842f9ed0-26'])2725Z(z[17])2726Z(z[18])2727Z([3,'èµ°å¿è¯æ¯'])2728Z(z[12])2729Z(z[1])2730Z(z[14])2731Z(z[4])2732Z([1,'842f9ed0-27'])2733Z(z[17])2734Z(z[18])2735Z([3,'å¼ åè¯é¢'])2736Z(z[7])2737Z(z[8])2738Z(z[9])2739Z(z[10])2740Z([3,'约ä¼æå·§'])2741Z(z[12])2742Z(z[1])2743Z(z[14])2744Z(z[4])2745Z([1,'842f9ed0-28'])2746Z(z[17])2747Z(z[18])2748Z([3,'é约è¯æ¯'])2749Z(z[1])2750Z(z[14])2751Z(z[4])2752Z([1,'842f9ed0-29'])2753Z(z[17])2754Z(z[18])2755Z([3,'浪漫åæ约ä¼'])2756Z(z[1])2757Z(z[14])2758Z(z[4])2759Z([1,'842f9ed0-30'])2760Z(z[17])2761Z(z[18])2762Z([3,'约ä¼ç¢°é¢'])2763Z(z[12])2764Z(z[1])2765Z(z[14])2766Z(z[4])2767Z([1,'842f9ed0-31'])2768Z(z[17])2769Z(z[18])2770Z([3,'约ä¼äºå¨'])2771Z(z[1])2772Z(z[14])2773Z(z[4])2774Z([1,'842f9ed0-32'])2775Z(z[17])2776Z(z[18])2777Z([3,'约ä¼å·åº'])2778Z(z[1])2779Z(z[14])2780Z(z[4])2781Z([1,'842f9ed0-33'])2782Z(z[17])2783Z(z[18])2784Z([3,'约ä¼åè¯æ¯'])2785Z(z[7])2786Z(z[8])2787Z(z[9])2788Z(z[10])2789Z([3,'æç±æå'])2790Z(z[12])2791Z(z[1])2792Z(z[14])2793Z(z[4])2794Z([1,'842f9ed0-34'])2795Z(z[17])2796Z(z[18])2797Z([3,'轻微触碰'])2798Z(z[1])2799Z(z[14])2800Z(z[4])2801Z([1,'842f9ed0-35'])2802Z(z[17])2803Z(z[18])2804Z([3,'å¼å¯¼å¥³ç触碰'])2805Z(z[1])2806Z(z[14])2807Z(z[4])2808Z([1,'842f9ed0-36'])2809Z(z[17])2810Z(z[18])2811Z([3,'å解触碰尴尬'])2812Z(z[12])2813Z(z[1])2814Z(z[14])2815Z(z[4])2816Z([1,'842f9ed0-37'])2817Z(z[17])2818Z(z[18])2819Z([3,'çµæ'])2820Z(z[1])2821Z(z[14])2822Z(z[4])2823Z([1,'842f9ed0-38'])2824Z(z[17])2825Z(z[18])2826Z([3,'æ¥å»'])2827Z(z[1])2828Z(z[14])2829Z(z[4])2830Z([1,'842f9ed0-39'])2831Z(z[17])2832Z(z[18])2833Z([3,'å家'])2834Z(z[12])2835Z(z[1])2836Z(z[14])2837Z(z[4])2838Z([1,'842f9ed0-40'])2839Z(z[17])2840Z(z[18])2841Z([3,'é
åº'])2842Z(z[1])2843Z(z[14])2844Z(z[4])2845Z([1,'842f9ed0-41'])2846Z(z[17])2847Z(z[18])2848Z([3,'åç¬ç©ºé´ç¸å¤'])2849Z(z[1])2850Z(z[14])2851Z(z[4])2852Z([1,'842f9ed0-42'])2853Z(z[17])2854Z(z[18])2855Z([3,'å解æåå°´å°¬'])2856Z(z[6])2857})(__WXML_GLOBAL__.ops_cached.$gwx_42);return __WXML_GLOBAL__.ops_cached.$gwx_422858}2859function gz$gwx_43(){2860if( __WXML_GLOBAL__.ops_cached.$gwx_43)return __WXML_GLOBAL__.ops_cached.$gwx_432861__WXML_GLOBAL__.ops_cached.$gwx_43=[];2862(function(z){var a=11;function Z(ops){z.push(ops)}2863Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2864Z([3,'842f9ed0'])2865})(__WXML_GLOBAL__.ops_cached.$gwx_43);return __WXML_GLOBAL__.ops_cached.$gwx_432866}2867function gz$gwx_44(){2868if( __WXML_GLOBAL__.ops_cached.$gwx_44)return __WXML_GLOBAL__.ops_cached.$gwx_442869__WXML_GLOBAL__.ops_cached.$gwx_44=[];2870(function(z){var a=11;function Z(ops){z.push(ops)}2871Z([3,'d1f180fc'])2872Z([3,'_view Md1f180fc phonenumber'])2873Z([3,'_image Md1f180fc authorize-icon'])2874Z([3,'../static/authorize.png'])2875Z([3,'_view Md1f180fc auth-item'])2876Z([3,'为æ´å¥½åæ¨æä¾æå¡'])2877Z(z[4])2878Z([3,'æç±èçç³è¯·è·å以ä¸æéï¼'])2879Z(z[4])2880Z([3,'è·åæ¨çææºå·ç '])2881Z([3,'_view Md1f180fc btn-authorize'])2882Z([3,'getPhoneNumber'])2883Z([3,'_button Md1f180fc'])2884Z(z[11])2885Z([3,'primary'])2886Z([3,'ææ'])2887})(__WXML_GLOBAL__.ops_cached.$gwx_44);return __WXML_GLOBAL__.ops_cached.$gwx_442888}2889function gz$gwx_45(){2890if( __WXML_GLOBAL__.ops_cached.$gwx_45)return __WXML_GLOBAL__.ops_cached.$gwx_452891__WXML_GLOBAL__.ops_cached.$gwx_45=[];2892(function(z){var a=11;function Z(ops){z.push(ops)}2893Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2894Z([3,'d1f180fc'])2895})(__WXML_GLOBAL__.ops_cached.$gwx_45);return __WXML_GLOBAL__.ops_cached.$gwx_452896}2897function gz$gwx_46(){2898if( __WXML_GLOBAL__.ops_cached.$gwx_46)return __WXML_GLOBAL__.ops_cached.$gwx_462899__WXML_GLOBAL__.ops_cached.$gwx_46=[];2900(function(z){var a=11;function Z(ops){z.push(ops)}2901Z([3,'105add14'])2902Z([3,'_view M105add14 qingganbaike'])2903Z([3,'_view M105add14 tubiao'])2904Z([3,'index'])2905Z([3,'item'])2906Z([[7],[3,'wenda']])2907Z(z[3])2908Z([3,'_view M105add14 box'])2909Z([[7],[3,'index']])2910Z([3,'handleProxy'])2911Z([3,'_view M105add14'])2912Z([[7],[3,'$k']])2913Z([[2,'+'],[1,'105add14-0-'],[[7],[3,'index']]])2914Z([3,'_image M105add14 image'])2915Z([3,'scaleToFill'])2916Z([[6],[[7],[3,'item']],[3,'image']])2917Z([3,'_view M105add14 title'])2918Z([a,[[6],[[7],[3,'item']],[3,'title']]])2919Z([3,'_view M105add14 kuai'])2920Z([3,'_view M105add14 hang'])2921Z(z[13])2922Z([3,'aspectFit'])2923Z([[7],[3,'rumenjieduan']])2924Z([3,'_view M105add14 neikuai'])2925Z([3,'_view M105add14 bigbox'])2926Z(z[3])2927Z(z[4])2928Z([[7],[3,'rumen']])2929Z(z[3])2930Z(z[7])2931Z(z[8])2932Z(z[9])2933Z(z[10])2934Z(z[11])2935Z([[2,'+'],[1,'105add14-1-'],[[7],[3,'index']]])2936Z([3,'_view M105add14 image-group'])2937Z(z[13])2938Z(z[14])2939Z(z[15])2940Z([3,'_view M105add14 image-tip'])2941Z([a,[[6],[[7],[3,'item']],[3,'category_name']]])2942Z([3,'_view M105add14 text'])2943Z([a,z[17][1]])2944Z(z[18])2945Z(z[19])2946Z(z[13])2947Z(z[21])2948Z([[7],[3,'jinjiejieduan']])2949Z(z[23])2950Z(z[24])2951Z(z[3])2952Z(z[4])2953Z([[7],[3,'jinjie']])2954Z(z[3])2955Z(z[7])2956Z(z[8])2957Z(z[9])2958Z(z[10])2959Z(z[11])2960Z([[2,'+'],[1,'105add14-2-'],[[7],[3,'index']]])2961Z(z[35])2962Z(z[13])2963Z(z[14])2964Z(z[15])2965Z(z[39])2966Z([a,z[40][1]])2967Z(z[41])2968Z([a,z[17][1]])2969})(__WXML_GLOBAL__.ops_cached.$gwx_46);return __WXML_GLOBAL__.ops_cached.$gwx_462970}2971function gz$gwx_47(){2972if( __WXML_GLOBAL__.ops_cached.$gwx_47)return __WXML_GLOBAL__.ops_cached.$gwx_472973__WXML_GLOBAL__.ops_cached.$gwx_47=[];2974(function(z){var a=11;function Z(ops){z.push(ops)}2975Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])2976Z([3,'105add14'])2977})(__WXML_GLOBAL__.ops_cached.$gwx_47);return __WXML_GLOBAL__.ops_cached.$gwx_472978}2979function gz$gwx_48(){2980if( __WXML_GLOBAL__.ops_cached.$gwx_48)return __WXML_GLOBAL__.ops_cached.$gwx_482981__WXML_GLOBAL__.ops_cached.$gwx_48=[];2982(function(z){var a=11;function Z(ops){z.push(ops)}2983Z([3,'07b924e8'])2984Z([3,'_view M07b924e8 searchpage'])2985Z([3,'_view M07b924e8 search'])2986Z([3,'_view M07b924e8 serch_content'])2987Z([3,'_icon M07b924e8'])2988Z([3,'20'])2989Z([3,'search'])2990Z([3,'handleProxy'])2991Z(z[7])2992Z(z[7])2993Z(z[7])2994Z([3,'_input M07b924e8 search_input'])2995Z(z[6])2996Z([[7],[3,'$k']])2997Z([1,'07b924e8-0'])2998Z([[7],[3,'focus']])2999Z(z[5])3000Z([3,'å¤å¶å¦¹åè天çè¯'])3001Z([3,'text'])3002Z([[7],[3,'inputValue']])3003Z([[2,'!='],[[7],[3,'inputValue']],[1,'']])3004Z(z[7])3005Z([3,'_view M07b924e8 cha'])3006Z(z[13])3007Z([1,'07b924e8-1'])3008Z([3,'_view M07b924e8 chaclearn'])3009Z(z[4])3010Z(z[5])3011Z([3,'clear'])3012Z([[2,'=='],[[7],[3,'showRecommend']],[1,0]])3013Z([3,'_view M07b924e8'])3014Z(z[7])3015Z([[9],[[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[10],[[6],[[7],[3,'$root']],[[2,'+'],[[7],[3,'$kk']],[1,'07b924e8-0']]]]],[[8],'$root',[[7],[3,'$root']]]])3016Z(z[13])3017Z([1,'07b924e8-2'])3018Z([3,'6e0041c6'])3019Z(z[29])3020Z(z[7])3021Z(z[7])3022Z([3,'_view M07b924e8 showdata'])3023Z(z[13])3024Z([1,'07b924e8-6'])3025Z([[2,'=='],[[7],[3,'currentTab']],[1,0]])3026Z(z[30])3027Z([[2,'&&'],[[2,'=='],[[6],[[7],[3,'huashuList']],[3,'length']],[1,0]],[[7],[3,'isend0']]])3028Z([[9],[[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[10],[[6],[[7],[3,'$root']],[[2,'+'],[[7],[3,'$kk']],[1,'07b924e8-1']]]]],[[8],'$root',[[7],[3,'$root']]]])3029Z([3,'55c372b8'])3030Z(z[7])3031Z([[9],[[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[10],[[6],[[7],[3,'$root']],[[2,'+'],[[7],[3,'$kk']],[1,'07b924e8-2']]]]],[[8],'$root',[[7],[3,'$root']]]])3032Z(z[13])3033Z([1,'07b924e8-3'])3034Z([3,'46f1d10a'])3035Z([[2,'=='],[[7],[3,'currentTab']],[1,1]])3036Z(z[30])3037Z([[2,'&&'],[[2,'=='],[[6],[[7],[3,'biaoqingList']],[3,'length']],[1,0]],[[7],[3,'isend1']]])3038Z([[9],[[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[10],[[6],[[7],[3,'$root']],[[2,'+'],[[7],[3,'$kk']],[1,'07b924e8-3']]]]],[[8],'$root',[[7],[3,'$root']]]])3039Z(z[46])3040Z(z[7])3041Z(z[7])3042Z([[9],[[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[10],[[6],[[7],[3,'$root']],[[2,'+'],[[7],[3,'$kk']],[1,'07b924e8-4']]]]],[[8],'$root',[[7],[3,'$root']]]])3043Z(z[13])3044Z([1,'07b924e8-4'])3045Z([3,'264e2b16'])3046Z([[2,'=='],[[7],[3,'currentTab']],[1,2]])3047Z(z[30])3048Z([[2,'&&'],[[2,'=='],[[6],[[7],[3,'baikeList']],[3,'length']],[1,0]],[[7],[3,'isend2']]])3049Z([[9],[[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[10],[[6],[[7],[3,'$root']],[[2,'+'],[[7],[3,'$kk']],[1,'07b924e8-5']]]]],[[8],'$root',[[7],[3,'$root']]]])3050Z(z[46])3051Z(z[7])3052Z([[9],[[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[10],[[6],[[7],[3,'$root']],[[2,'+'],[[7],[3,'$kk']],[1,'07b924e8-6']]]]],[[8],'$root',[[7],[3,'$root']]]])3053Z(z[13])3054Z([1,'07b924e8-5'])3055Z([3,'240d2e56'])3056Z([[2,'||'],[[2,'||'],[[2,'&&'],[[2,'&&'],[[2,'=='],[[7],[3,'currentTab']],[1,0]],[[2,'!'],[[7],[3,'isend0']]]],[[7],[3,'oldhuashu']]],[[2,'&&'],[[2,'&&'],[[2,'=='],[[7],[3,'currentTab']],[1,1]],[[2,'!'],[[7],[3,'isend1']]]],[[7],[3,'oldbiaoqing']]]],[[2,'&&'],[[2,'&&'],[[2,'=='],[[7],[3,'currentTab']],[1,2]],[[2,'!'],[[7],[3,'isend2']]]],[[7],[3,'oldbaike']]]])3057Z([3,'_view M07b924e8 textend'])3058Z([3,'å è½½ä¸......'])3059Z(z[74])3060Z([3,'æç±è±åä¸æç±èç'])3061Z([[7],[3,'showRecommend']])3062Z([3,'_view M07b924e8 recommend'])3063Z([3,'_view M07b924e8 bigkuai'])3064Z([3,'_view M07b924e8 kuai'])3065Z([3,'_view M07b924e8 biaoti'])3066Z([3,'çé¨æ¨è'])3067Z([3,'index'])3068Z([3,'item'])3069Z([[7],[3,'hotWordsList']])3070Z(z[84])3071Z(z[7])3072Z([3,'_button M07b924e8 weui-btn'])3073Z(z[13])3074Z([[2,'+'],[1,'07b924e8-7-'],[[7],[3,'index']]])3075Z([[7],[3,'index']])3076Z([3,'mini'])3077Z([3,'default'])3078Z([a,[[7],[3,'item']]])3079Z(z[80])3080Z([3,'_view M07b924e8 hiskuai'])3081Z(z[82])3082Z([3,'åå²è®°å½'])3083Z(z[84])3084Z(z[85])3085Z([[7],[3,'hisWordsList']])3086Z(z[84])3087Z(z[7])3088Z(z[89])3089Z(z[13])3090Z([[2,'+'],[1,'07b924e8-8-'],[[7],[3,'index']]])3091Z(z[92])3092Z(z[93])3093Z(z[94])3094Z([a,z[95][1]])3095Z([[2,'=='],[[6],[[7],[3,'hisWordsList']],[3,'length']],[1,0]])3096Z([3,'_view M07b924e8 if_his'])3097Z([3,'ææ æ索记å½'])3098Z(z[7])3099Z([3,'_button M07b924e8 btn_box'])3100Z(z[13])3101Z([1,'07b924e8-9'])3102Z([3,'æ¸
é¤åå²è®°å½'])3103Z([3,'_view M07b924e8 minkuai'])3104})(__WXML_GLOBAL__.ops_cached.$gwx_48);return __WXML_GLOBAL__.ops_cached.$gwx_483105}3106function gz$gwx_49(){3107if( __WXML_GLOBAL__.ops_cached.$gwx_49)return __WXML_GLOBAL__.ops_cached.$gwx_493108__WXML_GLOBAL__.ops_cached.$gwx_49=[];3109(function(z){var a=11;function Z(ops){z.push(ops)}3110Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3111Z([3,'07b924e8'])3112})(__WXML_GLOBAL__.ops_cached.$gwx_49);return __WXML_GLOBAL__.ops_cached.$gwx_493113}3114function gz$gwx_50(){3115if( __WXML_GLOBAL__.ops_cached.$gwx_50)return __WXML_GLOBAL__.ops_cached.$gwx_503116__WXML_GLOBAL__.ops_cached.$gwx_50=[];3117(function(z){var a=11;function Z(ops){z.push(ops)}3118Z([3,'04006aa7'])3119Z([3,'_view M04006aa7 shoucang'])3120Z([[7],[3,'bianji']])3121Z([3,'handleProxy'])3122Z([3,'_view M04006aa7 bianji'])3123Z([[7],[3,'$k']])3124Z([1,'04006aa7-1'])3125Z([3,'ç¼è¾'])3126Z(z[3])3127Z(z[4])3128Z(z[5])3129Z([1,'04006aa7-0'])3130Z([3,'åæ¶'])3131Z([3,'_view M04006aa7 tab-h'])3132Z([3,'index'])3133Z([3,'item'])3134Z([[7],[3,'tabname']])3135Z(z[14])3136Z(z[3])3137Z([a,[3,'_view M04006aa7 '],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[[7],[3,'index']]],[1,'tab-itemactive'],[1,'tab-item']]])3138Z(z[5])3139Z([[2,'+'],[1,'04006aa7-2-'],[[7],[3,'index']]])3140Z([[7],[3,'index']])3141Z([a,[[6],[[7],[3,'item']],[3,'name']]])3142Z(z[3])3143Z(z[3])3144Z([3,'_view M04006aa7 jiange'])3145Z(z[5])3146Z([1,'04006aa7-9'])3147Z(z[14])3148Z(z[15])3149Z([[7],[3,'DianzanshoucangList']])3150Z(z[14])3151Z([3,'_view M04006aa7'])3152Z(z[22])3153Z([[2,'&&'],[[2,'=='],[[7],[3,'currentTab']],[1,0]],[[6],[[7],[3,'item']],[3,'shoucang']]])3154Z([3,'_view M04006aa7 wenzhang'])3155Z(z[3])3156Z([3,'_view M04006aa7 kuai'])3157Z(z[5])3158Z([[2,'+'],[1,'04006aa7-3-'],[[7],[3,'index']]])3159Z([3,'_view M04006aa7 textkuang'])3160Z([3,'_text M04006aa7 title'])3161Z([3,'true'])3162Z([a,[[6],[[7],[3,'item']],[3,'title']]])3163Z([3,'_view M04006aa7 laiyuan'])3164Z([a,[[6],[[7],[3,'doctype']],[[6],[[7],[3,'item']],[3,'doctype']]]])3165Z([3,'_image M04006aa7 image'])3166Z([3,'false'])3167Z([3,'scaleToFill'])3168Z([[6],[[7],[3,'item']],[3,'image']])3169Z([[2,'&&'],[[2,'=='],[[7],[3,'bianji']],[1,0]],[[2,'=='],[[6],[[7],[3,'item']],[3,'xuanze']],[1,0]]])3170Z(z[3])3171Z([3,'_view M04006aa7 xuanze0'])3172Z(z[5])3173Z([[2,'+'],[1,'04006aa7-4-'],[[7],[3,'index']]])3174Z([[2,'&&'],[[2,'=='],[[7],[3,'bianji']],[1,0]],[[2,'=='],[[6],[[7],[3,'item']],[3,'xuanze']],[1,1]]])3175Z(z[3])3176Z([3,'_view M04006aa7 xuanze1'])3177Z(z[5])3178Z([[2,'+'],[1,'04006aa7-5-'],[[7],[3,'index']]])3179Z([[2,'&&'],[[2,'=='],[[7],[3,'currentTab']],[1,1]],[[6],[[7],[3,'item']],[3,'dianzan']]])3180Z(z[36])3181Z(z[3])3182Z(z[38])3183Z(z[5])3184Z([[2,'+'],[1,'04006aa7-6-'],[[7],[3,'index']]])3185Z(z[41])3186Z(z[42])3187Z(z[43])3188Z([a,z[44][1]])3189Z(z[45])3190Z([a,z[46][1]])3191Z(z[47])3192Z(z[48])3193Z(z[49])3194Z(z[50])3195Z(z[51])3196Z(z[3])3197Z(z[53])3198Z(z[5])3199Z([[2,'+'],[1,'04006aa7-7-'],[[7],[3,'index']]])3200Z(z[56])3201Z(z[3])3202Z(z[58])3203Z(z[5])3204Z([[2,'+'],[1,'04006aa7-8-'],[[7],[3,'index']]])3205Z([3,'_view M04006aa7 textend'])3206Z([3,'æç±è±åä¸æç±èç'])3207Z([[2,'=='],[[7],[3,'bianji']],[1,0]])3208Z([3,'_view M04006aa7 fixed-footer'])3209Z([3,'_view M04006aa7 btngroup-prev-next'])3210Z(z[3])3211Z([3,'_view M04006aa7 btn-prev'])3212Z(z[5])3213Z([1,'04006aa7-10'])3214Z([3,'ä¸é®æ¸
空'])3215Z(z[3])3216Z([3,'_view M04006aa7 btn-next'])3217Z(z[5])3218Z([1,'04006aa7-11'])3219Z([a,[3,'å é¤ï¼'],[[7],[3,'shanchushu']],[3,'ï¼']])3220})(__WXML_GLOBAL__.ops_cached.$gwx_50);return __WXML_GLOBAL__.ops_cached.$gwx_503221}3222function gz$gwx_51(){3223if( __WXML_GLOBAL__.ops_cached.$gwx_51)return __WXML_GLOBAL__.ops_cached.$gwx_513224__WXML_GLOBAL__.ops_cached.$gwx_51=[];3225(function(z){var a=11;function Z(ops){z.push(ops)}3226Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3227Z([3,'04006aa7'])3228})(__WXML_GLOBAL__.ops_cached.$gwx_51);return __WXML_GLOBAL__.ops_cached.$gwx_513229}3230function gz$gwx_52(){3231if( __WXML_GLOBAL__.ops_cached.$gwx_52)return __WXML_GLOBAL__.ops_cached.$gwx_523232__WXML_GLOBAL__.ops_cached.$gwx_52=[];3233(function(z){var a=11;function Z(ops){z.push(ops)}3234Z([3,'04071161'])3235Z([3,'_view M04071161 shouquan'])3236Z([3,'_view M04071161 denglu'])3237Z([3,'请å
ç»å½'])3238Z([3,'handleProxy'])3239Z([3,'_image M04071161 authorize-icon'])3240Z([[7],[3,'$k']])3241Z([1,'04071161-0'])3242Z([3,'../static/weixin.png'])3243})(__WXML_GLOBAL__.ops_cached.$gwx_52);return __WXML_GLOBAL__.ops_cached.$gwx_523244}3245function gz$gwx_53(){3246if( __WXML_GLOBAL__.ops_cached.$gwx_53)return __WXML_GLOBAL__.ops_cached.$gwx_533247__WXML_GLOBAL__.ops_cached.$gwx_53=[];3248(function(z){var a=11;function Z(ops){z.push(ops)}3249Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3250Z([3,'04071161'])3251})(__WXML_GLOBAL__.ops_cached.$gwx_53);return __WXML_GLOBAL__.ops_cached.$gwx_533252}3253function gz$gwx_54(){3254if( __WXML_GLOBAL__.ops_cached.$gwx_54)return __WXML_GLOBAL__.ops_cached.$gwx_543255__WXML_GLOBAL__.ops_cached.$gwx_54=[];3256(function(z){var a=11;function Z(ops){z.push(ops)}3257Z([3,'74ba64d8'])3258Z([3,'_view M74ba64d8 sijiao'])3259Z([3,'_image M74ba64d8 image'])3260Z([3,'widthFix'])3261Z([[6],[[7],[3,'sijiao']],[3,'url']])3262Z([3,'_navigator M74ba64d8 kuang'])3263Z([3,'/pages/vip'])3264Z([3,'_view M74ba64d8 text'])3265Z([3,'ç«å³å¦ä¹ '])3266})(__WXML_GLOBAL__.ops_cached.$gwx_54);return __WXML_GLOBAL__.ops_cached.$gwx_543267}3268function gz$gwx_55(){3269if( __WXML_GLOBAL__.ops_cached.$gwx_55)return __WXML_GLOBAL__.ops_cached.$gwx_553270__WXML_GLOBAL__.ops_cached.$gwx_55=[];3271(function(z){var a=11;function Z(ops){z.push(ops)}3272Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3273Z([3,'74ba64d8'])3274})(__WXML_GLOBAL__.ops_cached.$gwx_55);return __WXML_GLOBAL__.ops_cached.$gwx_553275}3276function gz$gwx_56(){3277if( __WXML_GLOBAL__.ops_cached.$gwx_56)return __WXML_GLOBAL__.ops_cached.$gwx_563278__WXML_GLOBAL__.ops_cached.$gwx_56=[];3279(function(z){var a=11;function Z(ops){z.push(ops)}3280Z([3,'14fee976'])3281Z([3,'_view M14fee976 sijiaolist'])3282Z([3,'index'])3283Z([3,'item'])3284Z([[7],[3,'sijiaoList']])3285Z(z[2])3286Z([3,'_view M14fee976'])3287Z([[7],[3,'index']])3288Z([3,'handleProxy'])3289Z([3,'_view M14fee976 wenzhang'])3290Z([[7],[3,'$k']])3291Z([[2,'+'],[1,'14fee976-0-'],[[7],[3,'index']]])3292Z([3,'_view M14fee976 kuai'])3293Z([3,'_view M14fee976 textkuang'])3294Z([3,'_text M14fee976 title'])3295Z([3,'true'])3296Z([a,[[6],[[7],[3,'item']],[3,'title']]])3297Z([3,'_view M14fee976 laiyuan'])3298Z([a,[[6],[[7],[3,'item']],[3,'count']],[3,'次å¦ä¹ ']])3299Z([3,'_image M14fee976 image'])3300Z([3,'false'])3301Z([3,'scaleToFill'])3302Z([[6],[[7],[3,'item']],[3,'image']])3303Z([[2,'!'],[[7],[3,'isend']]])3304Z([3,'_view M14fee976 textend'])3305Z([3,'å è½½ä¸......'])3306Z([[7],[3,'isend']])3307Z(z[24])3308Z([3,'æç±è±åä¸æç±èç'])3309})(__WXML_GLOBAL__.ops_cached.$gwx_56);return __WXML_GLOBAL__.ops_cached.$gwx_563310}3311function gz$gwx_57(){3312if( __WXML_GLOBAL__.ops_cached.$gwx_57)return __WXML_GLOBAL__.ops_cached.$gwx_573313__WXML_GLOBAL__.ops_cached.$gwx_57=[];3314(function(z){var a=11;function Z(ops){z.push(ops)}3315Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3316Z([3,'14fee976'])3317})(__WXML_GLOBAL__.ops_cached.$gwx_57);return __WXML_GLOBAL__.ops_cached.$gwx_573318}3319function gz$gwx_58(){3320if( __WXML_GLOBAL__.ops_cached.$gwx_58)return __WXML_GLOBAL__.ops_cached.$gwx_583321__WXML_GLOBAL__.ops_cached.$gwx_58=[];3322(function(z){var a=11;function Z(ops){z.push(ops)}3323Z([3,'763a3b17'])3324Z([3,'_view M763a3b17 tequan'])3325Z(z[1])3326Z([3,'æ¨å½å为'])3327Z([3,'_view M763a3b17 tequanming'])3328Z([a,[[6],[[7],[3,'detail']],[[7],[3,'vipdengji']]]])3329Z([[2,'>'],[[7],[3,'vipdengji']],[1,0]])3330Z(z[1])3331Z([3,'æ¨çä¼åå°ææ¶é´ä¸º'])3332Z(z[6])3333Z(z[4])3334Z([a,[[7],[3,'viptime']]])3335Z([[2,'<'],[[7],[3,'vipdengji']],[1,6]])3336Z([3,'_view M763a3b17'])3337Z([3,'_view M763a3b17 kaitongtext'])3338Z([3,'ç¹å»å级ï¼è§£éæ´å¤ä¼åä¸å±æå¡ï¼ä¸ºæ¨æä¾æ´å¤æç±è½å~'])3339Z([3,'_navigator M763a3b17 vip'])3340Z([3,'/pages/vip'])3341Z([3,'å级ä¼å'])3342Z(z[6])3343Z([3,'_view M763a3b17 tequankuang'])3344Z([3,'æ¨çç¹æ'])3345Z([[2,'=='],[[7],[3,'vipdengji']],[1,1]])3346Z([3,'_view M763a3b17 tequanneirong'])3347Z([3,'_view M763a3b17 tequantext'])3348Z([3,'_text M763a3b17'])3349Z([3,'font-weight: bolder;font-size: 38rpx;color:#09BB07;'])3350Z([3,'â'])3351Z([3,'1ã20ä¸+æ¡æ©å¦¹è¯æ¯å¯ä¾æç´¢'])3352Z(z[24])3353Z(z[25])3354Z(z[26])3355Z(z[27])3356Z([3,'2ãä¸ä¸+æ¡æ©å¦¹å¥è·¯å¯ä¾åè'])3357Z(z[24])3358Z(z[25])3359Z(z[26])3360Z(z[27])3361Z([3,'3ãç¾ä¸+å¼ é趣表æ
å¯ä¾æç´¢'])3362Z(z[24])3363Z(z[25])3364Z(z[26])3365Z(z[27])3366Z([3,'4ã丰å¯çè天å®ææ¡ä¾'])3367Z(z[24])3368Z(z[25])3369Z(z[26])3370Z(z[27])3371Z([3,'5ã丰å¯çå±ç¤ºé¢æ¡ä¾'])3372Z(z[24])3373Z(z[25])3374Z(z[26])3375Z(z[27])3376Z([3,'6ã丰å¯çæç±ç¾ç§ç¥è¯'])3377Z(z[24])3378Z(z[25])3379Z(z[26])3380Z(z[27])3381Z([3,'7ã丰å¯çåå³æ
è¯'])3382Z(z[24])3383Z(z[25])3384Z(z[26])3385Z(z[27])3386Z([3,'8ã丰å¯çå¿çæµè¯'])3387Z(z[24])3388Z(z[25])3389Z(z[26])3390Z(z[27])3391Z([3,'9ã500人çç群'])3392Z([[2,'=='],[[7],[3,'vipdengji']],[1,2]])3393Z(z[23])3394Z(z[24])3395Z(z[25])3396Z(z[26])3397Z(z[27])3398Z([3,'1ãå°ç¨åºç»èº«ä¼å'])3399Z(z[24])3400Z(z[25])3401Z(z[26])3402Z(z[27])3403Z([3,'2ã500人é«çº§çç群'])3404Z(z[24])3405Z(z[25])3406Z(z[26])3407Z(z[27])3408Z([3,'3ãæç±èç课ç¨å
±9é¨'])3409Z(z[24])3410Z(z[25])3411Z(z[26])3412Z(z[27])3413Z([3,'4ãåæ¥çå®æ
æä¿¡æ¯æ¶é'])3414Z(z[24])3415Z(z[25])3416Z(z[26])3417Z(z[27])3418Z([3,'5ãçµè¯è¯é³å¦åæ·±å
¥æ²é'])3419Z(z[24])3420Z(z[25])3421Z(z[26])3422Z(z[27])3423Z([3,'6ã导å¸å¢éå¼ä¼åæè¯ä¼°å¶å®å
·ä½æ¹æ¡'])3424Z(z[24])3425Z(z[25])3426Z(z[26])3427Z(z[27])3428Z([3,'7ãä¸è导å¸çç£æ导'])3429Z(z[24])3430Z(z[25])3431Z(z[26])3432Z(z[27])3433Z([3,'8ãå¦ååæ¶åé¦å¯¼å¸æ¹è¿æ¹æ¡'])3434Z(z[24])3435Z(z[25])3436Z(z[26])3437Z(z[27])3438Z([3,'9ãæ»ç»è¿åº¦ç»åºå»ºè®®'])3439Z(z[24])3440Z(z[25])3441Z(z[26])3442Z(z[27])3443Z([3,'10ãæ½åæå'])3444Z([[2,'=='],[[7],[3,'vipdengji']],[1,3]])3445Z(z[23])3446Z(z[24])3447Z(z[25])3448Z(z[26])3449Z(z[27])3450Z(z[75])3451Z(z[24])3452Z(z[25])3453Z(z[26])3454Z(z[27])3455Z(z[80])3456Z(z[24])3457Z(z[25])3458Z(z[26])3459Z(z[27])3460Z(z[85])3461Z(z[24])3462Z(z[25])3463Z(z[26])3464Z(z[27])3465Z([3,'4ãæç±æ½åå©å§»ä¸å¯¹ä¸ç§ææ导ï¼1个æï¼'])3466Z([[2,'=='],[[7],[3,'vipdengji']],[1,4]])3467Z(z[23])3468Z(z[24])3469Z(z[25])3470Z(z[26])3471Z(z[27])3472Z(z[75])3473Z(z[24])3474Z(z[25])3475Z(z[26])3476Z(z[27])3477Z(z[80])3478Z(z[24])3479Z(z[25])3480Z(z[26])3481Z(z[27])3482Z(z[85])3483Z(z[24])3484Z(z[25])3485Z(z[26])3486Z(z[27])3487Z([3,'4ãæç±æ½åå©å§»ä¸å¯¹ä¸ç§ææ导ï¼3个æï¼'])3488Z([[2,'=='],[[7],[3,'vipdengji']],[1,5]])3489Z(z[23])3490Z(z[24])3491Z(z[25])3492Z(z[26])3493Z(z[27])3494Z(z[75])3495Z(z[24])3496Z(z[25])3497Z(z[26])3498Z(z[27])3499Z(z[80])3500Z(z[24])3501Z(z[25])3502Z(z[26])3503Z(z[27])3504Z(z[85])3505Z(z[24])3506Z(z[25])3507Z(z[26])3508Z(z[27])3509Z([3,'4ãæç±æ½åå©å§»ä¸å¯¹ä¸ç§ææ导ï¼1å¹´ï¼'])3510Z([[2,'=='],[[7],[3,'vipdengji']],[1,6]])3511Z(z[23])3512Z(z[24])3513Z(z[25])3514Z(z[26])3515Z(z[27])3516Z(z[75])3517Z(z[24])3518Z(z[25])3519Z(z[26])3520Z(z[27])3521Z(z[80])3522Z(z[24])3523Z(z[25])3524Z(z[26])3525Z(z[27])3526Z(z[85])3527Z(z[24])3528Z(z[25])3529Z(z[26])3530Z(z[27])3531Z([3,'4ãæç±æ½åå©å§»ä¸å¯¹ä¸ç§ææ导ï¼ç»èº«ï¼'])3532Z(z[24])3533Z(z[25])3534Z(z[26])3535Z(z[27])3536Z([3,'5ãèçä¼åä¸å±æå¡'])3537})(__WXML_GLOBAL__.ops_cached.$gwx_58);return __WXML_GLOBAL__.ops_cached.$gwx_583538}3539function gz$gwx_59(){3540if( __WXML_GLOBAL__.ops_cached.$gwx_59)return __WXML_GLOBAL__.ops_cached.$gwx_593541__WXML_GLOBAL__.ops_cached.$gwx_59=[];3542(function(z){var a=11;function Z(ops){z.push(ops)}3543Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3544Z([3,'763a3b17'])3545})(__WXML_GLOBAL__.ops_cached.$gwx_59);return __WXML_GLOBAL__.ops_cached.$gwx_593546}3547function gz$gwx_60(){3548if( __WXML_GLOBAL__.ops_cached.$gwx_60)return __WXML_GLOBAL__.ops_cached.$gwx_603549__WXML_GLOBAL__.ops_cached.$gwx_60=[];3550(function(z){var a=11;function Z(ops){z.push(ops)}3551Z([3,'e414b9c4'])3552Z([3,'handleProxy'])3553Z(z[1])3554Z([3,'_view Me414b9c4 tuweiqinghua'])3555Z([[7],[3,'$k']])3556Z([1,'e414b9c4-4'])3557Z([3,'true'])3558Z([3,'min-height:100%'])3559Z([3,'index'])3560Z([3,'item'])3561Z([[7],[3,'wordsList']])3562Z(z[8])3563Z([a,[3,'_view Me414b9c4 '],[[2,'?:'],[[2,'=='],[[6],[[7],[3,'item']],[3,'person']],[1,1]],[1,'words-item person1'],[1,'words-item person2']]])3564Z([[7],[3,'index']])3565Z([3,'_view Me414b9c4 words-avatar'])3566Z([[2,'=='],[[6],[[7],[3,'item']],[3,'person']],[1,1]])3567Z([3,'_image Me414b9c4 words-avatar1'])3568Z([[7],[3,'person2Avatar']])3569Z([[2,'=='],[[6],[[7],[3,'item']],[3,'person']],[1,2]])3570Z([3,'_image Me414b9c4 words-avatar2'])3571Z([3,'aspectFit'])3572Z(z[17])3573Z([[2,'=='],[[6],[[7],[3,'item']],[3,'type']],[1,1]])3574Z(z[1])3575Z([3,'_view Me414b9c4 words-content'])3576Z(z[4])3577Z([[2,'+'],[1,'e414b9c4-0-'],[[7],[3,'index']]])3578Z([3,'_text Me414b9c4'])3579Z(z[6])3580Z([a,[[6],[[7],[3,'item']],[3,'content']]])3581Z([[2,'=='],[[6],[[7],[3,'item']],[3,'type']],[1,2]])3582Z(z[1])3583Z([3,'_image Me414b9c4 words-img'])3584Z(z[4])3585Z([[2,'+'],[1,'e414b9c4-1-'],[[7],[3,'index']]])3586Z([3,'widthFix'])3587Z([[6],[[7],[3,'item']],[3,'content']])3588Z([3,'_view Me414b9c4 fixed-footer'])3589Z([3,'_view Me414b9c4 btngroup-prev-next'])3590Z(z[1])3591Z([3,'_view Me414b9c4 btn-prev'])3592Z(z[4])3593Z([1,'e414b9c4-2'])3594Z([3,'ä¸ä¸ä¸ª(ä¸æ)'])3595Z(z[1])3596Z([3,'_view Me414b9c4 btn-next'])3597Z(z[4])3598Z([1,'e414b9c4-3'])3599Z([3,'ä¸ä¸ä¸ª(ä¸æ»)'])3600})(__WXML_GLOBAL__.ops_cached.$gwx_60);return __WXML_GLOBAL__.ops_cached.$gwx_603601}3602function gz$gwx_61(){3603if( __WXML_GLOBAL__.ops_cached.$gwx_61)return __WXML_GLOBAL__.ops_cached.$gwx_613604__WXML_GLOBAL__.ops_cached.$gwx_61=[];3605(function(z){var a=11;function Z(ops){z.push(ops)}3606Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3607Z([3,'e414b9c4'])3608})(__WXML_GLOBAL__.ops_cached.$gwx_61);return __WXML_GLOBAL__.ops_cached.$gwx_613609}3610function gz$gwx_62(){3611if( __WXML_GLOBAL__.ops_cached.$gwx_62)return __WXML_GLOBAL__.ops_cached.$gwx_623612__WXML_GLOBAL__.ops_cached.$gwx_62=[];3613(function(z){var a=11;function Z(ops){z.push(ops)}3614Z([3,'f374d688'])3615Z([3,'_view Mf374d688 tuweiqinghualist'])3616Z([3,'_view Mf374d688 tou'])3617Z([3,'index'])3618Z([3,'item'])3619Z([[7],[3,'tuweiqinghualist']])3620Z(z[3])3621Z([3,'_view Mf374d688'])3622Z([[7],[3,'index']])3623Z([3,'handleProxy'])3624Z([3,'_view Mf374d688 tuweiqinghua'])3625Z([[7],[3,'$k']])3626Z([[2,'+'],[1,'f374d688-0-'],[[7],[3,'index']]])3627Z([a,[3,'ð '],[[6],[[7],[3,'item']],[3,'title']]])3628Z([[2,'!'],[[7],[3,'isend']]])3629Z([3,'_view Mf374d688 textend'])3630Z([3,'å è½½ä¸......'])3631Z([[7],[3,'isend']])3632Z(z[15])3633Z([3,'æç±è±åä¸æç±èç'])3634})(__WXML_GLOBAL__.ops_cached.$gwx_62);return __WXML_GLOBAL__.ops_cached.$gwx_623635}3636function gz$gwx_63(){3637if( __WXML_GLOBAL__.ops_cached.$gwx_63)return __WXML_GLOBAL__.ops_cached.$gwx_633638__WXML_GLOBAL__.ops_cached.$gwx_63=[];3639(function(z){var a=11;function Z(ops){z.push(ops)}3640Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3641Z([3,'f374d688'])3642})(__WXML_GLOBAL__.ops_cached.$gwx_63);return __WXML_GLOBAL__.ops_cached.$gwx_633643}3644function gz$gwx_64(){3645if( __WXML_GLOBAL__.ops_cached.$gwx_64)return __WXML_GLOBAL__.ops_cached.$gwx_643646__WXML_GLOBAL__.ops_cached.$gwx_64=[];3647(function(z){var a=11;function Z(ops){z.push(ops)}3648Z([3,'4ef56c30'])3649Z([3,'_view M4ef56c30 viewganhuo'])3650Z([3,'_text M4ef56c30 title'])3651Z([3,'true'])3652Z([a,[[7],[3,'title']]])3653Z(z[3])3654Z([3,'_video M4ef56c30 video'])3655Z([[7],[3,'direction']])3656Z([[7],[3,'duration']])3657Z([3,'lianmeng'])3658Z([[7],[3,'url']])3659})(__WXML_GLOBAL__.ops_cached.$gwx_64);return __WXML_GLOBAL__.ops_cached.$gwx_643660}3661function gz$gwx_65(){3662if( __WXML_GLOBAL__.ops_cached.$gwx_65)return __WXML_GLOBAL__.ops_cached.$gwx_653663__WXML_GLOBAL__.ops_cached.$gwx_65=[];3664(function(z){var a=11;function Z(ops){z.push(ops)}3665Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3666Z([3,'4ef56c30'])3667})(__WXML_GLOBAL__.ops_cached.$gwx_65);return __WXML_GLOBAL__.ops_cached.$gwx_653668}3669function gz$gwx_66(){3670if( __WXML_GLOBAL__.ops_cached.$gwx_66)return __WXML_GLOBAL__.ops_cached.$gwx_663671__WXML_GLOBAL__.ops_cached.$gwx_66=[];3672(function(z){var a=11;function Z(ops){z.push(ops)}3673Z([3,'5f987265'])3674Z([3,'_web-view M5f987265 webview'])3675Z([[7],[3,'url']])3676})(__WXML_GLOBAL__.ops_cached.$gwx_66);return __WXML_GLOBAL__.ops_cached.$gwx_663677}3678function gz$gwx_67(){3679if( __WXML_GLOBAL__.ops_cached.$gwx_67)return __WXML_GLOBAL__.ops_cached.$gwx_673680__WXML_GLOBAL__.ops_cached.$gwx_67=[];3681(function(z){var a=11;function Z(ops){z.push(ops)}3682Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3683Z([3,'5f987265'])3684})(__WXML_GLOBAL__.ops_cached.$gwx_67);return __WXML_GLOBAL__.ops_cached.$gwx_673685}3686function gz$gwx_68(){3687if( __WXML_GLOBAL__.ops_cached.$gwx_68)return __WXML_GLOBAL__.ops_cached.$gwx_683688__WXML_GLOBAL__.ops_cached.$gwx_68=[];3689(function(z){var a=11;function Z(ops){z.push(ops)}3690Z([3,'d8fed43e'])3691Z([3,'_view Md8fed43e viewimage'])3692Z([3,'_text Md8fed43e title'])3693Z([3,'true'])3694Z([a,[[7],[3,'title']]])3695Z([3,'_image Md8fed43e image'])3696Z([3,'widthFix'])3697Z([[7],[3,'url']])3698})(__WXML_GLOBAL__.ops_cached.$gwx_68);return __WXML_GLOBAL__.ops_cached.$gwx_683699}3700function gz$gwx_69(){3701if( __WXML_GLOBAL__.ops_cached.$gwx_69)return __WXML_GLOBAL__.ops_cached.$gwx_693702__WXML_GLOBAL__.ops_cached.$gwx_69=[];3703(function(z){var a=11;function Z(ops){z.push(ops)}3704Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3705Z([3,'d8fed43e'])3706})(__WXML_GLOBAL__.ops_cached.$gwx_69);return __WXML_GLOBAL__.ops_cached.$gwx_693707}3708function gz$gwx_70(){3709if( __WXML_GLOBAL__.ops_cached.$gwx_70)return __WXML_GLOBAL__.ops_cached.$gwx_703710__WXML_GLOBAL__.ops_cached.$gwx_70=[];3711(function(z){var a=11;function Z(ops){z.push(ops)}3712Z([3,'b1ae9730'])3713Z([3,'_view Mb1ae9730 vip'])3714Z([3,'_view Mb1ae9730 viphang'])3715Z([3,'handleProxy'])3716Z([a,[3,'_button Mb1ae9730 '],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,1]],[1,'vipkuangactive'],[1,'vipkuang']]])3717Z([[7],[3,'$k']])3718Z([1,'b1ae9730-0'])3719Z([a,[3,'_view Mb1ae9730 '],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,1]],[1,'viptextactive'],[1,'viptext']]])3720Z([3,'ç»èº«ä¼å'])3721Z([a,z[7][1],z[7][2]])3722Z([3,'ï¿¥199.00'])3723Z(z[3])3724Z([a,z[4][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,2]],[1,'vipkuangactive'],[1,'vipkuang']]])3725Z(z[5])3726Z([1,'b1ae9730-1'])3727Z([a,z[7][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,2]],[1,'viptextactive'],[1,'viptext']]])3728Z([3,'åææ½å(éç»èº«ä¼å)'])3729Z([a,z[7][1],z[15][2]])3730Z([3,'ï¿¥1999.00'])3731Z(z[2])3732Z(z[3])3733Z([a,z[4][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,3]],[1,'vipkuangactive'],[1,'vipkuang']]])3734Z(z[5])3735Z([1,'b1ae9730-2'])3736Z([a,z[7][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,3]],[1,'viptextactive'],[1,'viptext']]])3737Z([3,'ç§æ1个æ(éç»èº«ä¼å)'])3738Z([a,z[7][1],z[24][2]])3739Z([3,'ï¿¥499.00'])3740Z(z[3])3741Z([a,z[4][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,4]],[1,'vipkuangactive'],[1,'vipkuang']]])3742Z(z[5])3743Z([1,'b1ae9730-3'])3744Z([a,z[7][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,4]],[1,'viptextactive'],[1,'viptext']]])3745Z([3,'ç§æ3个æ(éç»èº«ä¼å)'])3746Z([a,z[7][1],z[32][2]])3747Z([3,'ï¿¥999.00'])3748Z(z[2])3749Z(z[3])3750Z([a,z[4][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,5]],[1,'vipkuangactive'],[1,'vipkuang']]])3751Z(z[5])3752Z([1,'b1ae9730-4'])3753Z([a,z[7][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,5]],[1,'viptextactive'],[1,'viptext']]])3754Z([3,'ç§æ1å¹´(éç»èº«ä¼å)'])3755Z([a,z[7][1],z[41][2]])3756Z([3,'ï¿¥2999.00'])3757Z(z[3])3758Z([a,z[4][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,6]],[1,'vipkuangactive'],[1,'vipkuang']]])3759Z(z[5])3760Z([1,'b1ae9730-5'])3761Z([a,z[7][1],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[1,6]],[1,'viptextactive'],[1,'viptext']]])3762Z([3,'èçä¼å(å«ç§æç»èº«)'])3763Z([a,z[7][1],z[49][2]])3764Z([3,'ï¿¥4999.00'])3765Z(z[3])3766Z([3,'_button Mb1ae9730 zhifu'])3767Z(z[5])3768Z([1,'b1ae9730-6'])3769Z([3,'ç«å³æ¯ä»'])3770Z([3,'_view Mb1ae9730 tequan'])3771Z([3,'ä¼åç¹æ'])3772Z([[2,'=='],[[7],[3,'currentTab']],[1,1]])3773Z([3,'_view Mb1ae9730 tequanneirong'])3774Z([3,'_view Mb1ae9730 tequantext'])3775Z([3,'_text Mb1ae9730'])3776Z([3,'font-weight: bolder;font-size: 38rpx;color:#09BB07;'])3777Z([3,'â'])3778Z([3,'1ã20ä¸+æ¡æ©å¦¹è¯æ¯å¯ä¾æç´¢'])3779Z(z[62])3780Z(z[63])3781Z(z[64])3782Z(z[65])3783Z([3,'2ãä¸ä¸+æ¡æ©å¦¹å¥è·¯å¯ä¾åè'])3784Z(z[62])3785Z(z[63])3786Z(z[64])3787Z(z[65])3788Z([3,'3ãç¾ä¸+å¼ é趣表æ
å¯ä¾æç´¢'])3789Z(z[62])3790Z(z[63])3791Z(z[64])3792Z(z[65])3793Z([3,'4ã丰å¯çè天å®ææ¡ä¾'])3794Z(z[62])3795Z(z[63])3796Z(z[64])3797Z(z[65])3798Z([3,'5ã丰å¯çå±ç¤ºé¢æ¡ä¾'])3799Z(z[62])3800Z(z[63])3801Z(z[64])3802Z(z[65])3803Z([3,'6ã丰å¯çæç±ç¾ç§ç¥è¯'])3804Z(z[62])3805Z(z[63])3806Z(z[64])3807Z(z[65])3808Z([3,'7ã丰å¯çåå³æ
è¯'])3809Z(z[62])3810Z(z[63])3811Z(z[64])3812Z(z[65])3813Z([3,'8ã丰å¯çå¿çæµè¯'])3814Z(z[62])3815Z(z[63])3816Z(z[64])3817Z(z[65])3818Z([3,'9ã500人çç群'])3819Z([[2,'=='],[[7],[3,'currentTab']],[1,2]])3820Z(z[61])3821Z(z[62])3822Z(z[63])3823Z(z[64])3824Z(z[65])3825Z([3,'1ãå°ç¨åºç»èº«ä¼å'])3826Z(z[62])3827Z(z[63])3828Z(z[64])3829Z(z[65])3830Z([3,'2ã500人é«çº§çç群'])3831Z(z[62])3832Z(z[63])3833Z(z[64])3834Z(z[65])3835Z([3,'3ãæç±èç课ç¨å
±9é¨'])3836Z(z[62])3837Z(z[63])3838Z(z[64])3839Z(z[65])3840Z([3,'4ãåæ¥çå®æ
æä¿¡æ¯æ¶é'])3841Z(z[62])3842Z(z[63])3843Z(z[64])3844Z(z[65])3845Z([3,'5ãçµè¯è¯é³å¦åæ·±å
¥æ²é'])3846Z(z[62])3847Z(z[63])3848Z(z[64])3849Z(z[65])3850Z([3,'6ã导å¸å¢éå¼ä¼åæè¯ä¼°å¶å®å
·ä½æ¹æ¡'])3851Z(z[62])3852Z(z[63])3853Z(z[64])3854Z(z[65])3855Z([3,'7ãä¸è导å¸çç£æ导'])3856Z(z[62])3857Z(z[63])3858Z(z[64])3859Z(z[65])3860Z([3,'8ãå¦ååæ¶åé¦å¯¼å¸æ¹è¿æ¹æ¡'])3861Z(z[62])3862Z(z[63])3863Z(z[64])3864Z(z[65])3865Z([3,'9ãæ»ç»è¿åº¦ç»åºå»ºè®®'])3866Z(z[62])3867Z(z[63])3868Z(z[64])3869Z(z[65])3870Z([3,'10ãæ½åæå'])3871Z([[2,'=='],[[7],[3,'currentTab']],[1,3]])3872Z(z[61])3873Z(z[62])3874Z(z[63])3875Z(z[64])3876Z(z[65])3877Z(z[113])3878Z(z[62])3879Z(z[63])3880Z(z[64])3881Z(z[65])3882Z(z[118])3883Z(z[62])3884Z(z[63])3885Z(z[64])3886Z(z[65])3887Z(z[123])3888Z(z[62])3889Z(z[63])3890Z(z[64])3891Z(z[65])3892Z([3,'4ãæç±æ½åå©å§»ä¸å¯¹ä¸ç§ææ导ï¼1个æï¼'])3893Z([[2,'=='],[[7],[3,'currentTab']],[1,4]])3894Z(z[61])3895Z(z[62])3896Z(z[63])3897Z(z[64])3898Z(z[65])3899Z(z[113])3900Z(z[62])3901Z(z[63])3902Z(z[64])3903Z(z[65])3904Z(z[118])3905Z(z[62])3906Z(z[63])3907Z(z[64])3908Z(z[65])3909Z(z[123])3910Z(z[62])3911Z(z[63])3912Z(z[64])3913Z(z[65])3914Z([3,'4ãæç±æ½åå©å§»ä¸å¯¹ä¸ç§ææ导ï¼3个æï¼'])3915Z([[2,'=='],[[7],[3,'currentTab']],[1,5]])3916Z(z[61])3917Z(z[62])3918Z(z[63])3919Z(z[64])3920Z(z[65])3921Z(z[113])3922Z(z[62])3923Z(z[63])3924Z(z[64])3925Z(z[65])3926Z(z[118])3927Z(z[62])3928Z(z[63])3929Z(z[64])3930Z(z[65])3931Z(z[123])3932Z(z[62])3933Z(z[63])3934Z(z[64])3935Z(z[65])3936Z([3,'4ãæç±æ½åå©å§»ä¸å¯¹ä¸ç§ææ导ï¼1å¹´ï¼'])3937Z([[2,'=='],[[7],[3,'currentTab']],[1,6]])3938Z(z[61])3939Z(z[62])3940Z(z[63])3941Z(z[64])3942Z(z[65])3943Z(z[113])3944Z(z[62])3945Z(z[63])3946Z(z[64])3947Z(z[65])3948Z(z[118])3949Z(z[62])3950Z(z[63])3951Z(z[64])3952Z(z[65])3953Z(z[123])3954Z(z[62])3955Z(z[63])3956Z(z[64])3957Z(z[65])3958Z([3,'4ãæç±æ½åå©å§»ä¸å¯¹ä¸ç§ææ导ï¼ç»èº«ï¼'])3959Z(z[62])3960Z(z[63])3961Z(z[64])3962Z(z[65])3963Z([3,'5ãèçä¼åä¸å±æå¡'])3964})(__WXML_GLOBAL__.ops_cached.$gwx_70);return __WXML_GLOBAL__.ops_cached.$gwx_703965}3966function gz$gwx_71(){3967if( __WXML_GLOBAL__.ops_cached.$gwx_71)return __WXML_GLOBAL__.ops_cached.$gwx_713968__WXML_GLOBAL__.ops_cached.$gwx_71=[];3969(function(z){var a=11;function Z(ops){z.push(ops)}3970Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])3971Z([3,'b1ae9730'])3972})(__WXML_GLOBAL__.ops_cached.$gwx_71);return __WXML_GLOBAL__.ops_cached.$gwx_713973}3974function gz$gwx_72(){3975if( __WXML_GLOBAL__.ops_cached.$gwx_72)return __WXML_GLOBAL__.ops_cached.$gwx_723976__WXML_GLOBAL__.ops_cached.$gwx_72=[];3977(function(z){var a=11;function Z(ops){z.push(ops)}3978Z([3,'7b552e37'])3979Z([3,'_view M7b552e37 weixin'])3980Z([[2,'<'],[[7],[3,'vipdengji']],[1,1]])3981Z([3,'_view M7b552e37 tequan'])3982Z([3,'æ¨å½å为éæ£å¼ä¼å'])3983Z([[2,'>'],[[7],[3,'vipdengji']],[1,0]])3984Z([3,'handleProxy'])3985Z([3,'_image M7b552e37 image_box'])3986Z([[7],[3,'$k']])3987Z([1,'7b552e37-0'])3988Z([3,'scaleToFill'])3989Z([[6],[[7],[3,'images']],[[7],[3,'vipdengji']]])3990Z(z[5])3991Z([3,'_view M7b552e37 tequan1'])3992Z([3,'æ¨çä¼åç¹æï¼æ«ç æ·»å 导å¸å¾®ä¿¡ï¼å
费让ä»ææ¨æè¿çç交æµç¾¤ï¼æ·»å 请å¤æ³¨âæç±èçâ'])3993Z([[2,'<'],[[7],[3,'vipdengji']],[1,6]])3994Z([3,'_view M7b552e37'])3995Z([3,'_view M7b552e37 kaitongtext'])3996Z([3,'ç¹å»å级ï¼è§£éæ´å¤ä¼åä¸å±æå¡ï¼ä¸ºæ¨æä¾æ´å¤æç±è½å~'])3997Z([3,'_navigator M7b552e37 vip'])3998Z([3,'/pages/vip'])3999Z([3,'å级ä¼å'])4000Z(z[3])4001Z([3,'æç±èçå®æ¹å
¬ä¼å·'])4002Z(z[6])4003Z([3,'_image M7b552e37 image'])4004Z(z[8])4005Z([1,'7b552e37-1'])4006Z(z[10])4007Z([[7],[3,'gongzhonghao']])4008})(__WXML_GLOBAL__.ops_cached.$gwx_72);return __WXML_GLOBAL__.ops_cached.$gwx_724009}4010function gz$gwx_73(){4011if( __WXML_GLOBAL__.ops_cached.$gwx_73)return __WXML_GLOBAL__.ops_cached.$gwx_734012__WXML_GLOBAL__.ops_cached.$gwx_73=[];4013(function(z){var a=11;function Z(ops){z.push(ops)}4014Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])4015Z([3,'7b552e37'])4016})(__WXML_GLOBAL__.ops_cached.$gwx_73);return __WXML_GLOBAL__.ops_cached.$gwx_734017}4018function gz$gwx_74(){4019if( __WXML_GLOBAL__.ops_cached.$gwx_74)return __WXML_GLOBAL__.ops_cached.$gwx_744020__WXML_GLOBAL__.ops_cached.$gwx_74=[];4021(function(z){var a=11;function Z(ops){z.push(ops)}4022Z([3,'7fd98568'])4023Z([3,'_view M7fd98568 wenda'])4024Z([3,'_view M7fd98568 title'])4025Z([a,[[6],[[7],[3,'wenda']],[3,'title']]])4026Z([3,'_view M7fd98568'])4027Z([[6],[[7],[3,'wenda']],[3,'content']])4028Z([3,'_view M7fd98568 dikuang'])4029Z([3,'_view M7fd98568 shoucangkuang'])4030Z([[7],[3,'dianzan']])4031Z([3,'handleProxy'])4032Z([3,'_image M7fd98568 shoucang'])4033Z([[7],[3,'$k']])4034Z([1,'7fd98568-1'])4035Z([3,'https://www.lianaizhuli.com/yidianzan.png'])4036Z(z[9])4037Z(z[10])4038Z(z[11])4039Z([1,'7fd98568-0'])4040Z([3,'https://www.lianaizhuli.com/weidianzan.png'])4041Z(z[4])4042Z([a,[[6],[[7],[3,'wenda']],[3,'dianzan']]])4043Z(z[7])4044Z([[7],[3,'shoucang']])4045Z(z[9])4046Z(z[10])4047Z(z[11])4048Z([1,'7fd98568-3'])4049Z([3,'https://www.lianaizhuli.com/yishoucang.png'])4050Z(z[9])4051Z(z[10])4052Z(z[11])4053Z([1,'7fd98568-2'])4054Z([3,'https://www.lianaizhuli.com/weishoucang.png'])4055Z(z[4])4056Z([a,[[6],[[7],[3,'wenda']],[3,'shoucang']]])4057})(__WXML_GLOBAL__.ops_cached.$gwx_74);return __WXML_GLOBAL__.ops_cached.$gwx_744058}4059function gz$gwx_75(){4060if( __WXML_GLOBAL__.ops_cached.$gwx_75)return __WXML_GLOBAL__.ops_cached.$gwx_754061__WXML_GLOBAL__.ops_cached.$gwx_75=[];4062(function(z){var a=11;function Z(ops){z.push(ops)}4063Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])4064Z([3,'7fd98568'])4065})(__WXML_GLOBAL__.ops_cached.$gwx_75);return __WXML_GLOBAL__.ops_cached.$gwx_754066}4067function gz$gwx_76(){4068if( __WXML_GLOBAL__.ops_cached.$gwx_76)return __WXML_GLOBAL__.ops_cached.$gwx_764069__WXML_GLOBAL__.ops_cached.$gwx_76=[];4070(function(z){var a=11;function Z(ops){z.push(ops)}4071Z([3,'437b4206'])4072Z([3,'_view M437b4206 wendalist'])4073Z([3,'_scroll-view M437b4206 tab-h'])4074Z([[7],[3,'scrollLeft']])4075Z([3,'true'])4076Z([3,'index'])4077Z([3,'item'])4078Z([[6],[[7],[3,'inputdata']],[3,'list']])4079Z(z[5])4080Z([3,'handleProxy'])4081Z([a,[3,'_view M437b4206 '],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[[7],[3,'index']]],[1,'tab-itemactive'],[1,'tab-item']]])4082Z([[7],[3,'$k']])4083Z([[2,'+'],[1,'437b4206-0-'],[[7],[3,'index']]])4084Z([[7],[3,'index']])4085Z([a,[[6],[[7],[3,'item']],[3,'category_name']]])4086Z(z[9])4087Z(z[9])4088Z([3,'_view M437b4206 jiange'])4089Z(z[11])4090Z([1,'437b4206-2'])4091Z(z[5])4092Z(z[6])4093Z([[6],[[7],[3,'WendaList']],[[7],[3,'currentTab']]])4094Z(z[5])4095Z([3,'_view M437b4206'])4096Z(z[13])4097Z(z[9])4098Z([3,'_view M437b4206 wenzhang'])4099Z(z[11])4100Z([[2,'+'],[1,'437b4206-1-'],[[7],[3,'index']]])4101Z([3,'_view M437b4206 kuai'])4102Z([3,'_view M437b4206 textkuang'])4103Z([3,'_text M437b4206 title'])4104Z(z[4])4105Z([a,[[6],[[7],[3,'item']],[3,'title']]])4106Z([3,'_view M437b4206 laiyuan'])4107Z([a,[[6],[[7],[3,'item']],[3,'count']],[3,'次é
读']])4108Z([3,'_image M437b4206 image'])4109Z([3,'false'])4110Z([3,'scaleToFill'])4111Z([[6],[[7],[3,'item']],[3,'image']])4112Z([[2,'!'],[[6],[[7],[3,'isend']],[[7],[3,'currentTab']]]])4113Z([3,'_view M437b4206 textend'])4114Z([3,'å è½½ä¸......'])4115Z([[6],[[7],[3,'isend']],[[7],[3,'currentTab']]])4116Z(z[42])4117Z([3,'æç±è±åä¸æç±èç'])4118})(__WXML_GLOBAL__.ops_cached.$gwx_76);return __WXML_GLOBAL__.ops_cached.$gwx_764119}4120function gz$gwx_77(){4121if( __WXML_GLOBAL__.ops_cached.$gwx_77)return __WXML_GLOBAL__.ops_cached.$gwx_774122__WXML_GLOBAL__.ops_cached.$gwx_77=[];4123(function(z){var a=11;function Z(ops){z.push(ops)}4124Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])4125Z([3,'437b4206'])4126})(__WXML_GLOBAL__.ops_cached.$gwx_77);return __WXML_GLOBAL__.ops_cached.$gwx_774127}4128function gz$gwx_78(){4129if( __WXML_GLOBAL__.ops_cached.$gwx_78)return __WXML_GLOBAL__.ops_cached.$gwx_784130__WXML_GLOBAL__.ops_cached.$gwx_78=[];4131(function(z){var a=11;function Z(ops){z.push(ops)}4132Z([3,'41c8f51a'])4133Z([3,'_view M41c8f51a xingxiangjianshe'])4134Z([3,'_text M41c8f51a title'])4135Z([3,'true'])4136Z([a,[[6],[[7],[3,'xingxiangjianshe']],[3,'title']]])4137Z([3,'_view M41c8f51a'])4138Z([[6],[[7],[3,'xingxiangjianshe']],[3,'content']])4139Z([3,'_view M41c8f51a dikuang'])4140Z([3,'_view M41c8f51a shoucangkuang'])4141Z([[7],[3,'dianzan']])4142Z([3,'handleProxy'])4143Z([3,'_image M41c8f51a shoucang'])4144Z([[7],[3,'$k']])4145Z([1,'41c8f51a-1'])4146Z([3,'https://www.lianaizhuli.com/yidianzan.png'])4147Z(z[10])4148Z(z[11])4149Z(z[12])4150Z([1,'41c8f51a-0'])4151Z([3,'https://www.lianaizhuli.com/weidianzan.png'])4152Z(z[5])4153Z([a,[[6],[[7],[3,'xingxiangjianshe']],[3,'dianzan']]])4154Z(z[8])4155Z([[7],[3,'shoucang']])4156Z(z[10])4157Z(z[11])4158Z(z[12])4159Z([1,'41c8f51a-3'])4160Z([3,'https://www.lianaizhuli.com/yishoucang.png'])4161Z(z[10])4162Z(z[11])4163Z(z[12])4164Z([1,'41c8f51a-2'])4165Z([3,'https://www.lianaizhuli.com/weishoucang.png'])4166Z(z[5])4167Z([a,[[6],[[7],[3,'xingxiangjianshe']],[3,'shoucang']]])4168})(__WXML_GLOBAL__.ops_cached.$gwx_78);return __WXML_GLOBAL__.ops_cached.$gwx_784169}4170function gz$gwx_79(){4171if( __WXML_GLOBAL__.ops_cached.$gwx_79)return __WXML_GLOBAL__.ops_cached.$gwx_794172__WXML_GLOBAL__.ops_cached.$gwx_79=[];4173(function(z){var a=11;function Z(ops){z.push(ops)}4174Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])4175Z([3,'41c8f51a'])4176})(__WXML_GLOBAL__.ops_cached.$gwx_79);return __WXML_GLOBAL__.ops_cached.$gwx_794177}4178function gz$gwx_80(){4179if( __WXML_GLOBAL__.ops_cached.$gwx_80)return __WXML_GLOBAL__.ops_cached.$gwx_804180__WXML_GLOBAL__.ops_cached.$gwx_80=[];4181(function(z){var a=11;function Z(ops){z.push(ops)}4182Z([3,'c830ee90'])4183Z([3,'_view Mc830ee90 xingxiangjianshelist'])4184Z([3,'index'])4185Z([3,'item'])4186Z([[7],[3,'xingxiangjiansheList']])4187Z(z[2])4188Z([3,'_view Mc830ee90'])4189Z([[7],[3,'index']])4190Z([3,'handleProxy'])4191Z([3,'_view Mc830ee90 wenzhang'])4192Z([[7],[3,'$k']])4193Z([[2,'+'],[1,'c830ee90-0-'],[[7],[3,'index']]])4194Z([3,'_view Mc830ee90 kuai'])4195Z([3,'_view Mc830ee90 textkuang'])4196Z([3,'_text Mc830ee90 title'])4197Z([3,'true'])4198Z([a,[[6],[[7],[3,'item']],[3,'title']]])4199Z([3,'_view Mc830ee90 laiyuan'])4200Z([a,[[6],[[7],[3,'item']],[3,'count']],[3,'次é
读']])4201Z([3,'_image Mc830ee90 image'])4202Z([3,'false'])4203Z([3,'scaleToFill'])4204Z([[6],[[7],[3,'item']],[3,'image']])4205Z([[2,'!'],[[7],[3,'isend']]])4206Z([3,'_view Mc830ee90 textend'])4207Z([3,'å è½½ä¸......'])4208Z([[7],[3,'isend']])4209Z(z[24])4210Z([3,'æç±è±åä¸æç±èç'])4211})(__WXML_GLOBAL__.ops_cached.$gwx_80);return __WXML_GLOBAL__.ops_cached.$gwx_804212}4213function gz$gwx_81(){4214if( __WXML_GLOBAL__.ops_cached.$gwx_81)return __WXML_GLOBAL__.ops_cached.$gwx_814215__WXML_GLOBAL__.ops_cached.$gwx_81=[];4216(function(z){var a=11;function Z(ops){z.push(ops)}4217Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])4218Z([3,'c830ee90'])4219})(__WXML_GLOBAL__.ops_cached.$gwx_81);return __WXML_GLOBAL__.ops_cached.$gwx_814220}4221function gz$gwx_82(){4222if( __WXML_GLOBAL__.ops_cached.$gwx_82)return __WXML_GLOBAL__.ops_cached.$gwx_824223__WXML_GLOBAL__.ops_cached.$gwx_82=[];4224(function(z){var a=11;function Z(ops){z.push(ops)}4225Z([3,'25a024cd'])4226Z([3,'_view M25a024cd xinliceshi'])4227Z([[2,'=='],[[7],[3,'isceshi']],[1,0]])4228Z([3,'_view M25a024cd shouxian'])4229Z([3,'_view M25a024cd title'])4230Z([a,[[6],[[7],[3,'xinliceshi']],[3,'title']]])4231Z([3,'_view M25a024cd image'])4232Z([3,'_view M25a024cd'])4233Z([[6],[[7],[3,'xinliceshi']],[3,'image']])4234Z([3,'_view M25a024cd text'])4235Z([a,[[6],[[7],[3,'xinliceshi']],[3,'shortDescribe']]])4236Z([3,'handleProxy'])4237Z([3,'_view M25a024cd kaishiceshi'])4238Z([[7],[3,'$k']])4239Z([1,'25a024cd-0'])4240Z([3,'å¼å§æµè¯'])4241Z([[2,'=='],[[7],[3,'isceshi']],[1,1]])4242Z(z[4])4243Z([a,z[5][1]])4244Z(z[16])4245Z([3,'_view M25a024cd timu'])4246Z([3,'_view M25a024cd timutitle'])4247Z([a,[[2,'+'],[[6],[[7],[3,'timu']],[3,'index']],[1,1]],[3,'ã '],[[6],[[7],[3,'timu']],[3,'title']]])4248Z([3,'index'])4249Z([3,'item'])4250Z([[6],[[7],[3,'timu']],[3,'options']])4251Z(z[23])4252Z(z[7])4253Z([[7],[3,'index']])4254Z(z[11])4255Z([3,'_view M25a024cd zixiang'])4256Z(z[13])4257Z([[2,'+'],[1,'25a024cd-1-'],[[7],[3,'index']]])4258Z([3,'_view M25a024cd xuanxiang'])4259Z([a,[[6],[[7],[3,'item']],[3,'title']]])4260Z([[2,'=='],[[6],[[7],[3,'timu']],[3,'xuanze']],[[7],[3,'index']]])4261Z([3,'_view M25a024cd xuanze1'])4262Z([3,'_view M25a024cd xuanze0'])4263Z([3,'_view M25a024cd tijiaokuang'])4264Z([[6],[[7],[3,'xuanze']],[3,'length']])4265Z(z[11])4266Z([3,'_view M25a024cd shangyiti'])4267Z(z[13])4268Z([1,'25a024cd-2'])4269Z([3,'ä¸ä¸é¢'])4270Z([[7],[3,'tijiao']])4271Z(z[11])4272Z([3,'_view M25a024cd tijiao'])4273Z(z[13])4274Z([1,'25a024cd-3'])4275Z([3,'æ交'])4276Z(z[16])4277Z([3,'_view M25a024cd wanchenglv'])4278Z([a,z[22][1],[3,'/'],[[6],[[6],[[7],[3,'xinliceshi']],[3,'questions']],[3,'length']]])4279Z([[2,'=='],[[7],[3,'isceshi']],[1,2]])4280Z(z[1])4281Z(z[4])4282Z([a,z[5][1]])4283Z(z[6])4284Z(z[7])4285Z(z[8])4286Z([3,'_view M25a024cd bigtext'])4287Z([a,[[6],[[6],[[7],[3,'ceshidaan']],[3,'result']],[3,'title']]])4288Z(z[9])4289Z([a,[[6],[[6],[[7],[3,'ceshidaan']],[3,'result']],[3,'content']]])4290Z(z[11])4291Z(z[12])4292Z(z[13])4293Z([1,'25a024cd-4'])4294Z([3,'åæµä¸æ¬¡'])4295Z([3,'_view M25a024cd dikuang'])4296Z([3,'_view M25a024cd shoucangkuang'])4297Z([[7],[3,'dianzan']])4298Z(z[11])4299Z([3,'_image M25a024cd shoucang'])4300Z(z[13])4301Z([1,'25a024cd-6'])4302Z([3,'https://www.lianaizhuli.com/yidianzan.png'])4303Z(z[11])4304Z(z[74])4305Z(z[13])4306Z([1,'25a024cd-5'])4307Z([3,'https://www.lianaizhuli.com/weidianzan.png'])4308Z(z[7])4309Z([a,[[6],[[7],[3,'xinliceshi']],[3,'dianzan']]])4310Z(z[71])4311Z([[7],[3,'shoucang']])4312Z(z[11])4313Z(z[74])4314Z(z[13])4315Z([1,'25a024cd-8'])4316Z([3,'https://www.lianaizhuli.com/yishoucang.png'])4317Z(z[11])4318Z(z[74])4319Z(z[13])4320Z([1,'25a024cd-7'])4321Z([3,'https://www.lianaizhuli.com/weishoucang.png'])4322Z(z[7])4323Z([a,[[6],[[7],[3,'xinliceshi']],[3,'shoucang']]])4324})(__WXML_GLOBAL__.ops_cached.$gwx_82);return __WXML_GLOBAL__.ops_cached.$gwx_824325}4326function gz$gwx_83(){4327if( __WXML_GLOBAL__.ops_cached.$gwx_83)return __WXML_GLOBAL__.ops_cached.$gwx_834328__WXML_GLOBAL__.ops_cached.$gwx_83=[];4329(function(z){var a=11;function Z(ops){z.push(ops)}4330Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])4331Z([3,'25a024cd'])4332})(__WXML_GLOBAL__.ops_cached.$gwx_83);return __WXML_GLOBAL__.ops_cached.$gwx_834333}4334function gz$gwx_84(){4335if( __WXML_GLOBAL__.ops_cached.$gwx_84)return __WXML_GLOBAL__.ops_cached.$gwx_844336__WXML_GLOBAL__.ops_cached.$gwx_84=[];4337(function(z){var a=11;function Z(ops){z.push(ops)}4338Z([3,'5c69a6eb'])4339Z([3,'_view M5c69a6eb xinliceshilist'])4340Z([3,'_scroll-view M5c69a6eb tab-h'])4341Z([3,'true'])4342Z([3,'index'])4343Z([3,'item'])4344Z([[7],[3,'nametab']])4345Z(z[4])4346Z([3,'handleProxy'])4347Z([a,[3,'_view M5c69a6eb '],[[2,'?:'],[[2,'=='],[[7],[3,'currentTab']],[[7],[3,'index']]],[1,'tab-itemactive'],[1,'tab-item']]])4348Z([[7],[3,'$k']])4349Z([[2,'+'],[1,'5c69a6eb-0-'],[[7],[3,'index']]])4350Z([[7],[3,'index']])4351Z([a,[[7],[3,'item']]])4352Z(z[8])4353Z(z[8])4354Z([3,'_view M5c69a6eb jiange'])4355Z(z[10])4356Z([1,'5c69a6eb-2'])4357Z(z[4])4358Z(z[5])4359Z([[6],[[7],[3,'XinliceshiList']],[[7],[3,'currentTab']]])4360Z(z[4])4361Z([3,'_view M5c69a6eb'])4362Z(z[12])4363Z(z[8])4364Z([3,'_view M5c69a6eb wenzhang'])4365Z(z[10])4366Z([[2,'+'],[1,'5c69a6eb-1-'],[[7],[3,'index']]])4367Z([3,'_view M5c69a6eb kuai'])4368Z([3,'_view M5c69a6eb textkuang'])4369Z([3,'_text M5c69a6eb title'])4370Z(z[3])4371Z([a,[[6],[[7],[3,'item']],[3,'title']]])4372Z([3,'_view M5c69a6eb laiyuan'])4373Z([a,[[6],[[7],[3,'item']],[3,'count']],[3,'次已æµ']])4374Z([3,'_image M5c69a6eb image'])4375Z([3,'false'])4376Z([3,'scaleToFill'])4377Z([[6],[[7],[3,'item']],[3,'image']])4378Z([[2,'!'],[[6],[[7],[3,'isend']],[[7],[3,'currentTab']]]])4379Z([3,'_view M5c69a6eb textend'])4380Z([3,'å è½½ä¸......'])4381Z([[6],[[7],[3,'isend']],[[7],[3,'currentTab']]])4382Z(z[41])4383Z([3,'æç±è±åä¸æç±èç'])4384})(__WXML_GLOBAL__.ops_cached.$gwx_84);return __WXML_GLOBAL__.ops_cached.$gwx_844385}4386function gz$gwx_85(){4387if( __WXML_GLOBAL__.ops_cached.$gwx_85)return __WXML_GLOBAL__.ops_cached.$gwx_854388__WXML_GLOBAL__.ops_cached.$gwx_85=[];4389(function(z){var a=11;function Z(ops){z.push(ops)}4390Z([[9],[[10],[[6],[[7],[3,'$root']],[1,'0']]],[[8],'$root',[[7],[3,'$root']]]])4391Z([3,'5c69a6eb'])4392})(__WXML_GLOBAL__.ops_cached.$gwx_85);return __WXML_GLOBAL__.ops_cached.$gwx_854393}4394__WXML_GLOBAL__.ops_set.$gwx=z;4395__WXML_GLOBAL__.ops_init.$gwx=true;4396var nv_require=function(){var nnm={};var nom={};return function(n){return function(){if(!nnm[n]) return undefined;try{if(!nom[n])nom[n]=nnm[n]();return nom[n];}catch(e){e.message=e.message.replace(/nv_/g,'');var tmp = e.stack.substring(0,e.stack.lastIndexOf(n));e.stack = tmp.substring(0,tmp.lastIndexOf('\n'));e.stack = e.stack.replace(/\snv_/g,' ');e.stack = $gstack(e.stack);e.stack += '\n at ' + n.substring(2);console.error(e);}4397}}}()4398var x=['./common/slots.wxml','/components/tab.vue.wxml','/components/placeholder.vue.wxml','/components/huashu.vue.wxml','/components/biaoqing.vue.wxml','/components/baike.vue.wxml','./components/baike.vue.wxml','./components/baike.wxml','./baike.vue.wxml','./components/biaoqing.vue.wxml','./components/biaoqing.wxml','./biaoqing.vue.wxml','./components/huashu.vue.wxml','./components/huashu.wxml','./huashu.vue.wxml','./components/loading.vue.wxml','./components/loading.wxml','./loading.vue.wxml','./components/placeholder.vue.wxml','./components/placeholder.wxml','./placeholder.vue.wxml','./components/tab.vue.wxml','./components/tab.wxml','./tab.vue.wxml','./pages/adding.vue.wxml','./pages/adding.wxml','./adding.vue.wxml','./pages/baike.vue.wxml','./pages/baike.wxml','./pages/baikelist.vue.wxml','./pages/baikelist.wxml','./baikelist.vue.wxml','./pages/dingdan.vue.wxml','./pages/dingdan.wxml','./dingdan.vue.wxml','./pages/fenxiao.vue.wxml','./pages/fenxiao.wxml','./fenxiao.vue.wxml','./pages/home.vue.wxml','./pages/home.wxml','./home.vue.wxml','./pages/info.vue.wxml','./pages/info.wxml','./info.vue.wxml','./pages/jifen.vue.wxml','./pages/jifen.wxml','./jifen.vue.wxml','./pages/kecheng.vue.wxml','./pages/kecheng.wxml','./kecheng.vue.wxml','./pages/kechenglist.vue.wxml','./pages/kechenglist.wxml','./kechenglist.vue.wxml','./pages/kechengneirong.vue.wxml','./pages/kechengneirong.wxml','./kechengneirong.vue.wxml','./pages/liaomeishizhan.vue.wxml','./pages/liaomeishizhan.wxml','./liaomeishizhan.vue.wxml','./pages/liaomeishizhanlist.vue.wxml','./pages/liaomeishizhanlist.wxml','./liaomeishizhanlist.vue.wxml','./pages/liaomeitaolu.vue.wxml','./pages/liaomeitaolu.wxml','./liaomeitaolu.vue.wxml','./pages/liaomeitaolulist.vue.wxml','./pages/liaomeitaolulist.wxml','./liaomeitaolulist.vue.wxml','./pages/phonenumber.vue.wxml','./pages/phonenumber.wxml','./phonenumber.vue.wxml','./pages/qingganbaike.vue.wxml','./pages/qingganbaike.wxml','./qingganbaike.vue.wxml','./pages/searchpage.vue.wxml','./pages/searchpage.wxml','./searchpage.vue.wxml','./pages/shoucang.vue.wxml','./pages/shoucang.wxml','./shoucang.vue.wxml','./pages/shouquan.vue.wxml','./pages/shouquan.wxml','./shouquan.vue.wxml','./pages/sijiao.vue.wxml','./pages/sijiao.wxml','./sijiao.vue.wxml','./pages/sijiaolist.vue.wxml','./pages/sijiaolist.wxml','./sijiaolist.vue.wxml','./pages/tequan.vue.wxml','./pages/tequan.wxml','./tequan.vue.wxml','./pages/tuweiqinghua.vue.wxml','./pages/tuweiqinghua.wxml','./tuweiqinghua.vue.wxml','./pages/tuweiqinghualist.vue.wxml','./pages/tuweiqinghualist.wxml','./tuweiqinghualist.vue.wxml','./pages/viewganhuo.vue.wxml','./pages/viewganhuo.wxml','./viewganhuo.vue.wxml','./pages/viewhtml.vue.wxml','./pages/viewhtml.wxml','./viewhtml.vue.wxml','./pages/viewimage.vue.wxml','./pages/viewimage.wxml','./viewimage.vue.wxml','./pages/vip.vue.wxml','./pages/vip.wxml','./vip.vue.wxml','./pages/weixin.vue.wxml','./pages/weixin.wxml','./weixin.vue.wxml','./pages/wenda.vue.wxml','./pages/wenda.wxml','./wenda.vue.wxml','./pages/wendalist.vue.wxml','./pages/wendalist.wxml','./wendalist.vue.wxml','./pages/xingxiangjianshe.vue.wxml','./pages/xingxiangjianshe.wxml','./xingxiangjianshe.vue.wxml','./pages/xingxiangjianshelist.vue.wxml','./pages/xingxiangjianshelist.wxml','./xingxiangjianshelist.vue.wxml','./pages/xinliceshi.vue.wxml','./pages/xinliceshi.wxml','./xinliceshi.vue.wxml','./pages/xinliceshilist.vue.wxml','./pages/xinliceshilist.wxml','./xinliceshilist.vue.wxml'];d_[x[0]]={}4399var m0=function(e,s,r,gg){4400var z=gz$gwx_1()4401var oB=e_[x[0]].i4402_ai(oB,x[1],e_,x[0],1,1)4403_ai(oB,x[2],e_,x[0],2,2)4404_ai(oB,x[3],e_,x[0],3,2)4405_ai(oB,x[4],e_,x[0],4,2)4406_ai(oB,x[5],e_,x[0],5,2)4407oB.pop()4408oB.pop()4409oB.pop()4410oB.pop()4411oB.pop()4412return r4413}4414e_[x[0]]={f:m0,j:[],i:[],ti:[x[1],x[2],x[3],x[4],x[5]],ic:[]}4415d_[x[6]]={}4416d_[x[6]]["240d2e56"]=function(e,s,r,gg){4417var z=gz$gwx_2()4418var b=x[6]+':240d2e56'4419r.wxVkey=b4420gg.f=$gdc(f_["./components/baike.vue.wxml"],"",1)4421if(p_[b]){_wl(b,x[6]);return}4422p_[b]=true4423try{4424var oB=_n('view')4425_rz(z,oB,'class',1,e,s,gg)4426var xC=_v()4427_(oB,xC)4428var oD=function(cF,fE,hG,gg){4429var cI=_mz(z,'view',['class',6,'key',1],[],cF,fE,gg)4430var oJ=_mz(z,'view',['bindtap',8,'class',1,'data-comkey',2,'data-eventid',3],[],cF,fE,gg)4431var lK=_n('view')4432_rz(z,lK,'class',12,cF,fE,gg)4433var aL=_n('view')4434_rz(z,aL,'class',13,cF,fE,gg)4435var tM=_mz(z,'text',['class',14,'selectable',1],[],cF,fE,gg)4436var eN=_oz(z,16,cF,fE,gg)4437_(tM,eN)4438_(aL,tM)4439var bO=_n('view')4440_rz(z,bO,'class',17,cF,fE,gg)4441var oP=_oz(z,18,cF,fE,gg)4442_(bO,oP)4443_(aL,bO)4444_(lK,aL)4445var xQ=_mz(z,'image',['class',19,'lazyLoad',1,'mode',2,'src',3],[],cF,fE,gg)4446_(lK,xQ)4447_(oJ,lK)4448_(cI,oJ)4449_(hG,cI)4450return hG4451}4452xC.wxXCkey=24453_2z(z,4,oD,e,s,gg,xC,'item','index','index')4454_(r,oB)4455}catch(err){4456p_[b]=false4457throw err4458}4459p_[b]=false4460return r4461}4462var m1=function(e,s,r,gg){4463var z=gz$gwx_2()4464return r4465}4466e_[x[6]]={f:m1,j:[],i:[],ti:[],ic:[]}4467d_[x[7]]={}4468var m2=function(e,s,r,gg){4469var z=gz$gwx_3()4470var fE=e_[x[7]].i4471_ai(fE,x[8],e_,x[7],1,1)4472var cF=_v()4473_(r,cF)4474var hG=_oz(z,1,e,s,gg)4475var oH=_gd(x[7],hG,e_,d_)4476if(oH){4477var cI=_1z(z,0,e,s,gg) || {}4478var cur_globalf=gg.f4479cF.wxXCkey=34480oH(cI,cI,cF,gg)4481gg.f=cur_globalf4482}4483else _w(hG,x[7],2,18)4484fE.pop()4485return r4486}4487e_[x[7]]={f:m2,j:[],i:[],ti:[x[8]],ic:[]}4488d_[x[9]]={}4489d_[x[9]]["264e2b16"]=function(e,s,r,gg){4490var z=gz$gwx_4()4491var b=x[9]+':264e2b16'4492r.wxVkey=b4493gg.f=$gdc(f_["./components/biaoqing.vue.wxml"],"",1)4494if(p_[b]){_wl(b,x[9]);return}4495p_[b]=true4496try{4497var oB=_n('view')4498_rz(z,oB,'class',1,e,s,gg)4499var xC=_v()4500_(oB,xC)4501var oD=function(cF,fE,hG,gg){4502var cI=_mz(z,'view',['class',6,'key',1],[],cF,fE,gg)4503var oJ=_n('view')4504_rz(z,oJ,'class',8,cF,fE,gg)4505var lK=_mz(z,'image',['bindtap',9,'class',1,'data-comkey',2,'data-eventid',3,'mode',4,'src',5],[],cF,fE,gg)4506_(oJ,lK)4507_(cI,oJ)4508_(hG,cI)4509return hG4510}4511xC.wxXCkey=24512_2z(z,4,oD,e,s,gg,xC,'item','index','index')4513_(r,oB)4514}catch(err){4515p_[b]=false4516throw err4517}4518p_[b]=false4519return r4520}4521var m3=function(e,s,r,gg){4522var z=gz$gwx_4()4523return r4524}4525e_[x[9]]={f:m3,j:[],i:[],ti:[],ic:[]}4526d_[x[10]]={}4527var m4=function(e,s,r,gg){4528var z=gz$gwx_5()4529var aL=e_[x[10]].i4530_ai(aL,x[11],e_,x[10],1,1)4531var tM=_v()4532_(r,tM)4533var eN=_oz(z,1,e,s,gg)4534var bO=_gd(x[10],eN,e_,d_)4535if(bO){4536var oP=_1z(z,0,e,s,gg) || {}4537var cur_globalf=gg.f4538tM.wxXCkey=34539bO(oP,oP,tM,gg)4540gg.f=cur_globalf4541}4542else _w(eN,x[10],2,18)4543aL.pop()4544return r4545}4546e_[x[10]]={f:m4,j:[],i:[],ti:[x[11]],ic:[]}4547d_[x[12]]={}4548d_[x[12]]["46f1d10a"]=function(e,s,r,gg){4549var z=gz$gwx_6()4550var b=x[12]+':46f1d10a'4551r.wxVkey=b4552gg.f=$gdc(f_["./components/huashu.vue.wxml"],"",1)4553if(p_[b]){_wl(b,x[12]);return}4554p_[b]=true4555try{4556var oB=_n('view')4557_rz(z,oB,'class',1,e,s,gg)4558var xC=_v()4559_(oB,xC)4560var oD=function(cF,fE,hG,gg){4561var cI=_mz(z,'view',['class',6,'key',1],[],cF,fE,gg)4562var oJ=_n('view')4563_rz(z,oJ,'class',8,cF,fE,gg)4564var lK=_v()4565_(oJ,lK)4566var aL=function(eN,tM,bO,gg){4567var xQ=_mz(z,'view',['class',13,'key',1],[],eN,tM,gg)4568var oR=_v()4569_(xQ,oR)4570if(_oz(z,15,eN,tM,gg)){oR.wxVkey=14571var fS=_n('view')4572_rz(z,fS,'class',16,eN,tM,gg)4573var cT=_mz(z,'image',['class',17,'src',1],[],eN,tM,gg)4574_(fS,cT)4575var hU=_mz(z,'view',['bindtap',19,'class',1,'data-comkey',2,'data-eventid',3],[],eN,tM,gg)4576var oV=_mz(z,'text',['class',23,'selectable',1],[],eN,tM,gg)4577var cW=_oz(z,25,eN,tM,gg)4578_(oV,cW)4579_(hU,oV)4580_(fS,hU)4581_(oR,fS)4582}4583else{oR.wxVkey=24584var oX=_n('view')4585_rz(z,oX,'class',26,eN,tM,gg)4586var lY=_mz(z,'image',['class',27,'src',1],[],eN,tM,gg)4587_(oX,lY)4588var aZ=_mz(z,'view',['bindtap',29,'class',1,'data-comkey',2,'data-eventid',3],[],eN,tM,gg)4589var t1=_mz(z,'text',['class',33,'selectable',1],[],eN,tM,gg)4590var e2=_oz(z,35,eN,tM,gg)4591_(t1,e2)4592_(aZ,t1)4593_(oX,aZ)4594_(oR,oX)4595}4596oR.wxXCkey=14597_(bO,xQ)4598return bO4599}4600lK.wxXCkey=24601_2z(z,11,aL,cF,fE,gg,lK,'huashu','minindex','minindex')4602_(cI,oJ)4603_(hG,cI)4604return hG4605}4606xC.wxXCkey=24607_2z(z,4,oD,e,s,gg,xC,'item','index','index')4608_(r,oB)4609}catch(err){4610p_[b]=false4611throw err4612}4613p_[b]=false4614return r4615}4616var m5=function(e,s,r,gg){4617var z=gz$gwx_6()4618return r4619}4620e_[x[12]]={f:m5,j:[],i:[],ti:[],ic:[]}4621d_[x[13]]={}4622var m6=function(e,s,r,gg){4623var z=gz$gwx_7()4624var fS=e_[x[13]].i4625_ai(fS,x[14],e_,x[13],1,1)4626var cT=_v()4627_(r,cT)4628var hU=_oz(z,1,e,s,gg)4629var oV=_gd(x[13],hU,e_,d_)4630if(oV){4631var cW=_1z(z,0,e,s,gg) || {}4632var cur_globalf=gg.f4633cT.wxXCkey=34634oV(cW,cW,cT,gg)4635gg.f=cur_globalf4636}4637else _w(hU,x[13],2,18)4638fS.pop()4639return r4640}4641e_[x[13]]={f:m6,j:[],i:[],ti:[x[14]],ic:[]}4642d_[x[15]]={}4643d_[x[15]]["7db0e2ed"]=function(e,s,r,gg){4644var z=gz$gwx_8()4645var b=x[15]+':7db0e2ed'4646r.wxVkey=b4647gg.f=$gdc(f_["./components/loading.vue.wxml"],"",1)4648if(p_[b]){_wl(b,x[15]);return}4649p_[b]=true4650try{4651var oB=_v()4652_(r,oB)4653if(_oz(z,1,e,s,gg)){oB.wxVkey=14654var xC=_n('view')4655_rz(z,xC,'class',2,e,s,gg)4656var oD=_mz(z,'image',['class',3,'src',1],[],e,s,gg)4657_(xC,oD)4658_(oB,xC)4659}4660oB.wxXCkey=14661}catch(err){4662p_[b]=false4663throw err4664}4665p_[b]=false4666return r4667}4668var m7=function(e,s,r,gg){4669var z=gz$gwx_8()4670return r4671}4672e_[x[15]]={f:m7,j:[],i:[],ti:[],ic:[]}4673d_[x[16]]={}4674var m8=function(e,s,r,gg){4675var z=gz$gwx_9()4676var aZ=e_[x[16]].i4677_ai(aZ,x[17],e_,x[16],1,1)4678var t1=_v()4679_(r,t1)4680var e2=_oz(z,1,e,s,gg)4681var b3=_gd(x[16],e2,e_,d_)4682if(b3){4683var o4=_1z(z,0,e,s,gg) || {}4684var cur_globalf=gg.f4685t1.wxXCkey=34686b3(o4,o4,t1,gg)4687gg.f=cur_globalf4688}4689else _w(e2,x[16],2,18)4690aZ.pop()4691return r4692}4693e_[x[16]]={f:m8,j:[],i:[],ti:[x[17]],ic:[]}4694d_[x[18]]={}4695d_[x[18]]["55c372b8"]=function(e,s,r,gg){4696var z=gz$gwx_10()4697var b=x[18]+':55c372b8'4698r.wxVkey=b4699gg.f=$gdc(f_["./components/placeholder.vue.wxml"],"",1)4700if(p_[b]){_wl(b,x[18]);return}4701p_[b]=true4702try{4703var oB=_v()4704_(r,oB)4705if(_oz(z,1,e,s,gg)){oB.wxVkey=14706var xC=_n('view')4707_rz(z,xC,'class',2,e,s,gg)4708var oD=_mz(z,'image',['class',3,'src',1],[],e,s,gg)4709_(xC,oD)4710_(oB,xC)4711}4712oB.wxXCkey=14713}catch(err){4714p_[b]=false4715throw err4716}4717p_[b]=false4718return r4719}4720var m9=function(e,s,r,gg){4721var z=gz$gwx_10()4722return r4723}4724e_[x[18]]={f:m9,j:[],i:[],ti:[],ic:[]}4725d_[x[19]]={}4726var m10=function(e,s,r,gg){4727var z=gz$gwx_11()4728var f7=e_[x[19]].i4729_ai(f7,x[20],e_,x[19],1,1)4730var c8=_v()4731_(r,c8)4732var h9=_oz(z,1,e,s,gg)4733var o0=_gd(x[19],h9,e_,d_)4734if(o0){4735var cAB=_1z(z,0,e,s,gg) || {}4736var cur_globalf=gg.f4737c8.wxXCkey=34738o0(cAB,cAB,c8,gg)4739gg.f=cur_globalf4740}4741else _w(h9,x[19],2,18)4742f7.pop()4743return r4744}4745e_[x[19]]={f:m10,j:[],i:[],ti:[x[20]],ic:[]}4746d_[x[21]]={}4747d_[x[21]]["6e0041c6"]=function(e,s,r,gg){4748var z=gz$gwx_12()4749var b=x[21]+':6e0041c6'4750r.wxVkey=b4751gg.f=$gdc(f_["./components/tab.vue.wxml"],"",1)4752if(p_[b]){_wl(b,x[21]);return}4753p_[b]=true4754try{4755var oB=_n('view')4756_rz(z,oB,'class',1,e,s,gg)4757var xC=_v()4758_(oB,xC)4759var oD=function(cF,fE,hG,gg){4760var cI=_mz(z,'view',['bindtap',6,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],cF,fE,gg)4761var oJ=_oz(z,11,cF,fE,gg)4762_(cI,oJ)4763_(hG,cI)4764return hG4765}4766xC.wxXCkey=24767_2z(z,4,oD,e,s,gg,xC,'item','index','index')4768_(r,oB)4769}catch(err){4770p_[b]=false4771throw err4772}4773p_[b]=false4774return r4775}4776var m11=function(e,s,r,gg){4777var z=gz$gwx_12()4778return r4779}4780e_[x[21]]={f:m11,j:[],i:[],ti:[],ic:[]}4781d_[x[22]]={}4782var m12=function(e,s,r,gg){4783var z=gz$gwx_13()4784var aDB=e_[x[22]].i4785_ai(aDB,x[23],e_,x[22],1,1)4786var tEB=_v()4787_(r,tEB)4788var eFB=_oz(z,1,e,s,gg)4789var bGB=_gd(x[22],eFB,e_,d_)4790if(bGB){4791var oHB=_1z(z,0,e,s,gg) || {}4792var cur_globalf=gg.f4793tEB.wxXCkey=34794bGB(oHB,oHB,tEB,gg)4795gg.f=cur_globalf4796}4797else _w(eFB,x[22],2,18)4798aDB.pop()4799return r4800}4801e_[x[22]]={f:m12,j:[],i:[],ti:[x[23]],ic:[]}4802d_[x[24]]={}4803d_[x[24]]["55b9fb76"]=function(e,s,r,gg){4804var z=gz$gwx_14()4805var b=x[24]+':55b9fb76'4806r.wxVkey=b4807gg.f=$gdc(f_["./pages/adding.vue.wxml"],"",1)4808if(p_[b]){_wl(b,x[24]);return}4809p_[b]=true4810try{4811var oB=_n('view')4812_rz(z,oB,'class',1,e,s,gg)4813var xC=_n('view')4814_rz(z,xC,'class',2,e,s,gg)4815var oD=_oz(z,3,e,s,gg)4816_(xC,oD)4817_(oB,xC)4818var fE=_n('view')4819_rz(z,fE,'class',4,e,s,gg)4820var cF=_oz(z,5,e,s,gg)4821_(fE,cF)4822_(oB,fE)4823var hG=_n('view')4824_rz(z,hG,'class',6,e,s,gg)4825var oH=_oz(z,7,e,s,gg)4826_(hG,oH)4827_(oB,hG)4828var cI=_n('view')4829_rz(z,cI,'class',8,e,s,gg)4830var oJ=_oz(z,9,e,s,gg)4831_(cI,oJ)4832_(oB,cI)4833_(r,oB)4834}catch(err){4835p_[b]=false4836throw err4837}4838p_[b]=false4839return r4840}4841var m13=function(e,s,r,gg){4842var z=gz$gwx_14()4843return r4844}4845e_[x[24]]={f:m13,j:[],i:[],ti:[],ic:[]}4846d_[x[25]]={}4847var m14=function(e,s,r,gg){4848var z=gz$gwx_15()4849var fKB=e_[x[25]].i4850_ai(fKB,x[26],e_,x[25],1,1)4851var cLB=_v()4852_(r,cLB)4853var hMB=_oz(z,1,e,s,gg)4854var oNB=_gd(x[25],hMB,e_,d_)4855if(oNB){4856var cOB=_1z(z,0,e,s,gg) || {}4857var cur_globalf=gg.f4858cLB.wxXCkey=34859oNB(cOB,cOB,cLB,gg)4860gg.f=cur_globalf4861}4862else _w(hMB,x[25],2,18)4863fKB.pop()4864return r4865}4866e_[x[25]]={f:m14,j:[],i:[],ti:[x[26]],ic:[]}4867d_[x[27]]={}4868d_[x[27]]["7eafb46f"]=function(e,s,r,gg){4869var z=gz$gwx_16()4870var b=x[27]+':7eafb46f'4871r.wxVkey=b4872gg.f=$gdc(f_["./pages/baike.vue.wxml"],"",1)4873if(p_[b]){_wl(b,x[27]);return}4874p_[b]=true4875try{4876var oB=_n('view')4877_rz(z,oB,'class',1,e,s,gg)4878var xC=_mz(z,'rich-text',['class',2,'nodes',1],[],e,s,gg)4879_(oB,xC)4880var oD=_n('view')4881_rz(z,oD,'class',4,e,s,gg)4882var fE=_n('view')4883_rz(z,fE,'class',5,e,s,gg)4884var cF=_v()4885_(fE,cF)4886if(_oz(z,6,e,s,gg)){cF.wxVkey=14887var hG=_mz(z,'image',['bindtap',7,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)4888_(cF,hG)4889}4890else{cF.wxVkey=24891var oH=_mz(z,'image',['bindtap',12,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)4892_(cF,oH)4893}4894var cI=_n('view')4895_rz(z,cI,'class',17,e,s,gg)4896var oJ=_oz(z,18,e,s,gg)4897_(cI,oJ)4898_(fE,cI)4899cF.wxXCkey=14900_(oD,fE)4901var lK=_n('view')4902_rz(z,lK,'class',19,e,s,gg)4903var aL=_v()4904_(lK,aL)4905if(_oz(z,20,e,s,gg)){aL.wxVkey=14906var tM=_mz(z,'image',['bindtap',21,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)4907_(aL,tM)4908}4909else{aL.wxVkey=24910var eN=_mz(z,'image',['bindtap',26,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)4911_(aL,eN)4912}4913var bO=_n('view')4914_rz(z,bO,'class',31,e,s,gg)4915var oP=_oz(z,32,e,s,gg)4916_(bO,oP)4917_(lK,bO)4918aL.wxXCkey=14919_(oD,lK)4920_(oB,oD)4921_(r,oB)4922}catch(err){4923p_[b]=false4924throw err4925}4926p_[b]=false4927return r4928}4929var m15=function(e,s,r,gg){4930var z=gz$gwx_16()4931return r4932}4933e_[x[27]]={f:m15,j:[],i:[],ti:[],ic:[]}4934d_[x[28]]={}4935var m16=function(e,s,r,gg){4936var z=gz$gwx_17()4937var aRB=e_[x[28]].i4938_ai(aRB,x[8],e_,x[28],1,1)4939var tSB=_v()4940_(r,tSB)4941var eTB=_oz(z,1,e,s,gg)4942var bUB=_gd(x[28],eTB,e_,d_)4943if(bUB){4944var oVB=_1z(z,0,e,s,gg) || {}4945var cur_globalf=gg.f4946tSB.wxXCkey=34947bUB(oVB,oVB,tSB,gg)4948gg.f=cur_globalf4949}4950else _w(eTB,x[28],2,18)4951aRB.pop()4952return r4953}4954e_[x[28]]={f:m16,j:[],i:[],ti:[x[8]],ic:[]}4955d_[x[29]]={}4956d_[x[29]]["7e04958d"]=function(e,s,r,gg){4957var z=gz$gwx_18()4958var b=x[29]+':7e04958d'4959r.wxVkey=b4960gg.f=$gdc(f_["./pages/baikelist.vue.wxml"],"",1)4961if(p_[b]){_wl(b,x[29]);return}4962p_[b]=true4963try{4964var oB=_n('view')4965_rz(z,oB,'class',1,e,s,gg)4966var fE=_v()4967_(oB,fE)4968var cF=function(oH,hG,cI,gg){4969var lK=_mz(z,'view',['class',6,'key',1],[],oH,hG,gg)4970var aL=_mz(z,'view',['bindtap',8,'class',1,'data-comkey',2,'data-eventid',3],[],oH,hG,gg)4971var tM=_n('view')4972_rz(z,tM,'class',12,oH,hG,gg)4973var eN=_n('view')4974_rz(z,eN,'class',13,oH,hG,gg)4975var bO=_mz(z,'text',['class',14,'selectable',1],[],oH,hG,gg)4976var oP=_oz(z,16,oH,hG,gg)4977_(bO,oP)4978_(eN,bO)4979var xQ=_n('view')4980_rz(z,xQ,'class',17,oH,hG,gg)4981var oR=_oz(z,18,oH,hG,gg)4982_(xQ,oR)4983_(eN,xQ)4984_(tM,eN)4985var fS=_mz(z,'image',['class',19,'lazyLoad',1,'mode',2,'src',3],[],oH,hG,gg)4986_(tM,fS)4987_(aL,tM)4988_(lK,aL)4989_(cI,lK)4990return cI4991}4992fE.wxXCkey=24993_2z(z,4,cF,e,s,gg,fE,'item','index','index')4994var xC=_v()4995_(oB,xC)4996if(_oz(z,23,e,s,gg)){xC.wxVkey=14997var cT=_n('view')4998_rz(z,cT,'class',24,e,s,gg)4999var hU=_oz(z,25,e,s,gg)5000_(cT,hU)5001_(xC,cT)5002}5003var oD=_v()5004_(oB,oD)5005if(_oz(z,26,e,s,gg)){oD.wxVkey=15006var oV=_n('view')5007_rz(z,oV,'class',27,e,s,gg)5008var cW=_oz(z,28,e,s,gg)5009_(oV,cW)5010_(oD,oV)5011}5012xC.wxXCkey=15013oD.wxXCkey=15014_(r,oB)5015}catch(err){5016p_[b]=false5017throw err5018}5019p_[b]=false5020return r5021}5022var m17=function(e,s,r,gg){5023var z=gz$gwx_18()5024return r5025}5026e_[x[29]]={f:m17,j:[],i:[],ti:[],ic:[]}5027d_[x[30]]={}5028var m18=function(e,s,r,gg){5029var z=gz$gwx_19()5030var fYB=e_[x[30]].i5031_ai(fYB,x[31],e_,x[30],1,1)5032var cZB=_v()5033_(r,cZB)5034var h1B=_oz(z,1,e,s,gg)5035var o2B=_gd(x[30],h1B,e_,d_)5036if(o2B){5037var c3B=_1z(z,0,e,s,gg) || {}5038var cur_globalf=gg.f5039cZB.wxXCkey=35040o2B(c3B,c3B,cZB,gg)5041gg.f=cur_globalf5042}5043else _w(h1B,x[30],2,18)5044fYB.pop()5045return r5046}5047e_[x[30]]={f:m18,j:[],i:[],ti:[x[31]],ic:[]}5048d_[x[32]]={}5049d_[x[32]]["094c3c9e"]=function(e,s,r,gg){5050var z=gz$gwx_20()5051var b=x[32]+':094c3c9e'5052r.wxVkey=b5053gg.f=$gdc(f_["./pages/dingdan.vue.wxml"],"",1)5054if(p_[b]){_wl(b,x[32]);return}5055p_[b]=true5056try{5057var oB=_n('view')5058_rz(z,oB,'class',1,e,s,gg)5059var fE=_n('view')5060_rz(z,fE,'class',2,e,s,gg)5061var cF=_oz(z,3,e,s,gg)5062_(fE,cF)5063_(oB,fE)5064var hG=_v()5065_(oB,hG)5066var oH=function(oJ,cI,lK,gg){5067var tM=_mz(z,'view',['class',8,'key',1],[],oJ,cI,gg)5068var eN=_n('view')5069_rz(z,eN,'class',10,oJ,cI,gg)5070var bO=_n('view')5071_rz(z,bO,'class',11,oJ,cI,gg)5072var oP=_n('view')5073_rz(z,oP,'class',12,oJ,cI,gg)5074var xQ=_n('text')5075_rz(z,xQ,'class',13,oJ,cI,gg)5076var oR=_oz(z,14,oJ,cI,gg)5077_(xQ,oR)5078_(oP,xQ)5079var fS=_n('text')5080_rz(z,fS,'class',15,oJ,cI,gg)5081var cT=_oz(z,16,oJ,cI,gg)5082_(fS,cT)5083_(oP,fS)5084_(bO,oP)5085var hU=_n('view')5086_rz(z,hU,'class',17,oJ,cI,gg)5087var oV=_n('text')5088_rz(z,oV,'class',18,oJ,cI,gg)5089var cW=_oz(z,19,oJ,cI,gg)5090_(oV,cW)5091_(hU,oV)5092var oX=_n('text')5093_rz(z,oX,'class',20,oJ,cI,gg)5094var lY=_oz(z,21,oJ,cI,gg)5095_(oX,lY)5096_(hU,oX)5097_(bO,hU)5098var aZ=_n('view')5099_rz(z,aZ,'class',22,oJ,cI,gg)5100var t1=_n('text')5101_rz(z,t1,'class',23,oJ,cI,gg)5102var e2=_oz(z,24,oJ,cI,gg)5103_(t1,e2)5104_(aZ,t1)5105var b3=_n('text')5106_rz(z,b3,'class',25,oJ,cI,gg)5107var o4=_oz(z,26,oJ,cI,gg)5108_(b3,o4)5109_(aZ,b3)5110_(bO,aZ)5111var x5=_n('view')5112_rz(z,x5,'class',27,oJ,cI,gg)5113var o6=_n('text')5114_rz(z,o6,'class',28,oJ,cI,gg)5115var f7=_oz(z,29,oJ,cI,gg)5116_(o6,f7)5117_(x5,o6)5118var c8=_n('text')5119_rz(z,c8,'class',30,oJ,cI,gg)5120var h9=_oz(z,31,oJ,cI,gg)5121_(c8,h9)5122_(x5,c8)5123_(bO,x5)5124var o0=_n('view')5125_rz(z,o0,'class',32,oJ,cI,gg)5126var cAB=_n('text')5127_rz(z,cAB,'class',33,oJ,cI,gg)5128var oBB=_oz(z,34,oJ,cI,gg)5129_(cAB,oBB)5130_(o0,cAB)5131var lCB=_n('text')5132_rz(z,lCB,'class',35,oJ,cI,gg)5133var aDB=_oz(z,36,oJ,cI,gg)5134_(lCB,aDB)5135_(o0,lCB)5136_(bO,o0)5137_(eN,bO)5138_(tM,eN)5139_(lK,tM)5140return lK5141}5142hG.wxXCkey=25143_2z(z,6,oH,e,s,gg,hG,'item','index','index')5144var xC=_v()5145_(oB,xC)5146if(_oz(z,37,e,s,gg)){xC.wxVkey=15147var tEB=_n('view')5148_rz(z,tEB,'class',38,e,s,gg)5149var eFB=_oz(z,39,e,s,gg)5150_(tEB,eFB)5151_(xC,tEB)5152}5153var oD=_v()5154_(oB,oD)5155if(_oz(z,40,e,s,gg)){oD.wxVkey=15156var bGB=_n('view')5157_rz(z,bGB,'class',41,e,s,gg)5158var oHB=_oz(z,42,e,s,gg)5159_(bGB,oHB)5160_(oD,bGB)5161}5162xC.wxXCkey=15163oD.wxXCkey=15164_(r,oB)5165}catch(err){5166p_[b]=false5167throw err5168}5169p_[b]=false5170return r5171}5172var m19=function(e,s,r,gg){5173var z=gz$gwx_20()5174return r5175}5176e_[x[32]]={f:m19,j:[],i:[],ti:[],ic:[]}5177d_[x[33]]={}5178var m20=function(e,s,r,gg){5179var z=gz$gwx_21()5180var a6B=e_[x[33]].i5181_ai(a6B,x[34],e_,x[33],1,1)5182var t7B=_v()5183_(r,t7B)5184var e8B=_oz(z,1,e,s,gg)5185var b9B=_gd(x[33],e8B,e_,d_)5186if(b9B){5187var o0B=_1z(z,0,e,s,gg) || {}5188var cur_globalf=gg.f5189t7B.wxXCkey=35190b9B(o0B,o0B,t7B,gg)5191gg.f=cur_globalf5192}5193else _w(e8B,x[33],2,18)5194a6B.pop()5195return r5196}5197e_[x[33]]={f:m20,j:[],i:[],ti:[x[34]],ic:[]}5198d_[x[35]]={}5199d_[x[35]]["6c4d1db9"]=function(e,s,r,gg){5200var z=gz$gwx_22()5201var b=x[35]+':6c4d1db9'5202r.wxVkey=b5203gg.f=$gdc(f_["./pages/fenxiao.vue.wxml"],"",1)5204if(p_[b]){_wl(b,x[35]);return}5205p_[b]=true5206try{5207var oB=_n('view')5208_rz(z,oB,'class',1,e,s,gg)5209var cI=_mz(z,'image',['class',2,'mode',1,'src',2],[],e,s,gg)5210_(oB,cI)5211var oJ=_mz(z,'view',['class',5,'scrollLeft',1,'scrollX',2],[],e,s,gg)5212var lK=_v()5213_(oJ,lK)5214var aL=function(eN,tM,bO,gg){5215var xQ=_mz(z,'view',['bindtap',12,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],eN,tM,gg)5216var oR=_oz(z,17,eN,tM,gg)5217_(xQ,oR)5218_(bO,xQ)5219return bO5220}5221lK.wxXCkey=25222_2z(z,10,aL,e,s,gg,lK,'item','index','index')5223_(oB,oJ)5224var xC=_v()5225_(oB,xC)5226if(_oz(z,18,e,s,gg)){xC.wxVkey=15227var fS=_mz(z,'view',['bindtouchend',19,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)5228var cT=_n('view')5229_rz(z,cT,'class',24,e,s,gg)5230var hU=_mz(z,'image',['class',25,'src',1],[],e,s,gg)5231_(cT,hU)5232_(fS,cT)5233var oV=_n('view')5234_rz(z,oV,'class',27,e,s,gg)5235var cW=_oz(z,28,e,s,gg)5236_(oV,cW)5237_(fS,oV)5238var oX=_n('view')5239_rz(z,oX,'class',29,e,s,gg)5240var lY=_oz(z,30,e,s,gg)5241_(oX,lY)5242_(fS,oX)5243_(xC,fS)5244}5245var oD=_v()5246_(oB,oD)5247if(_oz(z,31,e,s,gg)){oD.wxVkey=15248var aZ=_mz(z,'view',['bindtouchend',32,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)5249var t1=_n('view')5250_rz(z,t1,'class',37,e,s,gg)5251var e2=_n('text')5252_rz(z,e2,'class',38,e,s,gg)5253var b3=_oz(z,39,e,s,gg)5254_(e2,b3)5255_(t1,e2)5256var o4=_oz(z,40,e,s,gg)5257_(t1,o4)5258_(aZ,t1)5259var x5=_n('view')5260_rz(z,x5,'class',41,e,s,gg)5261var o6=_n('text')5262_rz(z,o6,'class',42,e,s,gg)5263var f7=_oz(z,43,e,s,gg)5264_(o6,f7)5265_(x5,o6)5266var c8=_oz(z,44,e,s,gg)5267_(x5,c8)5268_(aZ,x5)5269_(oD,aZ)5270}5271var fE=_v()5272_(oB,fE)5273if(_oz(z,45,e,s,gg)){fE.wxVkey=15274var h9=_mz(z,'view',['bindtouchend',46,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)5275var o0=_mz(z,'view',['bindtap',51,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5276var cAB=_n('text')5277_rz(z,cAB,'class',55,e,s,gg)5278var oBB=_oz(z,56,e,s,gg)5279_(cAB,oBB)5280_(o0,cAB)5281var lCB=_n('view')5282_rz(z,lCB,'class',57,e,s,gg)5283var aDB=_oz(z,58,e,s,gg)5284_(lCB,aDB)5285_(o0,lCB)5286_(h9,o0)5287var tEB=_mz(z,'view',['bindtap',59,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5288var eFB=_n('text')5289_rz(z,eFB,'class',63,e,s,gg)5290var bGB=_oz(z,64,e,s,gg)5291_(eFB,bGB)5292_(tEB,eFB)5293var oHB=_n('view')5294_rz(z,oHB,'class',65,e,s,gg)5295var xIB=_oz(z,66,e,s,gg)5296_(oHB,xIB)5297_(tEB,oHB)5298_(h9,tEB)5299var oJB=_mz(z,'view',['bindtap',67,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5300var fKB=_n('text')5301_rz(z,fKB,'class',71,e,s,gg)5302var cLB=_oz(z,72,e,s,gg)5303_(fKB,cLB)5304_(oJB,fKB)5305var hMB=_n('view')5306_rz(z,hMB,'class',73,e,s,gg)5307var oNB=_oz(z,74,e,s,gg)5308_(hMB,oNB)5309_(oJB,hMB)5310_(h9,oJB)5311var cOB=_mz(z,'view',['bindtap',75,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5312var oPB=_n('text')5313_rz(z,oPB,'class',79,e,s,gg)5314var lQB=_oz(z,80,e,s,gg)5315_(oPB,lQB)5316_(cOB,oPB)5317var aRB=_n('view')5318_rz(z,aRB,'class',81,e,s,gg)5319var tSB=_oz(z,82,e,s,gg)5320_(aRB,tSB)5321_(cOB,aRB)5322_(h9,cOB)5323var eTB=_mz(z,'view',['bindtap',83,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5324var bUB=_n('text')5325_rz(z,bUB,'class',87,e,s,gg)5326var oVB=_oz(z,88,e,s,gg)5327_(bUB,oVB)5328_(eTB,bUB)5329var xWB=_n('view')5330_rz(z,xWB,'class',89,e,s,gg)5331var oXB=_oz(z,90,e,s,gg)5332_(xWB,oXB)5333_(eTB,xWB)5334_(h9,eTB)5335var fYB=_mz(z,'view',['bindtap',91,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5336var cZB=_n('text')5337_rz(z,cZB,'class',95,e,s,gg)5338var h1B=_oz(z,96,e,s,gg)5339_(cZB,h1B)5340_(fYB,cZB)5341var o2B=_n('view')5342_rz(z,o2B,'class',97,e,s,gg)5343var c3B=_oz(z,98,e,s,gg)5344_(o2B,c3B)5345_(fYB,o2B)5346_(h9,fYB)5347var o4B=_mz(z,'view',['bindtap',99,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5348var l5B=_n('text')5349_rz(z,l5B,'class',103,e,s,gg)5350var a6B=_oz(z,104,e,s,gg)5351_(l5B,a6B)5352_(o4B,l5B)5353var t7B=_n('view')5354_rz(z,t7B,'class',105,e,s,gg)5355var e8B=_oz(z,106,e,s,gg)5356_(t7B,e8B)5357_(o4B,t7B)5358_(h9,o4B)5359var b9B=_mz(z,'view',['bindtap',107,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5360var o0B=_n('text')5361_rz(z,o0B,'class',111,e,s,gg)5362var xAC=_oz(z,112,e,s,gg)5363_(o0B,xAC)5364_(b9B,o0B)5365var oBC=_n('view')5366_rz(z,oBC,'class',113,e,s,gg)5367var fCC=_oz(z,114,e,s,gg)5368_(oBC,fCC)5369_(b9B,oBC)5370_(h9,b9B)5371var cDC=_mz(z,'view',['bindtap',115,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5372var hEC=_n('text')5373_rz(z,hEC,'class',119,e,s,gg)5374var oFC=_oz(z,120,e,s,gg)5375_(hEC,oFC)5376_(cDC,hEC)5377_(h9,cDC)5378var cGC=_mz(z,'view',['bindtap',121,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5379var oHC=_n('text')5380_rz(z,oHC,'class',125,e,s,gg)5381var lIC=_oz(z,126,e,s,gg)5382_(oHC,lIC)5383_(cGC,oHC)5384var aJC=_n('view')5385_rz(z,aJC,'class',127,e,s,gg)5386var tKC=_oz(z,128,e,s,gg)5387_(aJC,tKC)5388_(cGC,aJC)5389_(h9,cGC)5390_(fE,h9)5391}5392var cF=_v()5393_(oB,cF)5394if(_oz(z,129,e,s,gg)){cF.wxVkey=15395var eLC=_mz(z,'view',['bindtouchend',130,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)5396var oNC=_v()5397_(eLC,oNC)5398var xOC=function(fQC,oPC,cRC,gg){5399var oTC=_v()5400_(cRC,oTC)5401if(_oz(z,139,fQC,oPC,gg)){oTC.wxVkey=15402var cUC=_mz(z,'view',['class',140,'key',1],[],fQC,oPC,gg)5403var oVC=_n('view')5404_rz(z,oVC,'class',142,fQC,oPC,gg)5405var lWC=_n('view')5406_rz(z,lWC,'class',143,fQC,oPC,gg)5407var aXC=_n('view')5408_rz(z,aXC,'class',144,fQC,oPC,gg)5409var tYC=_n('text')5410_rz(z,tYC,'class',145,fQC,oPC,gg)5411var eZC=_oz(z,146,fQC,oPC,gg)5412_(tYC,eZC)5413_(aXC,tYC)5414var b1C=_n('text')5415_rz(z,b1C,'class',147,fQC,oPC,gg)5416var o2C=_oz(z,148,fQC,oPC,gg)5417_(b1C,o2C)5418_(aXC,b1C)5419_(lWC,aXC)5420var x3C=_n('view')5421_rz(z,x3C,'class',149,fQC,oPC,gg)5422var o4C=_n('text')5423_rz(z,o4C,'class',150,fQC,oPC,gg)5424var f5C=_oz(z,151,fQC,oPC,gg)5425_(o4C,f5C)5426_(x3C,o4C)5427var c6C=_n('text')5428_rz(z,c6C,'class',152,fQC,oPC,gg)5429var h7C=_oz(z,153,fQC,oPC,gg)5430_(c6C,h7C)5431_(x3C,c6C)5432_(lWC,x3C)5433var o8C=_n('view')5434_rz(z,o8C,'class',154,fQC,oPC,gg)5435var c9C=_n('text')5436_rz(z,c9C,'class',155,fQC,oPC,gg)5437var o0C=_oz(z,156,fQC,oPC,gg)5438_(c9C,o0C)5439_(o8C,c9C)5440var lAD=_n('text')5441_rz(z,lAD,'class',157,fQC,oPC,gg)5442var aBD=_oz(z,158,fQC,oPC,gg)5443_(lAD,aBD)5444_(o8C,lAD)5445_(lWC,o8C)5446var tCD=_n('view')5447_rz(z,tCD,'class',159,fQC,oPC,gg)5448var eDD=_n('text')5449_rz(z,eDD,'class',160,fQC,oPC,gg)5450var bED=_oz(z,161,fQC,oPC,gg)5451_(eDD,bED)5452_(tCD,eDD)5453var oFD=_n('text')5454_rz(z,oFD,'class',162,fQC,oPC,gg)5455var xGD=_oz(z,163,fQC,oPC,gg)5456_(oFD,xGD)5457_(tCD,oFD)5458_(lWC,tCD)5459var oHD=_n('view')5460_rz(z,oHD,'class',164,fQC,oPC,gg)5461var fID=_n('text')5462_rz(z,fID,'class',165,fQC,oPC,gg)5463var cJD=_oz(z,166,fQC,oPC,gg)5464_(fID,cJD)5465_(oHD,fID)5466var hKD=_n('text')5467_rz(z,hKD,'class',167,fQC,oPC,gg)5468var oLD=_oz(z,168,fQC,oPC,gg)5469_(hKD,oLD)5470_(oHD,hKD)5471_(lWC,oHD)5472_(oVC,lWC)5473_(cUC,oVC)5474_(oTC,cUC)5475}5476oTC.wxXCkey=15477return cRC5478}5479oNC.wxXCkey=25480_2z(z,137,xOC,e,s,gg,oNC,'item','index','index')5481var cMD=_v()5482_(eLC,cMD)5483var oND=function(aPD,lOD,tQD,gg){5484var bSD=_v()5485_(tQD,bSD)5486if(_oz(z,173,aPD,lOD,gg)){bSD.wxVkey=15487var oTD=_mz(z,'view',['class',174,'key',1],[],aPD,lOD,gg)5488var xUD=_n('view')5489_rz(z,xUD,'class',176,aPD,lOD,gg)5490var oVD=_n('view')5491_rz(z,oVD,'class',177,aPD,lOD,gg)5492var fWD=_n('view')5493_rz(z,fWD,'class',178,aPD,lOD,gg)5494var cXD=_n('text')5495_rz(z,cXD,'class',179,aPD,lOD,gg)5496var hYD=_oz(z,180,aPD,lOD,gg)5497_(cXD,hYD)5498_(fWD,cXD)5499var oZD=_n('text')5500_rz(z,oZD,'class',181,aPD,lOD,gg)5501var c1D=_oz(z,182,aPD,lOD,gg)5502_(oZD,c1D)5503_(fWD,oZD)5504_(oVD,fWD)5505var o2D=_n('view')5506_rz(z,o2D,'class',183,aPD,lOD,gg)5507var l3D=_n('text')5508_rz(z,l3D,'class',184,aPD,lOD,gg)5509var a4D=_oz(z,185,aPD,lOD,gg)5510_(l3D,a4D)5511_(o2D,l3D)5512var t5D=_n('text')5513_rz(z,t5D,'class',186,aPD,lOD,gg)5514var e6D=_oz(z,187,aPD,lOD,gg)5515_(t5D,e6D)5516_(o2D,t5D)5517_(oVD,o2D)5518_(xUD,oVD)5519_(oTD,xUD)5520_(bSD,oTD)5521}5522bSD.wxXCkey=15523return tQD5524}5525cMD.wxXCkey=25526_2z(z,171,oND,e,s,gg,cMD,'item','index','index')5527var b7D=_v()5528_(eLC,b7D)5529var o8D=function(o0D,x9D,fAE,gg){5530var hCE=_v()5531_(fAE,hCE)5532if(_oz(z,192,o0D,x9D,gg)){hCE.wxVkey=15533var oDE=_mz(z,'view',['class',193,'key',1],[],o0D,x9D,gg)5534var cEE=_n('view')5535_rz(z,cEE,'class',195,o0D,x9D,gg)5536var oFE=_n('view')5537_rz(z,oFE,'class',196,o0D,x9D,gg)5538var lGE=_n('view')5539_rz(z,lGE,'class',197,o0D,x9D,gg)5540var aHE=_n('text')5541_rz(z,aHE,'class',198,o0D,x9D,gg)5542var tIE=_oz(z,199,o0D,x9D,gg)5543_(aHE,tIE)5544_(lGE,aHE)5545var eJE=_n('text')5546_rz(z,eJE,'class',200,o0D,x9D,gg)5547var bKE=_oz(z,201,o0D,x9D,gg)5548_(eJE,bKE)5549_(lGE,eJE)5550_(oFE,lGE)5551var oLE=_n('view')5552_rz(z,oLE,'class',202,o0D,x9D,gg)5553var xME=_n('text')5554_rz(z,xME,'class',203,o0D,x9D,gg)5555var oNE=_oz(z,204,o0D,x9D,gg)5556_(xME,oNE)5557_(oLE,xME)5558var fOE=_n('text')5559_rz(z,fOE,'class',205,o0D,x9D,gg)5560var cPE=_oz(z,206,o0D,x9D,gg)5561_(fOE,cPE)5562_(oLE,fOE)5563_(oFE,oLE)5564_(cEE,oFE)5565_(oDE,cEE)5566_(hCE,oDE)5567}5568hCE.wxXCkey=15569return fAE5570}5571b7D.wxXCkey=25572_2z(z,190,o8D,e,s,gg,b7D,'item','index','index')5573var hQE=_v()5574_(eLC,hQE)5575var oRE=function(oTE,cSE,lUE,gg){5576var tWE=_v()5577_(lUE,tWE)5578if(_oz(z,211,oTE,cSE,gg)){tWE.wxVkey=15579var eXE=_mz(z,'view',['class',212,'key',1],[],oTE,cSE,gg)5580var bYE=_n('view')5581_rz(z,bYE,'class',214,oTE,cSE,gg)5582var oZE=_n('view')5583_rz(z,oZE,'class',215,oTE,cSE,gg)5584var x1E=_n('view')5585_rz(z,x1E,'class',216,oTE,cSE,gg)5586var o2E=_n('text')5587_rz(z,o2E,'class',217,oTE,cSE,gg)5588var f3E=_oz(z,218,oTE,cSE,gg)5589_(o2E,f3E)5590_(x1E,o2E)5591var c4E=_n('text')5592_rz(z,c4E,'class',219,oTE,cSE,gg)5593var h5E=_oz(z,220,oTE,cSE,gg)5594_(c4E,h5E)5595_(x1E,c4E)5596_(oZE,x1E)5597var o6E=_n('view')5598_rz(z,o6E,'class',221,oTE,cSE,gg)5599var c7E=_n('text')5600_rz(z,c7E,'class',222,oTE,cSE,gg)5601var o8E=_oz(z,223,oTE,cSE,gg)5602_(c7E,o8E)5603_(o6E,c7E)5604var l9E=_n('text')5605_rz(z,l9E,'class',224,oTE,cSE,gg)5606var a0E=_oz(z,225,oTE,cSE,gg)5607_(l9E,a0E)5608_(o6E,l9E)5609_(oZE,o6E)5610_(bYE,oZE)5611_(eXE,bYE)5612_(tWE,eXE)5613}5614tWE.wxXCkey=15615return lUE5616}5617hQE.wxXCkey=25618_2z(z,209,oRE,e,s,gg,hQE,'item','index','index')5619var bMC=_v()5620_(eLC,bMC)5621if(_oz(z,226,e,s,gg)){bMC.wxVkey=15622var tAF=_n('view')5623_rz(z,tAF,'class',227,e,s,gg)5624var eBF=_n('view')5625_rz(z,eBF,'class',228,e,s,gg)5626var bCF=_oz(z,229,e,s,gg)5627_(eBF,bCF)5628var oDF=_mz(z,'view',['bindtap',230,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5629var xEF=_oz(z,234,e,s,gg)5630_(oDF,xEF)5631_(eBF,oDF)5632var oFF=_oz(z,235,e,s,gg)5633_(eBF,oFF)5634_(tAF,eBF)5635var fGF=_n('view')5636_rz(z,fGF,'class',236,e,s,gg)5637var cHF=_n('text')5638_rz(z,cHF,'class',237,e,s,gg)5639var hIF=_oz(z,238,e,s,gg)5640_(cHF,hIF)5641_(fGF,cHF)5642var oJF=_mz(z,'input',['autoFocus',-1,'bindinput',239,'class',1,'value',2],[],e,s,gg)5643_(fGF,oJF)5644var cKF=_n('text')5645_rz(z,cKF,'class',242,e,s,gg)5646var oLF=_oz(z,243,e,s,gg)5647_(cKF,oLF)5648_(fGF,cKF)5649_(tAF,fGF)5650var lMF=_mz(z,'button',['bindtap',244,'class',1,'data-comkey',2,'data-eventid',3,'type',4],[],e,s,gg)5651var aNF=_oz(z,249,e,s,gg)5652_(lMF,aNF)5653_(tAF,lMF)5654_(bMC,tAF)5655}5656bMC.wxXCkey=15657_(cF,eLC)5658}5659var hG=_v()5660_(oB,hG)5661if(_oz(z,250,e,s,gg)){hG.wxVkey=15662var tOF=_mz(z,'image',['bindtouchend',251,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4,'mode',5,'src',6],[],e,s,gg)5663_(hG,tOF)5664}5665var oH=_v()5666_(oB,oH)5667if(_oz(z,258,e,s,gg)){oH.wxVkey=15668var ePF=_mz(z,'view',['bindtouchend',259,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)5669var oRF=_n('view')5670_rz(z,oRF,'class',264,e,s,gg)5671var xSF=_oz(z,265,e,s,gg)5672_(oRF,xSF)5673var oTF=_mz(z,'view',['bindtap',266,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5674var fUF=_oz(z,270,e,s,gg)5675_(oTF,fUF)5676_(oRF,oTF)5677_(ePF,oRF)5678var cVF=_n('view')5679_rz(z,cVF,'class',271,e,s,gg)5680var hWF=_oz(z,272,e,s,gg)5681_(cVF,hWF)5682_(ePF,cVF)5683var oXF=_n('view')5684_rz(z,oXF,'class',273,e,s,gg)5685var cYF=_v()5686_(oXF,cYF)5687var oZF=function(a2F,l1F,t3F,gg){5688var b5F=_mz(z,'view',['class',278,'key',1],[],a2F,l1F,gg)5689var o6F=_mz(z,'image',['bindtap',280,'class',1,'data-comkey',2,'data-eventid',3,'mode',4,'src',5],[],a2F,l1F,gg)5690_(b5F,o6F)5691_(t3F,b5F)5692return t3F5693}5694cYF.wxXCkey=25695_2z(z,276,oZF,e,s,gg,cYF,'item','index','index')5696_(ePF,oXF)5697var bQF=_v()5698_(ePF,bQF)5699if(_oz(z,286,e,s,gg)){bQF.wxVkey=15700var x7F=_n('view')5701_rz(z,x7F,'class',287,e,s,gg)5702var o8F=_n('view')5703_rz(z,o8F,'class',288,e,s,gg)5704var f9F=_oz(z,289,e,s,gg)5705_(o8F,f9F)5706_(x7F,o8F)5707var c0F=_mz(z,'image',['class',290,'src',1],[],e,s,gg)5708_(x7F,c0F)5709_(bQF,x7F)5710}5711bQF.wxXCkey=15712_(oH,ePF)5713}5714xC.wxXCkey=15715oD.wxXCkey=15716fE.wxXCkey=15717cF.wxXCkey=15718hG.wxXCkey=15719oH.wxXCkey=15720_(r,oB)5721}catch(err){5722p_[b]=false5723throw err5724}5725p_[b]=false5726return r5727}5728var m21=function(e,s,r,gg){5729var z=gz$gwx_22()5730return r5731}5732e_[x[35]]={f:m21,j:[],i:[],ti:[],ic:[]}5733d_[x[36]]={}5734var m22=function(e,s,r,gg){5735var z=gz$gwx_23()5736var fCC=e_[x[36]].i5737_ai(fCC,x[37],e_,x[36],1,1)5738var cDC=_v()5739_(r,cDC)5740var hEC=_oz(z,1,e,s,gg)5741var oFC=_gd(x[36],hEC,e_,d_)5742if(oFC){5743var cGC=_1z(z,0,e,s,gg) || {}5744var cur_globalf=gg.f5745cDC.wxXCkey=35746oFC(cGC,cGC,cDC,gg)5747gg.f=cur_globalf5748}5749else _w(hEC,x[36],2,18)5750fCC.pop()5751return r5752}5753e_[x[36]]={f:m22,j:[],i:[],ti:[x[37]],ic:[]}5754d_[x[38]]={}5755d_[x[38]]["3de791f4"]=function(e,s,r,gg){5756var z=gz$gwx_24()5757var b=x[38]+':3de791f4'5758r.wxVkey=b5759gg.f=$gdc(f_["./pages/home.vue.wxml"],"",1)5760if(p_[b]){_wl(b,x[38]);return}5761p_[b]=true5762try{5763var oB=_n('view')5764_rz(z,oB,'class',1,e,s,gg)5765var xC=_mz(z,'swiper',['autoplay',2,'circular',1,'class',2,'duration',3,'indicatorActiveColor',4,'indicatorDots',5,'interval',6],[],e,s,gg)5766var oD=_v()5767_(xC,oD)5768var fE=function(hG,cF,oH,gg){5769var oJ=_n('swiper-item')5770_rz(z,oJ,'class',14,hG,cF,gg)5771var lK=_mz(z,'image',['bindtap',15,'class',1,'data-comkey',2,'data-eventid',3,'mode',4,'src',5],[],hG,cF,gg)5772_(oJ,lK)5773_(oH,oJ)5774return oH5775}5776oD.wxXCkey=25777_2z(z,11,fE,e,s,gg,oD,'item','index','index')5778_(oB,xC)5779var aL=_mz(z,'view',['bindtouchend',21,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)5780var eN=_n('view')5781_rz(z,eN,'class',26,e,s,gg)5782var bO=_v()5783_(eN,bO)5784var oP=function(oR,xQ,fS,gg){5785var hU=_mz(z,'view',['class',31,'key',1],[],oR,xQ,gg)5786var oV=_mz(z,'view',['bindtap',33,'class',1,'data-comkey',2,'data-eventid',3],[],oR,xQ,gg)5787var cW=_mz(z,'image',['class',37,'mode',1,'src',2],[],oR,xQ,gg)5788_(oV,cW)5789var oX=_n('view')5790_rz(z,oX,'class',40,oR,xQ,gg)5791var lY=_oz(z,41,oR,xQ,gg)5792_(oX,lY)5793_(oV,oX)5794_(hU,oV)5795_(fS,hU)5796return fS5797}5798bO.wxXCkey=25799_2z(z,29,oP,e,s,gg,bO,'item','index','index')5800_(aL,eN)5801var aZ=_mz(z,'view',['bindtap',42,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5802var t1=_n('view')5803_rz(z,t1,'class',46,e,s,gg)5804var e2=_n('view')5805_rz(z,e2,'class',47,e,s,gg)5806var b3=_oz(z,48,e,s,gg)5807_(e2,b3)5808_(t1,e2)5809var o4=_mz(z,'image',['class',49,'mode',1,'src',2],[],e,s,gg)5810_(t1,o4)5811_(aZ,t1)5812var x5=_n('view')5813_rz(z,x5,'class',52,e,s,gg)5814var o6=_oz(z,53,e,s,gg)5815_(x5,o6)5816_(aZ,x5)5817var f7=_n('view')5818_rz(z,f7,'class',54,e,s,gg)5819var c8=_v()5820_(f7,c8)5821var h9=function(cAB,o0,oBB,gg){5822var aDB=_mz(z,'view',['bindtap',59,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],cAB,o0,gg)5823var tEB=_oz(z,64,cAB,o0,gg)5824_(aDB,tEB)5825_(oBB,aDB)5826return oBB5827}5828c8.wxXCkey=25829_2z(z,57,h9,e,s,gg,c8,'item','index','index')5830_(aZ,f7)5831_(aL,aZ)5832var eFB=_n('view')5833_rz(z,eFB,'class',65,e,s,gg)5834var bGB=_n('view')5835_rz(z,bGB,'class',66,e,s,gg)5836var oHB=_mz(z,'image',['class',67,'mode',1,'src',2],[],e,s,gg)5837_(bGB,oHB)5838var xIB=_mz(z,'view',['bindtap',70,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5839var oJB=_oz(z,74,e,s,gg)5840_(xIB,oJB)5841var fKB=_mz(z,'image',['class',75,'mode',1,'src',2],[],e,s,gg)5842_(xIB,fKB)5843_(bGB,xIB)5844_(eFB,bGB)5845var cLB=_v()5846_(eFB,cLB)5847var hMB=function(cOB,oNB,oPB,gg){5848var aRB=_mz(z,'view',['bindtap',82,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],cOB,oNB,gg)5849var tSB=_n('view')5850_rz(z,tSB,'class',87,cOB,oNB,gg)5851var eTB=_mz(z,'image',['class',88,'mode',1,'src',2],[],cOB,oNB,gg)5852_(tSB,eTB)5853_(aRB,tSB)5854var bUB=_n('view')5855_rz(z,bUB,'class',91,cOB,oNB,gg)5856var oVB=_n('view')5857_rz(z,oVB,'class',92,cOB,oNB,gg)5858var xWB=_oz(z,93,cOB,oNB,gg)5859_(oVB,xWB)5860_(bUB,oVB)5861var oXB=_n('view')5862_rz(z,oXB,'class',94,cOB,oNB,gg)5863var h1B=_n('view')5864_rz(z,h1B,'class',95,cOB,oNB,gg)5865var o2B=_oz(z,96,cOB,oNB,gg)5866_(h1B,o2B)5867_(oXB,h1B)5868var fYB=_v()5869_(oXB,fYB)5870if(_oz(z,97,cOB,oNB,gg)){fYB.wxVkey=15871var c3B=_n('view')5872_rz(z,c3B,'class',98,cOB,oNB,gg)5873var o4B=_oz(z,99,cOB,oNB,gg)5874_(c3B,o4B)5875_(fYB,c3B)5876}5877var cZB=_v()5878_(oXB,cZB)5879if(_oz(z,100,cOB,oNB,gg)){cZB.wxVkey=15880var l5B=_n('view')5881_rz(z,l5B,'class',101,cOB,oNB,gg)5882var a6B=_oz(z,102,cOB,oNB,gg)5883_(l5B,a6B)5884_(cZB,l5B)5885}5886fYB.wxXCkey=15887cZB.wxXCkey=15888_(bUB,oXB)5889_(aRB,bUB)5890_(oPB,aRB)5891return oPB5892}5893cLB.wxXCkey=25894_2z(z,80,hMB,e,s,gg,cLB,'item','index','index')5895_(aL,eFB)5896var t7B=_n('view')5897_rz(z,t7B,'class',103,e,s,gg)5898var e8B=_n('view')5899_rz(z,e8B,'class',104,e,s,gg)5900var b9B=_mz(z,'image',['class',105,'mode',1,'src',2],[],e,s,gg)5901_(e8B,b9B)5902var o0B=_mz(z,'view',['bindtap',108,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5903var xAC=_oz(z,112,e,s,gg)5904_(o0B,xAC)5905var oBC=_mz(z,'image',['class',113,'mode',1,'src',2],[],e,s,gg)5906_(o0B,oBC)5907_(e8B,o0B)5908_(t7B,e8B)5909var fCC=_n('view')5910_rz(z,fCC,'class',116,e,s,gg)5911var cDC=_v()5912_(fCC,cDC)5913var hEC=function(cGC,oFC,oHC,gg){5914var aJC=_mz(z,'view',['bindtap',121,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],cGC,oFC,gg)5915var tKC=_mz(z,'image',['class',126,'mode',1,'src',2],[],cGC,oFC,gg)5916_(aJC,tKC)5917var eLC=_n('view')5918_rz(z,eLC,'class',129,cGC,oFC,gg)5919var bMC=_n('view')5920_rz(z,bMC,'class',130,cGC,oFC,gg)5921var oNC=_oz(z,131,cGC,oFC,gg)5922_(bMC,oNC)5923_(eLC,bMC)5924var xOC=_n('view')5925_rz(z,xOC,'class',132,cGC,oFC,gg)5926var oPC=_oz(z,133,cGC,oFC,gg)5927_(xOC,oPC)5928_(eLC,xOC)5929_(aJC,eLC)5930_(oHC,aJC)5931return oHC5932}5933cDC.wxXCkey=25934_2z(z,119,hEC,e,s,gg,cDC,'item','index','index')5935_(t7B,fCC)5936_(aL,t7B)5937var fQC=_n('view')5938_rz(z,fQC,'class',134,e,s,gg)5939var cRC=_n('view')5940_rz(z,cRC,'class',135,e,s,gg)5941var hSC=_mz(z,'image',['class',136,'mode',1,'src',2],[],e,s,gg)5942_(cRC,hSC)5943var oTC=_mz(z,'view',['bindtap',139,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5944var cUC=_oz(z,143,e,s,gg)5945_(oTC,cUC)5946var oVC=_mz(z,'image',['class',144,'mode',1,'src',2],[],e,s,gg)5947_(oTC,oVC)5948_(cRC,oTC)5949_(fQC,cRC)5950var lWC=_v()5951_(fQC,lWC)5952var aXC=function(eZC,tYC,b1C,gg){5953var x3C=_mz(z,'view',['bindtap',151,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],eZC,tYC,gg)5954var o4C=_n('view')5955_rz(z,o4C,'class',156,eZC,tYC,gg)5956var f5C=_mz(z,'image',['class',157,'mode',1,'src',2],[],eZC,tYC,gg)5957_(o4C,f5C)5958_(x3C,o4C)5959var c6C=_n('view')5960_rz(z,c6C,'class',160,eZC,tYC,gg)5961var h7C=_n('view')5962_rz(z,h7C,'class',161,eZC,tYC,gg)5963var o8C=_oz(z,162,eZC,tYC,gg)5964_(h7C,o8C)5965_(c6C,h7C)5966var c9C=_n('view')5967_rz(z,c9C,'class',163,eZC,tYC,gg)5968var o0C=_oz(z,164,eZC,tYC,gg)5969_(c9C,o0C)5970_(c6C,c9C)5971_(x3C,c6C)5972_(b1C,x3C)5973return b1C5974}5975lWC.wxXCkey=25976_2z(z,149,aXC,e,s,gg,lWC,'item','index','index')5977_(aL,fQC)5978var tM=_v()5979_(aL,tM)5980if(_oz(z,165,e,s,gg)){tM.wxVkey=15981var lAD=_n('view')5982_rz(z,lAD,'class',166,e,s,gg)5983var aBD=_n('view')5984_rz(z,aBD,'class',167,e,s,gg)5985var tCD=_mz(z,'image',['class',168,'mode',1,'src',2],[],e,s,gg)5986_(aBD,tCD)5987var eDD=_mz(z,'view',['bindtap',171,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)5988var bED=_oz(z,175,e,s,gg)5989_(eDD,bED)5990var oFD=_mz(z,'image',['class',176,'mode',1,'src',2],[],e,s,gg)5991_(eDD,oFD)5992_(aBD,eDD)5993_(lAD,aBD)5994var xGD=_n('view')5995_rz(z,xGD,'class',179,e,s,gg)5996var oHD=_v()5997_(xGD,oHD)5998var fID=function(hKD,cJD,oLD,gg){5999var oND=_mz(z,'view',['bindtap',184,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],hKD,cJD,gg)6000var lOD=_mz(z,'image',['class',189,'mode',1,'src',2],[],hKD,cJD,gg)6001_(oND,lOD)6002var aPD=_n('view')6003_rz(z,aPD,'class',192,hKD,cJD,gg)6004var tQD=_n('view')6005_rz(z,tQD,'class',193,hKD,cJD,gg)6006var eRD=_oz(z,194,hKD,cJD,gg)6007_(tQD,eRD)6008_(aPD,tQD)6009var bSD=_n('view')6010_rz(z,bSD,'class',195,hKD,cJD,gg)6011var oTD=_oz(z,196,hKD,cJD,gg)6012_(bSD,oTD)6013_(aPD,bSD)6014_(oND,aPD)6015_(oLD,oND)6016return oLD6017}6018oHD.wxXCkey=26019_2z(z,182,fID,e,s,gg,oHD,'item','index','index')6020_(lAD,xGD)6021_(tM,lAD)6022}6023var xUD=_n('view')6024_rz(z,xUD,'class',197,e,s,gg)6025var oVD=_n('view')6026_rz(z,oVD,'class',198,e,s,gg)6027var fWD=_mz(z,'image',['class',199,'mode',1,'src',2],[],e,s,gg)6028_(oVD,fWD)6029var cXD=_mz(z,'view',['bindtap',202,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)6030var hYD=_oz(z,206,e,s,gg)6031_(cXD,hYD)6032var oZD=_mz(z,'image',['class',207,'mode',1,'src',2],[],e,s,gg)6033_(cXD,oZD)6034_(oVD,cXD)6035_(xUD,oVD)6036var c1D=_v()6037_(xUD,c1D)6038var o2D=function(a4D,l3D,t5D,gg){6039var b7D=_mz(z,'view',['bindtap',214,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],a4D,l3D,gg)6040var o8D=_n('view')6041_rz(z,o8D,'class',219,a4D,l3D,gg)6042var x9D=_mz(z,'image',['class',220,'mode',1,'src',2],[],a4D,l3D,gg)6043_(o8D,x9D)6044_(b7D,o8D)6045var o0D=_n('view')6046_rz(z,o0D,'class',223,a4D,l3D,gg)6047var fAE=_n('view')6048_rz(z,fAE,'class',224,a4D,l3D,gg)6049var cBE=_oz(z,225,a4D,l3D,gg)6050_(fAE,cBE)6051_(o0D,fAE)6052var hCE=_n('view')6053_rz(z,hCE,'class',226,a4D,l3D,gg)6054var oDE=_oz(z,227,a4D,l3D,gg)6055_(hCE,oDE)6056_(o0D,hCE)6057_(b7D,o0D)6058_(t5D,b7D)6059return t5D6060}6061c1D.wxXCkey=26062_2z(z,212,o2D,e,s,gg,c1D,'item','index','index')6063_(aL,xUD)6064var cEE=_n('view')6065_rz(z,cEE,'class',228,e,s,gg)6066var oFE=_n('view')6067_rz(z,oFE,'class',229,e,s,gg)6068var lGE=_mz(z,'image',['class',230,'mode',1,'src',2],[],e,s,gg)6069_(oFE,lGE)6070var aHE=_mz(z,'view',['bindtap',233,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)6071var tIE=_oz(z,237,e,s,gg)6072_(aHE,tIE)6073var eJE=_mz(z,'image',['class',238,'mode',1,'src',2],[],e,s,gg)6074_(aHE,eJE)6075_(oFE,aHE)6076_(cEE,oFE)6077var bKE=_n('view')6078_rz(z,bKE,'class',241,e,s,gg)6079var oLE=_v()6080_(bKE,oLE)6081var xME=function(fOE,oNE,cPE,gg){6082var oRE=_mz(z,'view',['bindtap',246,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],fOE,oNE,gg)6083var cSE=_mz(z,'image',['class',251,'mode',1,'src',2],[],fOE,oNE,gg)6084_(oRE,cSE)6085var oTE=_n('view')6086_rz(z,oTE,'class',254,fOE,oNE,gg)6087var lUE=_n('view')6088_rz(z,lUE,'class',255,fOE,oNE,gg)6089var aVE=_oz(z,256,fOE,oNE,gg)6090_(lUE,aVE)6091_(oTE,lUE)6092var tWE=_n('view')6093_rz(z,tWE,'class',257,fOE,oNE,gg)6094var eXE=_oz(z,258,fOE,oNE,gg)6095_(tWE,eXE)6096_(oTE,tWE)6097_(oRE,oTE)6098_(cPE,oRE)6099return cPE6100}6101oLE.wxXCkey=26102_2z(z,244,xME,e,s,gg,oLE,'item','index','index')6103_(cEE,bKE)6104_(aL,cEE)6105tM.wxXCkey=16106_(oB,aL)6107_(r,oB)6108}catch(err){6109p_[b]=false6110throw err6111}6112p_[b]=false6113return r6114}6115var m23=function(e,s,r,gg){6116var z=gz$gwx_24()6117return r6118}6119e_[x[38]]={f:m23,j:[],i:[],ti:[],ic:[]}6120d_[x[39]]={}6121var m24=function(e,s,r,gg){6122var z=gz$gwx_25()6123var aJC=e_[x[39]].i6124_ai(aJC,x[40],e_,x[39],1,1)6125var tKC=_v()6126_(r,tKC)6127var eLC=_oz(z,1,e,s,gg)6128var bMC=_gd(x[39],eLC,e_,d_)6129if(bMC){6130var oNC=_1z(z,0,e,s,gg) || {}6131var cur_globalf=gg.f6132tKC.wxXCkey=36133bMC(oNC,oNC,tKC,gg)6134gg.f=cur_globalf6135}6136else _w(eLC,x[39],2,18)6137aJC.pop()6138return r6139}6140e_[x[39]]={f:m24,j:[],i:[],ti:[x[40]],ic:[]}6141d_[x[41]]={}6142d_[x[41]]["3de801c3"]=function(e,s,r,gg){6143var z=gz$gwx_26()6144var b=x[41]+':3de801c3'6145r.wxVkey=b6146gg.f=$gdc(f_["./pages/info.vue.wxml"],"",1)6147if(p_[b]){_wl(b,x[41]);return}6148p_[b]=true6149try{6150var oB=_mz(z,'view',['bindtouchend',1,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)6151var xC=_n('view')6152_rz(z,xC,'class',6,e,s,gg)6153var oD=_n('view')6154_rz(z,oD,'class',7,e,s,gg)6155var fE=_n('view')6156_rz(z,fE,'class',8,e,s,gg)6157var cF=_oz(z,9,e,s,gg)6158_(fE,cF)6159_(oD,fE)6160var hG=_mz(z,'image',['bindtap',10,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)6161_(oD,hG)6162var oH=_n('view')6163_rz(z,oH,'class',15,e,s,gg)6164var cI=_mz(z,'image',['class',16,'mode',1,'src',2],[],e,s,gg)6165_(oH,cI)6166_(oD,oH)6167var oJ=_n('view')6168_rz(z,oJ,'class',19,e,s,gg)6169var lK=_n('view')6170_rz(z,lK,'class',20,e,s,gg)6171var tM=_n('view')6172_rz(z,tM,'class',21,e,s,gg)6173var eN=_oz(z,22,e,s,gg)6174_(tM,eN)6175_(lK,tM)6176var aL=_v()6177_(lK,aL)6178if(_oz(z,23,e,s,gg)){aL.wxVkey=16179var bO=_mz(z,'image',['class',24,'src',1],[],e,s,gg)6180_(aL,bO)6181}6182else{aL.wxVkey=26183var oP=_mz(z,'image',['class',26,'src',1],[],e,s,gg)6184_(aL,oP)6185}6186aL.wxXCkey=16187_(oJ,lK)6188var xQ=_mz(z,'view',['bindtap',28,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)6189var oR=_oz(z,32,e,s,gg)6190_(xQ,oR)6191var fS=_mz(z,'view',['bindtap',33,'class',1,'data-comkey',2,'data-eventid',3,'style',4],[],e,s,gg)6192var cT=_oz(z,38,e,s,gg)6193_(fS,cT)6194_(xQ,fS)6195var hU=_mz(z,'view',['class',39,'style',1],[],e,s,gg)6196var oV=_oz(z,41,e,s,gg)6197_(hU,oV)6198_(xQ,hU)6199_(oJ,xQ)6200_(oD,oJ)6201var cW=_n('view')6202_rz(z,cW,'class',42,e,s,gg)6203var oX=_mz(z,'image',['bindtap',43,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)6204_(cW,oX)6205var lY=_mz(z,'image',['bindtap',48,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)6206_(cW,lY)6207_(oD,cW)6208_(xC,oD)6209_(oB,xC)6210var aZ=_mz(z,'view',['bindtouchend',53,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)6211var e2=_mz(z,'navigator',['class',58,'url',1],[],e,s,gg)6212var b3=_n('view')6213_rz(z,b3,'class',60,e,s,gg)6214var o4=_mz(z,'image',['class',61,'src',1],[],e,s,gg)6215_(b3,o4)6216var x5=_n('view')6217_rz(z,x5,'class',63,e,s,gg)6218var o6=_n('view')6219_rz(z,o6,'class',64,e,s,gg)6220var f7=_oz(z,65,e,s,gg)6221_(o6,f7)6222_(x5,o6)6223var c8=_mz(z,'image',['class',66,'src',1],[],e,s,gg)6224_(x5,c8)6225_(b3,x5)6226_(e2,b3)6227_(aZ,e2)6228var t1=_v()6229_(aZ,t1)6230if(_oz(z,68,e,s,gg)){t1.wxVkey=16231var h9=_mz(z,'navigator',['class',69,'url',1],[],e,s,gg)6232var o0=_n('view')6233_rz(z,o0,'class',71,e,s,gg)6234var cAB=_mz(z,'image',['class',72,'src',1],[],e,s,gg)6235_(o0,cAB)6236var oBB=_n('view')6237_rz(z,oBB,'class',74,e,s,gg)6238var lCB=_n('view')6239_rz(z,lCB,'class',75,e,s,gg)6240var aDB=_oz(z,76,e,s,gg)6241_(lCB,aDB)6242_(oBB,lCB)6243var tEB=_mz(z,'image',['class',77,'src',1],[],e,s,gg)6244_(oBB,tEB)6245_(o0,oBB)6246_(h9,o0)6247_(t1,h9)6248}6249var eFB=_mz(z,'navigator',['class',79,'url',1],[],e,s,gg)6250var bGB=_n('view')6251_rz(z,bGB,'class',81,e,s,gg)6252var oHB=_mz(z,'image',['class',82,'src',1],[],e,s,gg)6253_(bGB,oHB)6254var xIB=_n('view')6255_rz(z,xIB,'class',84,e,s,gg)6256var oJB=_n('view')6257_rz(z,oJB,'class',85,e,s,gg)6258var fKB=_oz(z,86,e,s,gg)6259_(oJB,fKB)6260_(xIB,oJB)6261var cLB=_mz(z,'image',['class',87,'src',1],[],e,s,gg)6262_(xIB,cLB)6263_(bGB,xIB)6264_(eFB,bGB)6265_(aZ,eFB)6266var hMB=_mz(z,'navigator',['class',89,'url',1],[],e,s,gg)6267var oNB=_n('view')6268_rz(z,oNB,'class',91,e,s,gg)6269var cOB=_mz(z,'image',['class',92,'src',1],[],e,s,gg)6270_(oNB,cOB)6271var oPB=_n('view')6272_rz(z,oPB,'class',94,e,s,gg)6273var lQB=_n('view')6274_rz(z,lQB,'class',95,e,s,gg)6275var aRB=_oz(z,96,e,s,gg)6276_(lQB,aRB)6277_(oPB,lQB)6278var tSB=_mz(z,'image',['class',97,'src',1],[],e,s,gg)6279_(oPB,tSB)6280_(oNB,oPB)6281_(hMB,oNB)6282_(aZ,hMB)6283var eTB=_mz(z,'button',['class',99,'openType',1,'plain',2,'sessionFrom',3],[],e,s,gg)6284var bUB=_n('view')6285_rz(z,bUB,'class',103,e,s,gg)6286var oVB=_mz(z,'image',['class',104,'src',1],[],e,s,gg)6287_(bUB,oVB)6288var xWB=_n('view')6289_rz(z,xWB,'class',106,e,s,gg)6290var oXB=_n('view')6291_rz(z,oXB,'class',107,e,s,gg)6292var fYB=_oz(z,108,e,s,gg)6293_(oXB,fYB)6294_(xWB,oXB)6295var cZB=_mz(z,'image',['class',109,'src',1],[],e,s,gg)6296_(xWB,cZB)6297_(bUB,xWB)6298_(eTB,bUB)6299_(aZ,eTB)6300var h1B=_mz(z,'navigator',['class',111,'url',1],[],e,s,gg)6301var o2B=_n('view')6302_rz(z,o2B,'class',113,e,s,gg)6303var c3B=_mz(z,'image',['class',114,'src',1],[],e,s,gg)6304_(o2B,c3B)6305var o4B=_n('view')6306_rz(z,o4B,'class',116,e,s,gg)6307var l5B=_n('view')6308_rz(z,l5B,'class',117,e,s,gg)6309var a6B=_oz(z,118,e,s,gg)6310_(l5B,a6B)6311_(o4B,l5B)6312var t7B=_mz(z,'image',['class',119,'src',1],[],e,s,gg)6313_(o4B,t7B)6314_(o2B,o4B)6315_(h1B,o2B)6316_(aZ,h1B)6317var e8B=_mz(z,'navigator',['class',121,'url',1],[],e,s,gg)6318var b9B=_n('view')6319_rz(z,b9B,'class',123,e,s,gg)6320var o0B=_mz(z,'image',['class',124,'src',1],[],e,s,gg)6321_(b9B,o0B)6322var xAC=_n('view')6323_rz(z,xAC,'class',126,e,s,gg)6324var oBC=_n('view')6325_rz(z,oBC,'class',127,e,s,gg)6326var fCC=_oz(z,128,e,s,gg)6327_(oBC,fCC)6328_(xAC,oBC)6329var cDC=_mz(z,'image',['class',129,'src',1],[],e,s,gg)6330_(xAC,cDC)6331_(b9B,xAC)6332_(e8B,b9B)6333_(aZ,e8B)6334t1.wxXCkey=16335_(oB,aZ)6336_(r,oB)6337}catch(err){6338p_[b]=false6339throw err6340}6341p_[b]=false6342return r6343}6344var m25=function(e,s,r,gg){6345var z=gz$gwx_26()6346return r6347}6348e_[x[41]]={f:m25,j:[],i:[],ti:[],ic:[]}6349d_[x[42]]={}6350var m26=function(e,s,r,gg){6351var z=gz$gwx_27()6352var fQC=e_[x[42]].i6353_ai(fQC,x[43],e_,x[42],1,1)6354var cRC=_v()6355_(r,cRC)6356var hSC=_oz(z,1,e,s,gg)6357var oTC=_gd(x[42],hSC,e_,d_)6358if(oTC){6359var cUC=_1z(z,0,e,s,gg) || {}6360var cur_globalf=gg.f6361cRC.wxXCkey=36362oTC(cUC,cUC,cRC,gg)6363gg.f=cur_globalf6364}6365else _w(hSC,x[42],2,18)6366fQC.pop()6367return r6368}6369e_[x[42]]={f:m26,j:[],i:[],ti:[x[43]],ic:[]}6370d_[x[44]]={}6371d_[x[44]]["7f24077b"]=function(e,s,r,gg){6372var z=gz$gwx_28()6373var b=x[44]+':7f24077b'6374r.wxVkey=b6375gg.f=$gdc(f_["./pages/jifen.vue.wxml"],"",1)6376if(p_[b]){_wl(b,x[44]);return}6377p_[b]=true6378try{6379var oB=_n('view')6380_rz(z,oB,'class',1,e,s,gg)6381var oD=_n('view')6382_rz(z,oD,'class',2,e,s,gg)6383var fE=_oz(z,3,e,s,gg)6384_(oD,fE)6385_(oB,oD)6386var cF=_n('view')6387_rz(z,cF,'class',4,e,s,gg)6388var hG=_oz(z,5,e,s,gg)6389_(cF,hG)6390_(oB,cF)6391var xC=_v()6392_(oB,xC)6393if(_oz(z,6,e,s,gg)){xC.wxVkey=16394var oH=_n('view')6395_rz(z,oH,'class',7,e,s,gg)6396var cI=_n('view')6397_rz(z,cI,'class',8,e,s,gg)6398var oJ=_oz(z,9,e,s,gg)6399_(cI,oJ)6400_(oH,cI)6401var lK=_mz(z,'navigator',['class',10,'url',1],[],e,s,gg)6402var aL=_oz(z,12,e,s,gg)6403_(lK,aL)6404_(oH,lK)6405_(xC,oH)6406}6407xC.wxXCkey=16408_(r,oB)6409}catch(err){6410p_[b]=false6411throw err6412}6413p_[b]=false6414return r6415}6416var m27=function(e,s,r,gg){6417var z=gz$gwx_28()6418return r6419}6420e_[x[44]]={f:m27,j:[],i:[],ti:[],ic:[]}6421d_[x[45]]={}6422var m28=function(e,s,r,gg){6423var z=gz$gwx_29()6424var aXC=e_[x[45]].i6425_ai(aXC,x[46],e_,x[45],1,1)6426var tYC=_v()6427_(r,tYC)6428var eZC=_oz(z,1,e,s,gg)6429var b1C=_gd(x[45],eZC,e_,d_)6430if(b1C){6431var o2C=_1z(z,0,e,s,gg) || {}6432var cur_globalf=gg.f6433tYC.wxXCkey=36434b1C(o2C,o2C,tYC,gg)6435gg.f=cur_globalf6436}6437else _w(eZC,x[45],2,18)6438aXC.pop()6439return r6440}6441e_[x[45]]={f:m28,j:[],i:[],ti:[x[46]],ic:[]}6442d_[x[47]]={}6443d_[x[47]]["7429f00a"]=function(e,s,r,gg){6444var z=gz$gwx_30()6445var b=x[47]+':7429f00a'6446r.wxVkey=b6447gg.f=$gdc(f_["./pages/kecheng.vue.wxml"],"",1)6448if(p_[b]){_wl(b,x[47]);return}6449p_[b]=true6450try{6451var oB=_n('view')6452_rz(z,oB,'class',1,e,s,gg)6453var fE=_mz(z,'image',['class',2,'mode',1,'src',2],[],e,s,gg)6454_(oB,fE)6455var cF=_n('view')6456_rz(z,cF,'class',5,e,s,gg)6457var hG=_oz(z,6,e,s,gg)6458_(cF,hG)6459_(oB,cF)6460var oH=_mz(z,'view',['class',7,'scrollLeft',1,'scrollX',2],[],e,s,gg)6461var cI=_v()6462_(oH,cI)6463var oJ=function(aL,lK,tM,gg){6464var bO=_mz(z,'view',['bindtap',14,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],aL,lK,gg)6465var oP=_oz(z,19,aL,lK,gg)6466_(bO,oP)6467_(tM,bO)6468return tM6469}6470cI.wxXCkey=26471_2z(z,12,oJ,e,s,gg,cI,'item','index','index')6472_(oB,oH)6473var xC=_v()6474_(oB,xC)6475if(_oz(z,20,e,s,gg)){xC.wxVkey=16476var xQ=_mz(z,'image',['bindtouchend',21,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4,'mode',5,'src',6],[],e,s,gg)6477_(xC,xQ)6478}6479else{xC.wxVkey=26480var oR=_mz(z,'view',['bindtouchend',28,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)6481var fS=_v()6482_(oR,fS)6483var cT=function(oV,hU,cW,gg){6484var lY=_mz(z,'view',['class',37,'key',1],[],oV,hU,gg)6485var aZ=_mz(z,'view',['bindtap',39,'class',1,'data-comkey',2,'data-eventid',3],[],oV,hU,gg)6486var e2=_n('view')6487_rz(z,e2,'class',43,oV,hU,gg)6488var b3=_oz(z,44,oV,hU,gg)6489_(e2,b3)6490_(aZ,e2)6491var t1=_v()6492_(aZ,t1)6493if(_oz(z,45,oV,hU,gg)){t1.wxVkey=16494var o4=_n('view')6495_rz(z,o4,'class',46,oV,hU,gg)6496var x5=_oz(z,47,oV,hU,gg)6497_(o4,x5)6498_(t1,o4)6499}6500else{t1.wxVkey=26501var o6=_n('view')6502_rz(z,o6,'class',48,oV,hU,gg)6503var f7=_v()6504_(o6,f7)6505if(_oz(z,49,oV,hU,gg)){f7.wxVkey=16506var c8=_n('view')6507_rz(z,c8,'class',50,oV,hU,gg)6508var h9=_oz(z,51,oV,hU,gg)6509_(c8,h9)6510_(f7,c8)6511}6512else{f7.wxVkey=26513var o0=_mz(z,'image',['class',52,'src',1],[],oV,hU,gg)6514_(f7,o0)6515}6516f7.wxXCkey=16517_(t1,o6)6518}6519t1.wxXCkey=16520_(lY,aZ)6521_(cW,lY)6522return cW6523}6524fS.wxXCkey=26525_2z(z,35,cT,e,s,gg,fS,'item','index','index')6526_(xC,oR)6527}6528var oD=_v()6529_(oB,oD)6530if(_oz(z,54,e,s,gg)){oD.wxVkey=16531var cAB=_n('view')6532_rz(z,cAB,'class',55,e,s,gg)6533var oBB=_mz(z,'view',['bindtap',56,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)6534var lCB=_oz(z,60,e,s,gg)6535_(oBB,lCB)6536_(cAB,oBB)6537_(oD,cAB)6538}6539xC.wxXCkey=16540oD.wxXCkey=16541_(r,oB)6542}catch(err){6543p_[b]=false6544throw err6545}6546p_[b]=false6547return r6548}6549var m29=function(e,s,r,gg){6550var z=gz$gwx_30()6551return r6552}6553e_[x[47]]={f:m29,j:[],i:[],ti:[],ic:[]}6554d_[x[48]]={}6555var m30=function(e,s,r,gg){6556var z=gz$gwx_31()6557var f5C=e_[x[48]].i6558_ai(f5C,x[49],e_,x[48],1,1)6559var c6C=_v()6560_(r,c6C)6561var h7C=_oz(z,1,e,s,gg)6562var o8C=_gd(x[48],h7C,e_,d_)6563if(o8C){6564var c9C=_1z(z,0,e,s,gg) || {}6565var cur_globalf=gg.f6566c6C.wxXCkey=36567o8C(c9C,c9C,c6C,gg)6568gg.f=cur_globalf6569}6570else _w(h7C,x[48],2,18)6571f5C.pop()6572return r6573}6574e_[x[48]]={f:m30,j:[],i:[],ti:[x[49]],ic:[]}6575d_[x[50]]={}6576d_[x[50]]["6e718ba8"]=function(e,s,r,gg){6577var z=gz$gwx_32()6578var b=x[50]+':6e718ba8'6579r.wxVkey=b6580gg.f=$gdc(f_["./pages/kechenglist.vue.wxml"],"",1)6581if(p_[b]){_wl(b,x[50]);return}6582p_[b]=true6583try{6584var oB=_n('view')6585_rz(z,oB,'class',1,e,s,gg)6586var fE=_v()6587_(oB,fE)6588var cF=function(oH,hG,cI,gg){6589var lK=_mz(z,'view',['class',6,'key',1],[],oH,hG,gg)6590var aL=_mz(z,'view',['bindtap',8,'class',1,'data-comkey',2,'data-eventid',3],[],oH,hG,gg)6591var tM=_n('view')6592_rz(z,tM,'class',12,oH,hG,gg)6593var eN=_n('view')6594_rz(z,eN,'class',13,oH,hG,gg)6595var bO=_mz(z,'text',['class',14,'selectable',1],[],oH,hG,gg)6596var oP=_oz(z,16,oH,hG,gg)6597_(bO,oP)6598_(eN,bO)6599var xQ=_n('view')6600_rz(z,xQ,'class',17,oH,hG,gg)6601var fS=_n('view')6602_rz(z,fS,'class',18,oH,hG,gg)6603var cT=_oz(z,19,oH,hG,gg)6604_(fS,cT)6605_(xQ,fS)6606var hU=_n('view')6607_rz(z,hU,'class',20,oH,hG,gg)6608var oV=_oz(z,21,oH,hG,gg)6609_(hU,oV)6610_(xQ,hU)6611var oR=_v()6612_(xQ,oR)6613if(_oz(z,22,oH,hG,gg)){oR.wxVkey=16614var cW=_n('view')6615_rz(z,cW,'class',23,oH,hG,gg)6616var oX=_oz(z,24,oH,hG,gg)6617_(cW,oX)6618_(oR,cW)6619}6620else{oR.wxVkey=26621var lY=_n('view')6622_rz(z,lY,'class',25,oH,hG,gg)6623var aZ=_oz(z,26,oH,hG,gg)6624_(lY,aZ)6625_(oR,lY)6626}6627oR.wxXCkey=16628_(eN,xQ)6629_(tM,eN)6630var t1=_mz(z,'image',['class',27,'lazyLoad',1,'mode',2,'src',3],[],oH,hG,gg)6631_(tM,t1)6632_(aL,tM)6633_(lK,aL)6634_(cI,lK)6635return cI6636}6637fE.wxXCkey=26638_2z(z,4,cF,e,s,gg,fE,'item','index','index')6639var xC=_v()6640_(oB,xC)6641if(_oz(z,31,e,s,gg)){xC.wxVkey=16642var e2=_n('view')6643_rz(z,e2,'class',32,e,s,gg)6644var b3=_oz(z,33,e,s,gg)6645_(e2,b3)6646_(xC,e2)6647}6648var oD=_v()6649_(oB,oD)6650if(_oz(z,34,e,s,gg)){oD.wxVkey=16651var o4=_n('view')6652_rz(z,o4,'class',35,e,s,gg)6653var x5=_oz(z,36,e,s,gg)6654_(o4,x5)6655_(oD,o4)6656}6657xC.wxXCkey=16658oD.wxXCkey=16659_(r,oB)6660}catch(err){6661p_[b]=false6662throw err6663}6664p_[b]=false6665return r6666}6667var m31=function(e,s,r,gg){6668var z=gz$gwx_32()6669return r6670}6671e_[x[50]]={f:m31,j:[],i:[],ti:[],ic:[]}6672d_[x[51]]={}6673var m32=function(e,s,r,gg){6674var z=gz$gwx_33()6675var aBD=e_[x[51]].i6676_ai(aBD,x[52],e_,x[51],1,1)6677var tCD=_v()6678_(r,tCD)6679var eDD=_oz(z,1,e,s,gg)6680var bED=_gd(x[51],eDD,e_,d_)6681if(bED){6682var oFD=_1z(z,0,e,s,gg) || {}6683var cur_globalf=gg.f6684tCD.wxXCkey=36685bED(oFD,oFD,tCD,gg)6686gg.f=cur_globalf6687}6688else _w(eDD,x[51],2,18)6689aBD.pop()6690return r6691}6692e_[x[51]]={f:m32,j:[],i:[],ti:[x[52]],ic:[]}6693d_[x[53]]={}6694d_[x[53]]["5c503c04"]=function(e,s,r,gg){6695var z=gz$gwx_34()6696var b=x[53]+':5c503c04'6697r.wxVkey=b6698gg.f=$gdc(f_["./pages/kechengneirong.vue.wxml"],"",1)6699if(p_[b]){_wl(b,x[53]);return}6700p_[b]=true6701try{6702var oB=_n('view')6703_rz(z,oB,'class',1,e,s,gg)6704var xC=_n('view')6705_rz(z,xC,'class',2,e,s,gg)6706var oD=_oz(z,3,e,s,gg)6707_(xC,oD)6708_(oB,xC)6709var fE=_mz(z,'rich-text',['class',4,'nodes',1],[],e,s,gg)6710_(oB,fE)6711_(r,oB)6712}catch(err){6713p_[b]=false6714throw err6715}6716p_[b]=false6717return r6718}6719var m33=function(e,s,r,gg){6720var z=gz$gwx_34()6721return r6722}6723e_[x[53]]={f:m33,j:[],i:[],ti:[],ic:[]}6724d_[x[54]]={}6725var m34=function(e,s,r,gg){6726var z=gz$gwx_35()6727var fID=e_[x[54]].i6728_ai(fID,x[55],e_,x[54],1,1)6729var cJD=_v()6730_(r,cJD)6731var hKD=_oz(z,1,e,s,gg)6732var oLD=_gd(x[54],hKD,e_,d_)6733if(oLD){6734var cMD=_1z(z,0,e,s,gg) || {}6735var cur_globalf=gg.f6736cJD.wxXCkey=36737oLD(cMD,cMD,cJD,gg)6738gg.f=cur_globalf6739}6740else _w(hKD,x[54],2,18)6741fID.pop()6742return r6743}6744e_[x[54]]={f:m34,j:[],i:[],ti:[x[55]],ic:[]}6745d_[x[56]]={}6746d_[x[56]]["8c32d9c4"]=function(e,s,r,gg){6747var z=gz$gwx_36()6748var b=x[56]+':8c32d9c4'6749r.wxVkey=b6750gg.f=$gdc(f_["./pages/liaomeishizhan.vue.wxml"],"",1)6751if(p_[b]){_wl(b,x[56]);return}6752p_[b]=true6753try{6754var oB=_n('view')6755_rz(z,oB,'class',1,e,s,gg)6756var xC=_mz(z,'text',['class',2,'selectable',1],[],e,s,gg)6757var oD=_oz(z,4,e,s,gg)6758_(xC,oD)6759_(oB,xC)6760var fE=_mz(z,'rich-text',['class',5,'nodes',1],[],e,s,gg)6761_(oB,fE)6762var cF=_n('view')6763_rz(z,cF,'class',7,e,s,gg)6764var hG=_n('view')6765_rz(z,hG,'class',8,e,s,gg)6766var oH=_v()6767_(hG,oH)6768if(_oz(z,9,e,s,gg)){oH.wxVkey=16769var cI=_mz(z,'image',['bindtap',10,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)6770_(oH,cI)6771}6772else{oH.wxVkey=26773var oJ=_mz(z,'image',['bindtap',15,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)6774_(oH,oJ)6775}6776var lK=_n('view')6777_rz(z,lK,'class',20,e,s,gg)6778var aL=_oz(z,21,e,s,gg)6779_(lK,aL)6780_(hG,lK)6781oH.wxXCkey=16782_(cF,hG)6783var tM=_n('view')6784_rz(z,tM,'class',22,e,s,gg)6785var eN=_v()6786_(tM,eN)6787if(_oz(z,23,e,s,gg)){eN.wxVkey=16788var bO=_mz(z,'image',['bindtap',24,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)6789_(eN,bO)6790}6791else{eN.wxVkey=26792var oP=_mz(z,'image',['bindtap',29,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)6793_(eN,oP)6794}6795var xQ=_n('view')6796_rz(z,xQ,'class',34,e,s,gg)6797var oR=_oz(z,35,e,s,gg)6798_(xQ,oR)6799_(tM,xQ)6800eN.wxXCkey=16801_(cF,tM)6802_(oB,cF)6803_(r,oB)6804}catch(err){6805p_[b]=false6806throw err6807}6808p_[b]=false6809return r6810}6811var m35=function(e,s,r,gg){6812var z=gz$gwx_36()6813return r6814}6815e_[x[56]]={f:m35,j:[],i:[],ti:[],ic:[]}6816d_[x[57]]={}6817var m36=function(e,s,r,gg){6818var z=gz$gwx_37()6819var aPD=e_[x[57]].i6820_ai(aPD,x[58],e_,x[57],1,1)6821var tQD=_v()6822_(r,tQD)6823var eRD=_oz(z,1,e,s,gg)6824var bSD=_gd(x[57],eRD,e_,d_)6825if(bSD){6826var oTD=_1z(z,0,e,s,gg) || {}6827var cur_globalf=gg.f6828tQD.wxXCkey=36829bSD(oTD,oTD,tQD,gg)6830gg.f=cur_globalf6831}6832else _w(eRD,x[57],2,18)6833aPD.pop()6834return r6835}6836e_[x[57]]={f:m36,j:[],i:[],ti:[x[58]],ic:[]}6837d_[x[59]]={}6838d_[x[59]]["703e84bc"]=function(e,s,r,gg){6839var z=gz$gwx_38()6840var b=x[59]+':703e84bc'6841r.wxVkey=b6842gg.f=$gdc(f_["./pages/liaomeishizhanlist.vue.wxml"],"",1)6843if(p_[b]){_wl(b,x[59]);return}6844p_[b]=true6845try{6846var oB=_n('view')6847_rz(z,oB,'class',1,e,s,gg)6848var fE=_v()6849_(oB,fE)6850var cF=function(oH,hG,cI,gg){6851var lK=_mz(z,'view',['class',6,'key',1],[],oH,hG,gg)6852var aL=_mz(z,'view',['bindtap',8,'class',1,'data-comkey',2,'data-eventid',3],[],oH,hG,gg)6853var tM=_n('view')6854_rz(z,tM,'class',12,oH,hG,gg)6855var eN=_n('view')6856_rz(z,eN,'class',13,oH,hG,gg)6857var bO=_mz(z,'text',['class',14,'selectable',1],[],oH,hG,gg)6858var oP=_oz(z,16,oH,hG,gg)6859_(bO,oP)6860_(eN,bO)6861var xQ=_n('view')6862_rz(z,xQ,'class',17,oH,hG,gg)6863var oR=_oz(z,18,oH,hG,gg)6864_(xQ,oR)6865_(eN,xQ)6866_(tM,eN)6867var fS=_mz(z,'image',['class',19,'lazyLoad',1,'mode',2,'src',3],[],oH,hG,gg)6868_(tM,fS)6869_(aL,tM)6870_(lK,aL)6871_(cI,lK)6872return cI6873}6874fE.wxXCkey=26875_2z(z,4,cF,e,s,gg,fE,'item','index','index')6876var xC=_v()6877_(oB,xC)6878if(_oz(z,23,e,s,gg)){xC.wxVkey=16879var cT=_n('view')6880_rz(z,cT,'class',24,e,s,gg)6881var hU=_oz(z,25,e,s,gg)6882_(cT,hU)6883_(xC,cT)6884}6885var oD=_v()6886_(oB,oD)6887if(_oz(z,26,e,s,gg)){oD.wxVkey=16888var oV=_n('view')6889_rz(z,oV,'class',27,e,s,gg)6890var cW=_oz(z,28,e,s,gg)6891_(oV,cW)6892_(oD,oV)6893}6894xC.wxXCkey=16895oD.wxXCkey=16896_(r,oB)6897}catch(err){6898p_[b]=false6899throw err6900}6901p_[b]=false6902return r6903}6904var m37=function(e,s,r,gg){6905var z=gz$gwx_38()6906return r6907}6908e_[x[59]]={f:m37,j:[],i:[],ti:[],ic:[]}6909d_[x[60]]={}6910var m38=function(e,s,r,gg){6911var z=gz$gwx_39()6912var fWD=e_[x[60]].i6913_ai(fWD,x[61],e_,x[60],1,1)6914var cXD=_v()6915_(r,cXD)6916var hYD=_oz(z,1,e,s,gg)6917var oZD=_gd(x[60],hYD,e_,d_)6918if(oZD){6919var c1D=_1z(z,0,e,s,gg) || {}6920var cur_globalf=gg.f6921cXD.wxXCkey=36922oZD(c1D,c1D,cXD,gg)6923gg.f=cur_globalf6924}6925else _w(hYD,x[60],2,18)6926fWD.pop()6927return r6928}6929e_[x[60]]={f:m38,j:[],i:[],ti:[x[61]],ic:[]}6930d_[x[62]]={}6931d_[x[62]]["47188cfa"]=function(e,s,r,gg){6932var z=gz$gwx_40()6933var b=x[62]+':47188cfa'6934r.wxVkey=b6935gg.f=$gdc(f_["./pages/liaomeitaolu.vue.wxml"],"",1)6936if(p_[b]){_wl(b,x[62]);return}6937p_[b]=true6938try{6939var oB=_n('view')6940_rz(z,oB,'class',1,e,s,gg)6941var xC=_mz(z,'swiper',['bindchange',2,'circular',1,'class',2,'data-comkey',3,'data-eventid',4,'nextMargin',5,'previousMargin',6],[],e,s,gg)6942var oD=_v()6943_(xC,oD)6944var fE=function(hG,cF,oH,gg){6945var oJ=_n('swiper-item')6946_rz(z,oJ,'class',14,hG,cF,gg)6947var lK=_n('view')6948_rz(z,lK,'class',15,hG,cF,gg)6949var aL=_oz(z,16,hG,cF,gg)6950_(lK,aL)6951_(oJ,lK)6952var tM=_n('view')6953_rz(z,tM,'class',17,hG,cF,gg)6954var eN=_n('view')6955_rz(z,eN,'class',18,hG,cF,gg)6956var oP=_mz(z,'view',['bindtap',19,'class',1,'data-comkey',2,'data-eventid',3],[],hG,cF,gg)6957var xQ=_mz(z,'text',['class',23,'selectable',1],[],hG,cF,gg)6958var oR=_oz(z,25,hG,cF,gg)6959_(xQ,oR)6960_(oP,xQ)6961_(eN,oP)6962var fS=_mz(z,'view',['bindtap',26,'class',1,'data-comkey',2,'data-eventid',3],[],hG,cF,gg)6963var cT=_mz(z,'view',['class',30,'style',1],[],hG,cF,gg)6964var hU=_oz(z,32,hG,cF,gg)6965_(cT,hU)6966_(fS,cT)6967var oV=_mz(z,'text',['class',33,'selectable',1],[],hG,cF,gg)6968var cW=_oz(z,35,hG,cF,gg)6969_(oV,cW)6970_(fS,oV)6971_(eN,fS)6972var oX=_mz(z,'view',['bindtap',36,'class',1,'data-comkey',2,'data-eventid',3],[],hG,cF,gg)6973var lY=_mz(z,'view',['class',40,'style',1],[],hG,cF,gg)6974var aZ=_oz(z,42,hG,cF,gg)6975_(lY,aZ)6976_(oX,lY)6977var t1=_mz(z,'text',['class',43,'selectable',1],[],hG,cF,gg)6978var e2=_oz(z,45,hG,cF,gg)6979_(t1,e2)6980_(oX,t1)6981_(eN,oX)6982var b3=_n('view')6983_rz(z,b3,'class',46,hG,cF,gg)6984var o4=_mz(z,'view',['class',47,'style',1],[],hG,cF,gg)6985var x5=_oz(z,49,hG,cF,gg)6986_(o4,x5)6987_(b3,o4)6988_(eN,b3)6989var o6=_v()6990_(eN,o6)6991var f7=function(h9,c8,o0,gg){6992var oBB=_mz(z,'view',['class',54,'key',1],[],h9,c8,gg)6993var lCB=_v()6994_(oBB,lCB)6995if(_oz(z,56,h9,c8,gg)){lCB.wxVkey=16996var tEB=_n('view')6997_rz(z,tEB,'class',57,h9,c8,gg)6998var eFB=_mz(z,'image',['class',58,'src',1],[],h9,c8,gg)6999_(tEB,eFB)7000var bGB=_mz(z,'view',['bindtap',60,'class',1,'data-comkey',2,'data-eventid',3],[],h9,c8,gg)7001var oHB=_mz(z,'text',['class',64,'selectable',1],[],h9,c8,gg)7002var xIB=_oz(z,66,h9,c8,gg)7003_(oHB,xIB)7004_(bGB,oHB)7005_(tEB,bGB)7006_(lCB,tEB)7007}7008var aDB=_v()7009_(oBB,aDB)7010if(_oz(z,67,h9,c8,gg)){aDB.wxVkey=17011var oJB=_n('view')7012_rz(z,oJB,'class',68,h9,c8,gg)7013var fKB=_mz(z,'image',['class',69,'src',1],[],h9,c8,gg)7014_(oJB,fKB)7015var cLB=_mz(z,'view',['bindtap',71,'class',1,'data-comkey',2,'data-eventid',3],[],h9,c8,gg)7016var hMB=_mz(z,'text',['class',75,'selectable',1],[],h9,c8,gg)7017var oNB=_oz(z,77,h9,c8,gg)7018_(hMB,oNB)7019_(cLB,hMB)7020_(oJB,cLB)7021_(aDB,oJB)7022}7023lCB.wxXCkey=17024aDB.wxXCkey=17025_(o0,oBB)7026return o07027}7028o6.wxXCkey=27029_2z(z,52,f7,hG,cF,gg,o6,'minitem','minindex','minindex')7030var bO=_v()7031_(eN,bO)7032if(_oz(z,78,hG,cF,gg)){bO.wxVkey=17033var cOB=_n('view')7034_rz(z,cOB,'class',79,hG,cF,gg)7035var oPB=_n('view')7036_rz(z,oPB,'class',80,hG,cF,gg)7037var lQB=_mz(z,'view',['class',81,'style',1],[],hG,cF,gg)7038var aRB=_oz(z,83,hG,cF,gg)7039_(lQB,aRB)7040_(oPB,lQB)7041_(cOB,oPB)7042var tSB=_mz(z,'view',['bindtap',84,'class',1,'data-comkey',2,'data-eventid',3],[],hG,cF,gg)7043var eTB=_mz(z,'text',['class',88,'selectable',1],[],hG,cF,gg)7044var bUB=_oz(z,90,hG,cF,gg)7045_(eTB,bUB)7046_(tSB,eTB)7047_(cOB,tSB)7048_(bO,cOB)7049}7050bO.wxXCkey=17051_(tM,eN)7052_(oJ,tM)7053_(oH,oJ)7054return oH7055}7056oD.wxXCkey=27057_2z(z,11,fE,e,s,gg,oD,'item','index','index')7058_(oB,xC)7059_(r,oB)7060}catch(err){7061p_[b]=false7062throw err7063}7064p_[b]=false7065return r7066}7067var m39=function(e,s,r,gg){7068var z=gz$gwx_40()7069return r7070}7071e_[x[62]]={f:m39,j:[],i:[],ti:[],ic:[]}7072d_[x[63]]={}7073var m40=function(e,s,r,gg){7074var z=gz$gwx_41()7075var a4D=e_[x[63]].i7076_ai(a4D,x[64],e_,x[63],1,1)7077var t5D=_v()7078_(r,t5D)7079var e6D=_oz(z,1,e,s,gg)7080var b7D=_gd(x[63],e6D,e_,d_)7081if(b7D){7082var o8D=_1z(z,0,e,s,gg) || {}7083var cur_globalf=gg.f7084t5D.wxXCkey=37085b7D(o8D,o8D,t5D,gg)7086gg.f=cur_globalf7087}7088else _w(e6D,x[63],2,18)7089a4D.pop()7090return r7091}7092e_[x[63]]={f:m40,j:[],i:[],ti:[x[64]],ic:[]}7093d_[x[65]]={}7094d_[x[65]]["842f9ed0"]=function(e,s,r,gg){7095var z=gz$gwx_42()7096var b=x[65]+':842f9ed0'7097r.wxVkey=b7098gg.f=$gdc(f_["./pages/liaomeitaolulist.vue.wxml"],"",1)7099if(p_[b]){_wl(b,x[65]);return}7100p_[b]=true7101try{7102var oB=_mz(z,'view',['bindtouchend',1,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)7103var xC=_n('view')7104_rz(z,xC,'class',6,e,s,gg)7105_(oB,xC)7106var oD=_n('view')7107_rz(z,oD,'class',7,e,s,gg)7108var fE=_n('view')7109_rz(z,fE,'class',8,e,s,gg)7110var cF=_n('view')7111_rz(z,cF,'class',9,e,s,gg)7112_(fE,cF)7113var hG=_n('biaoti')7114_rz(z,hG,'class',10,e,s,gg)7115var oH=_oz(z,11,e,s,gg)7116_(hG,oH)7117_(fE,hG)7118_(oD,fE)7119var cI=_n('view')7120_rz(z,cI,'class',12,e,s,gg)7121var oJ=_mz(z,'button',['bindtap',13,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7122var lK=_oz(z,19,e,s,gg)7123_(oJ,lK)7124_(cI,oJ)7125var aL=_mz(z,'button',['bindtap',20,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7126var tM=_oz(z,26,e,s,gg)7127_(aL,tM)7128_(cI,aL)7129var eN=_mz(z,'button',['bindtap',27,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7130var bO=_oz(z,33,e,s,gg)7131_(eN,bO)7132_(cI,eN)7133_(oD,cI)7134var oP=_n('view')7135_rz(z,oP,'class',34,e,s,gg)7136var xQ=_mz(z,'button',['bindtap',35,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7137var oR=_oz(z,41,e,s,gg)7138_(xQ,oR)7139_(oP,xQ)7140var fS=_mz(z,'button',['bindtap',42,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7141var cT=_oz(z,48,e,s,gg)7142_(fS,cT)7143_(oP,fS)7144var hU=_mz(z,'button',['bindtap',49,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7145var oV=_oz(z,55,e,s,gg)7146_(hU,oV)7147_(oP,hU)7148_(oD,oP)7149var cW=_n('view')7150_rz(z,cW,'class',56,e,s,gg)7151var oX=_mz(z,'button',['bindtap',57,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7152var lY=_oz(z,63,e,s,gg)7153_(oX,lY)7154_(cW,oX)7155var aZ=_mz(z,'button',['bindtap',64,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7156var t1=_oz(z,70,e,s,gg)7157_(aZ,t1)7158_(cW,aZ)7159var e2=_mz(z,'button',['bindtap',71,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7160var b3=_oz(z,77,e,s,gg)7161_(e2,b3)7162_(cW,e2)7163_(oD,cW)7164var o4=_n('view')7165_rz(z,o4,'class',78,e,s,gg)7166var x5=_mz(z,'button',['bindtap',79,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7167var o6=_oz(z,85,e,s,gg)7168_(x5,o6)7169_(o4,x5)7170var f7=_mz(z,'button',['bindtap',86,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7171var c8=_oz(z,92,e,s,gg)7172_(f7,c8)7173_(o4,f7)7174_(oD,o4)7175_(oB,oD)7176var h9=_n('view')7177_rz(z,h9,'class',93,e,s,gg)7178var o0=_n('view')7179_rz(z,o0,'class',94,e,s,gg)7180var cAB=_n('view')7181_rz(z,cAB,'class',95,e,s,gg)7182_(o0,cAB)7183var oBB=_n('biaoti')7184_rz(z,oBB,'class',96,e,s,gg)7185var lCB=_oz(z,97,e,s,gg)7186_(oBB,lCB)7187_(o0,oBB)7188_(h9,o0)7189var aDB=_n('view')7190_rz(z,aDB,'class',98,e,s,gg)7191var tEB=_mz(z,'button',['bindtap',99,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7192var eFB=_oz(z,105,e,s,gg)7193_(tEB,eFB)7194_(aDB,tEB)7195var bGB=_mz(z,'button',['bindtap',106,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7196var oHB=_oz(z,112,e,s,gg)7197_(bGB,oHB)7198_(aDB,bGB)7199var xIB=_mz(z,'button',['bindtap',113,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7200var oJB=_oz(z,119,e,s,gg)7201_(xIB,oJB)7202_(aDB,xIB)7203_(h9,aDB)7204var fKB=_n('view')7205_rz(z,fKB,'class',120,e,s,gg)7206var cLB=_mz(z,'button',['bindtap',121,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7207var hMB=_oz(z,127,e,s,gg)7208_(cLB,hMB)7209_(fKB,cLB)7210var oNB=_mz(z,'button',['bindtap',128,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7211var cOB=_oz(z,134,e,s,gg)7212_(oNB,cOB)7213_(fKB,oNB)7214var oPB=_mz(z,'button',['bindtap',135,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7215var lQB=_oz(z,141,e,s,gg)7216_(oPB,lQB)7217_(fKB,oPB)7218_(h9,fKB)7219var aRB=_n('view')7220_rz(z,aRB,'class',142,e,s,gg)7221var tSB=_mz(z,'button',['bindtap',143,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7222var eTB=_oz(z,149,e,s,gg)7223_(tSB,eTB)7224_(aRB,tSB)7225_(h9,aRB)7226_(oB,h9)7227var bUB=_n('view')7228_rz(z,bUB,'class',150,e,s,gg)7229var oVB=_n('view')7230_rz(z,oVB,'class',151,e,s,gg)7231var xWB=_n('view')7232_rz(z,xWB,'class',152,e,s,gg)7233_(oVB,xWB)7234var oXB=_n('biaoti')7235_rz(z,oXB,'class',153,e,s,gg)7236var fYB=_oz(z,154,e,s,gg)7237_(oXB,fYB)7238_(oVB,oXB)7239_(bUB,oVB)7240var cZB=_n('view')7241_rz(z,cZB,'class',155,e,s,gg)7242var h1B=_mz(z,'button',['bindtap',156,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7243var o2B=_oz(z,162,e,s,gg)7244_(h1B,o2B)7245_(cZB,h1B)7246var c3B=_mz(z,'button',['bindtap',163,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7247var o4B=_oz(z,169,e,s,gg)7248_(c3B,o4B)7249_(cZB,c3B)7250var l5B=_mz(z,'button',['bindtap',170,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7251var a6B=_oz(z,176,e,s,gg)7252_(l5B,a6B)7253_(cZB,l5B)7254_(bUB,cZB)7255var t7B=_n('view')7256_rz(z,t7B,'class',177,e,s,gg)7257var e8B=_mz(z,'button',['bindtap',178,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7258var b9B=_oz(z,184,e,s,gg)7259_(e8B,b9B)7260_(t7B,e8B)7261var o0B=_mz(z,'button',['bindtap',185,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7262var xAC=_oz(z,191,e,s,gg)7263_(o0B,xAC)7264_(t7B,o0B)7265var oBC=_mz(z,'button',['bindtap',192,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7266var fCC=_oz(z,198,e,s,gg)7267_(oBC,fCC)7268_(t7B,oBC)7269_(bUB,t7B)7270var cDC=_n('view')7271_rz(z,cDC,'class',199,e,s,gg)7272var hEC=_mz(z,'button',['bindtap',200,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7273var oFC=_oz(z,206,e,s,gg)7274_(hEC,oFC)7275_(cDC,hEC)7276var cGC=_mz(z,'button',['bindtap',207,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7277var oHC=_oz(z,213,e,s,gg)7278_(cGC,oHC)7279_(cDC,cGC)7280var lIC=_mz(z,'button',['bindtap',214,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7281var aJC=_oz(z,220,e,s,gg)7282_(lIC,aJC)7283_(cDC,lIC)7284_(bUB,cDC)7285var tKC=_n('view')7286_rz(z,tKC,'class',221,e,s,gg)7287var eLC=_mz(z,'button',['bindtap',222,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7288var bMC=_oz(z,228,e,s,gg)7289_(eLC,bMC)7290_(tKC,eLC)7291_(bUB,tKC)7292_(oB,bUB)7293var oNC=_n('view')7294_rz(z,oNC,'class',229,e,s,gg)7295var xOC=_n('view')7296_rz(z,xOC,'class',230,e,s,gg)7297var oPC=_n('view')7298_rz(z,oPC,'class',231,e,s,gg)7299_(xOC,oPC)7300var fQC=_n('biaoti')7301_rz(z,fQC,'class',232,e,s,gg)7302var cRC=_oz(z,233,e,s,gg)7303_(fQC,cRC)7304_(xOC,fQC)7305_(oNC,xOC)7306var hSC=_n('view')7307_rz(z,hSC,'class',234,e,s,gg)7308var oTC=_mz(z,'button',['bindtap',235,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7309var cUC=_oz(z,241,e,s,gg)7310_(oTC,cUC)7311_(hSC,oTC)7312var oVC=_mz(z,'button',['bindtap',242,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7313var lWC=_oz(z,248,e,s,gg)7314_(oVC,lWC)7315_(hSC,oVC)7316var aXC=_mz(z,'button',['bindtap',249,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7317var tYC=_oz(z,255,e,s,gg)7318_(aXC,tYC)7319_(hSC,aXC)7320_(oNC,hSC)7321var eZC=_n('view')7322_rz(z,eZC,'class',256,e,s,gg)7323var b1C=_mz(z,'button',['bindtap',257,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7324var o2C=_oz(z,263,e,s,gg)7325_(b1C,o2C)7326_(eZC,b1C)7327var x3C=_mz(z,'button',['bindtap',264,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7328var o4C=_oz(z,270,e,s,gg)7329_(x3C,o4C)7330_(eZC,x3C)7331var f5C=_mz(z,'button',['bindtap',271,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7332var c6C=_oz(z,277,e,s,gg)7333_(f5C,c6C)7334_(eZC,f5C)7335_(oNC,eZC)7336_(oB,oNC)7337var h7C=_n('view')7338_rz(z,h7C,'class',278,e,s,gg)7339var o8C=_n('view')7340_rz(z,o8C,'class',279,e,s,gg)7341var c9C=_n('view')7342_rz(z,c9C,'class',280,e,s,gg)7343_(o8C,c9C)7344var o0C=_n('biaoti')7345_rz(z,o0C,'class',281,e,s,gg)7346var lAD=_oz(z,282,e,s,gg)7347_(o0C,lAD)7348_(o8C,o0C)7349_(h7C,o8C)7350var aBD=_n('view')7351_rz(z,aBD,'class',283,e,s,gg)7352var tCD=_mz(z,'button',['bindtap',284,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7353var eDD=_oz(z,290,e,s,gg)7354_(tCD,eDD)7355_(aBD,tCD)7356var bED=_mz(z,'button',['bindtap',291,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7357var oFD=_oz(z,297,e,s,gg)7358_(bED,oFD)7359_(aBD,bED)7360var xGD=_mz(z,'button',['bindtap',298,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7361var oHD=_oz(z,304,e,s,gg)7362_(xGD,oHD)7363_(aBD,xGD)7364_(h7C,aBD)7365var fID=_n('view')7366_rz(z,fID,'class',305,e,s,gg)7367var cJD=_mz(z,'button',['bindtap',306,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7368var hKD=_oz(z,312,e,s,gg)7369_(cJD,hKD)7370_(fID,cJD)7371var oLD=_mz(z,'button',['bindtap',313,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7372var cMD=_oz(z,319,e,s,gg)7373_(oLD,cMD)7374_(fID,oLD)7375var oND=_mz(z,'button',['bindtap',320,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7376var lOD=_oz(z,326,e,s,gg)7377_(oND,lOD)7378_(fID,oND)7379_(h7C,fID)7380var aPD=_n('view')7381_rz(z,aPD,'class',327,e,s,gg)7382var tQD=_mz(z,'button',['bindtap',328,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7383var eRD=_oz(z,334,e,s,gg)7384_(tQD,eRD)7385_(aPD,tQD)7386var bSD=_mz(z,'button',['bindtap',335,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7387var oTD=_oz(z,341,e,s,gg)7388_(bSD,oTD)7389_(aPD,bSD)7390var xUD=_mz(z,'button',['bindtap',342,'class',1,'data-comkey',2,'data-eventid',3,'size',4,'type',5],[],e,s,gg)7391var oVD=_oz(z,348,e,s,gg)7392_(xUD,oVD)7393_(aPD,xUD)7394_(h7C,aPD)7395_(oB,h7C)7396var fWD=_n('view')7397_rz(z,fWD,'class',349,e,s,gg)7398_(oB,fWD)7399_(r,oB)7400}catch(err){7401p_[b]=false7402throw err7403}7404p_[b]=false7405return r7406}7407var m41=function(e,s,r,gg){7408var z=gz$gwx_42()7409return r7410}7411e_[x[65]]={f:m41,j:[],i:[],ti:[],ic:[]}7412d_[x[66]]={}7413var m42=function(e,s,r,gg){7414var z=gz$gwx_43()7415var fAE=e_[x[66]].i7416_ai(fAE,x[67],e_,x[66],1,1)7417var cBE=_v()7418_(r,cBE)7419var hCE=_oz(z,1,e,s,gg)7420var oDE=_gd(x[66],hCE,e_,d_)7421if(oDE){7422var cEE=_1z(z,0,e,s,gg) || {}7423var cur_globalf=gg.f7424cBE.wxXCkey=37425oDE(cEE,cEE,cBE,gg)7426gg.f=cur_globalf7427}7428else _w(hCE,x[66],2,18)7429fAE.pop()7430return r7431}7432e_[x[66]]={f:m42,j:[],i:[],ti:[x[67]],ic:[]}7433d_[x[68]]={}7434d_[x[68]]["d1f180fc"]=function(e,s,r,gg){7435var z=gz$gwx_44()7436var b=x[68]+':d1f180fc'7437r.wxVkey=b7438gg.f=$gdc(f_["./pages/phonenumber.vue.wxml"],"",1)7439if(p_[b]){_wl(b,x[68]);return}7440p_[b]=true7441try{7442var oB=_n('view')7443_rz(z,oB,'class',1,e,s,gg)7444var xC=_mz(z,'image',['class',2,'src',1],[],e,s,gg)7445_(oB,xC)7446var oD=_n('view')7447_rz(z,oD,'class',4,e,s,gg)7448var fE=_oz(z,5,e,s,gg)7449_(oD,fE)7450_(oB,oD)7451var cF=_n('view')7452_rz(z,cF,'class',6,e,s,gg)7453var hG=_oz(z,7,e,s,gg)7454_(cF,hG)7455_(oB,cF)7456var oH=_n('view')7457_rz(z,oH,'class',8,e,s,gg)7458var cI=_oz(z,9,e,s,gg)7459_(oH,cI)7460_(oB,oH)7461var oJ=_n('view')7462_rz(z,oJ,'class',10,e,s,gg)7463var lK=_mz(z,'button',['bindgetphonenumber',11,'class',1,'openType',2,'type',3],[],e,s,gg)7464var aL=_oz(z,15,e,s,gg)7465_(lK,aL)7466_(oJ,lK)7467_(oB,oJ)7468_(r,oB)7469}catch(err){7470p_[b]=false7471throw err7472}7473p_[b]=false7474return r7475}7476var m43=function(e,s,r,gg){7477var z=gz$gwx_44()7478return r7479}7480e_[x[68]]={f:m43,j:[],i:[],ti:[],ic:[]}7481d_[x[69]]={}7482var m44=function(e,s,r,gg){7483var z=gz$gwx_45()7484var aHE=e_[x[69]].i7485_ai(aHE,x[70],e_,x[69],1,1)7486var tIE=_v()7487_(r,tIE)7488var eJE=_oz(z,1,e,s,gg)7489var bKE=_gd(x[69],eJE,e_,d_)7490if(bKE){7491var oLE=_1z(z,0,e,s,gg) || {}7492var cur_globalf=gg.f7493tIE.wxXCkey=37494bKE(oLE,oLE,tIE,gg)7495gg.f=cur_globalf7496}7497else _w(eJE,x[69],2,18)7498aHE.pop()7499return r7500}7501e_[x[69]]={f:m44,j:[],i:[],ti:[x[70]],ic:[]}7502d_[x[71]]={}7503d_[x[71]]["105add14"]=function(e,s,r,gg){7504var z=gz$gwx_46()7505var b=x[71]+':105add14'7506r.wxVkey=b7507gg.f=$gdc(f_["./pages/qingganbaike.vue.wxml"],"",1)7508if(p_[b]){_wl(b,x[71]);return}7509p_[b]=true7510try{7511var oB=_n('view')7512_rz(z,oB,'class',1,e,s,gg)7513var xC=_n('view')7514_rz(z,xC,'class',2,e,s,gg)7515var oD=_v()7516_(xC,oD)7517var fE=function(hG,cF,oH,gg){7518var oJ=_mz(z,'view',['class',7,'key',1],[],hG,cF,gg)7519var lK=_mz(z,'view',['bindtap',9,'class',1,'data-comkey',2,'data-eventid',3],[],hG,cF,gg)7520var aL=_mz(z,'image',['class',13,'mode',1,'src',2],[],hG,cF,gg)7521_(lK,aL)7522var tM=_n('view')7523_rz(z,tM,'class',16,hG,cF,gg)7524var eN=_oz(z,17,hG,cF,gg)7525_(tM,eN)7526_(lK,tM)7527_(oJ,lK)7528_(oH,oJ)7529return oH7530}7531oD.wxXCkey=27532_2z(z,5,fE,e,s,gg,oD,'item','index','index')7533_(oB,xC)7534var bO=_n('view')7535_rz(z,bO,'class',18,e,s,gg)7536var oP=_n('view')7537_rz(z,oP,'class',19,e,s,gg)7538var xQ=_mz(z,'image',['class',20,'mode',1,'src',2],[],e,s,gg)7539_(oP,xQ)7540_(bO,oP)7541var oR=_n('view')7542_rz(z,oR,'class',23,e,s,gg)7543var fS=_n('view')7544_rz(z,fS,'class',24,e,s,gg)7545var cT=_v()7546_(fS,cT)7547var hU=function(cW,oV,oX,gg){7548var aZ=_mz(z,'view',['class',29,'key',1],[],cW,oV,gg)7549var t1=_mz(z,'view',['bindtap',31,'class',1,'data-comkey',2,'data-eventid',3],[],cW,oV,gg)7550var e2=_n('view')7551_rz(z,e2,'class',35,cW,oV,gg)7552var b3=_mz(z,'image',['class',36,'mode',1,'src',2],[],cW,oV,gg)7553_(e2,b3)7554var o4=_n('view')7555_rz(z,o4,'class',39,cW,oV,gg)7556var x5=_oz(z,40,cW,oV,gg)7557_(o4,x5)7558_(e2,o4)7559_(t1,e2)7560var o6=_n('view')7561_rz(z,o6,'class',41,cW,oV,gg)7562var f7=_oz(z,42,cW,oV,gg)7563_(o6,f7)7564_(t1,o6)7565_(aZ,t1)7566_(oX,aZ)7567return oX7568}7569cT.wxXCkey=27570_2z(z,27,hU,e,s,gg,cT,'item','index','index')7571_(oR,fS)7572_(bO,oR)7573_(oB,bO)7574var c8=_n('view')7575_rz(z,c8,'class',43,e,s,gg)7576var h9=_n('view')7577_rz(z,h9,'class',44,e,s,gg)7578var o0=_mz(z,'image',['class',45,'mode',1,'src',2],[],e,s,gg)7579_(h9,o0)7580_(c8,h9)7581var cAB=_n('view')7582_rz(z,cAB,'class',48,e,s,gg)7583var oBB=_n('view')7584_rz(z,oBB,'class',49,e,s,gg)7585var lCB=_v()7586_(oBB,lCB)7587var aDB=function(eFB,tEB,bGB,gg){7588var xIB=_mz(z,'view',['class',54,'key',1],[],eFB,tEB,gg)7589var oJB=_mz(z,'view',['bindtap',56,'class',1,'data-comkey',2,'data-eventid',3],[],eFB,tEB,gg)7590var fKB=_n('view')7591_rz(z,fKB,'class',60,eFB,tEB,gg)7592var cLB=_mz(z,'image',['class',61,'mode',1,'src',2],[],eFB,tEB,gg)7593_(fKB,cLB)7594var hMB=_n('view')7595_rz(z,hMB,'class',64,eFB,tEB,gg)7596var oNB=_oz(z,65,eFB,tEB,gg)7597_(hMB,oNB)7598_(fKB,hMB)7599_(oJB,fKB)7600var cOB=_n('view')7601_rz(z,cOB,'class',66,eFB,tEB,gg)7602var oPB=_oz(z,67,eFB,tEB,gg)7603_(cOB,oPB)7604_(oJB,cOB)7605_(xIB,oJB)7606_(bGB,xIB)7607return bGB7608}7609lCB.wxXCkey=27610_2z(z,52,aDB,e,s,gg,lCB,'item','index','index')7611_(cAB,oBB)7612_(c8,cAB)7613_(oB,c8)7614_(r,oB)7615}catch(err){7616p_[b]=false7617throw err7618}7619p_[b]=false7620return r7621}7622var m45=function(e,s,r,gg){7623var z=gz$gwx_46()7624return r7625}7626e_[x[71]]={f:m45,j:[],i:[],ti:[],ic:[]}7627d_[x[72]]={}7628var m46=function(e,s,r,gg){7629var z=gz$gwx_47()7630var fOE=e_[x[72]].i7631_ai(fOE,x[73],e_,x[72],1,1)7632var cPE=_v()7633_(r,cPE)7634var hQE=_oz(z,1,e,s,gg)7635var oRE=_gd(x[72],hQE,e_,d_)7636if(oRE){7637var cSE=_1z(z,0,e,s,gg) || {}7638var cur_globalf=gg.f7639cPE.wxXCkey=37640oRE(cSE,cSE,cPE,gg)7641gg.f=cur_globalf7642}7643else _w(hQE,x[72],2,18)7644fOE.pop()7645return r7646}7647e_[x[72]]={f:m46,j:[],i:[],ti:[x[73]],ic:[]}7648d_[x[74]]={}7649d_[x[74]]["07b924e8"]=function(e,s,r,gg){7650var z=gz$gwx_48()7651var b=x[74]+':07b924e8'7652r.wxVkey=b7653gg.f=$gdc(f_["./pages/searchpage.vue.wxml"],"",1)7654if(p_[b]){_wl(b,x[74]);return}7655p_[b]=true7656try{7657var oB=_n('view')7658_rz(z,oB,'class',1,e,s,gg)7659var fE=_n('view')7660_rz(z,fE,'class',2,e,s,gg)7661var hG=_n('view')7662_rz(z,hG,'class',3,e,s,gg)7663var cI=_mz(z,'icon',['class',4,'size',1,'type',2],[],e,s,gg)7664_(hG,cI)7665var oJ=_mz(z,'input',['bindblur',7,'bindconfirm',1,'bindfocus',2,'bindinput',3,'class',4,'confirmType',5,'data-comkey',6,'data-eventid',7,'focus',8,'maxlength',9,'placeholder',10,'type',11,'value',12],[],e,s,gg)7666_(hG,oJ)7667var oH=_v()7668_(hG,oH)7669if(_oz(z,20,e,s,gg)){oH.wxVkey=17670var lK=_mz(z,'view',['bindtap',21,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)7671var aL=_n('view')7672_rz(z,aL,'class',25,e,s,gg)7673var tM=_mz(z,'icon',['class',26,'size',1,'type',2],[],e,s,gg)7674_(aL,tM)7675_(lK,aL)7676_(oH,lK)7677}7678oH.wxXCkey=17679_(fE,hG)7680var cF=_v()7681_(fE,cF)7682if(_oz(z,29,e,s,gg)){cF.wxVkey=17683var eN=_n('view')7684_rz(z,eN,'class',30,e,s,gg)7685var bO=_v()7686_(eN,bO)7687var oP=_oz(z,35,e,s,gg)7688var xQ=_gd(x[74],oP,e_,d_)7689if(xQ){7690var oR=_1z(z,32,e,s,gg) || {}7691var cur_globalf=gg.f7692bO.wxXCkey=37693xQ(oR,oR,bO,gg)7694gg.f=cur_globalf7695}7696else _w(oP,x[74],1,1231)7697_(cF,eN)7698}7699cF.wxXCkey=17700_(oB,fE)7701var xC=_v()7702_(oB,xC)7703if(_oz(z,36,e,s,gg)){xC.wxVkey=17704var fS=_mz(z,'view',['bindtouchend',37,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)7705var cT=_v()7706_(fS,cT)7707if(_oz(z,42,e,s,gg)){cT.wxVkey=17708var oX=_n('view')7709_rz(z,oX,'class',43,e,s,gg)7710var lY=_v()7711_(oX,lY)7712if(_oz(z,44,e,s,gg)){lY.wxVkey=17713var aZ=_v()7714_(lY,aZ)7715var t1=_oz(z,46,e,s,gg)7716var e2=_gd(x[74],t1,e_,d_)7717if(e2){7718var b3=_1z(z,45,e,s,gg) || {}7719var cur_globalf=gg.f7720aZ.wxXCkey=37721e2(b3,b3,aZ,gg)7722gg.f=cur_globalf7723}7724else _w(t1,x[74],1,1613)7725}7726var o4=_v()7727_(oX,o4)7728var x5=_oz(z,51,e,s,gg)7729var o6=_gd(x[74],x5,e_,d_)7730if(o6){7731var f7=_1z(z,48,e,s,gg) || {}7732var cur_globalf=gg.f7733o4.wxXCkey=37734o6(f7,f7,o4,gg)7735gg.f=cur_globalf7736}7737else _w(x5,x[74],1,1783)7738lY.wxXCkey=17739_(cT,oX)7740}7741var hU=_v()7742_(fS,hU)7743if(_oz(z,52,e,s,gg)){hU.wxVkey=17744var c8=_n('view')7745_rz(z,c8,'class',53,e,s,gg)7746var h9=_v()7747_(c8,h9)7748if(_oz(z,54,e,s,gg)){h9.wxVkey=17749var o0=_v()7750_(h9,o0)7751var cAB=_oz(z,56,e,s,gg)7752var oBB=_gd(x[74],cAB,e_,d_)7753if(oBB){7754var lCB=_1z(z,55,e,s,gg) || {}7755var cur_globalf=gg.f7756o0.wxXCkey=37757oBB(lCB,lCB,o0,gg)7758gg.f=cur_globalf7759}7760else _w(cAB,x[74],1,1983)7761}7762var aDB=_v()7763_(c8,aDB)7764var tEB=_oz(z,62,e,s,gg)7765var eFB=_gd(x[74],tEB,e_,d_)7766if(eFB){7767var bGB=_1z(z,59,e,s,gg) || {}7768var cur_globalf=gg.f7769aDB.wxXCkey=37770eFB(bGB,bGB,aDB,gg)7771gg.f=cur_globalf7772}7773else _w(tEB,x[74],1,2180)7774h9.wxXCkey=17775_(hU,c8)7776}7777var oV=_v()7778_(fS,oV)7779if(_oz(z,63,e,s,gg)){oV.wxVkey=17780var oHB=_n('view')7781_rz(z,oHB,'class',64,e,s,gg)7782var xIB=_v()7783_(oHB,xIB)7784if(_oz(z,65,e,s,gg)){xIB.wxVkey=17785var oJB=_v()7786_(xIB,oJB)7787var fKB=_oz(z,67,e,s,gg)7788var cLB=_gd(x[74],fKB,e_,d_)7789if(cLB){7790var hMB=_1z(z,66,e,s,gg) || {}7791var cur_globalf=gg.f7792oJB.wxXCkey=37793cLB(hMB,hMB,oJB,gg)7794gg.f=cur_globalf7795}7796else _w(fKB,x[74],1,2377)7797}7798var oNB=_v()7799_(oHB,oNB)7800var cOB=_oz(z,72,e,s,gg)7801var oPB=_gd(x[74],cOB,e_,d_)7802if(oPB){7803var lQB=_1z(z,69,e,s,gg) || {}7804var cur_globalf=gg.f7805oNB.wxXCkey=37806oPB(lQB,lQB,oNB,gg)7807gg.f=cur_globalf7808}7809else _w(cOB,x[74],1,2551)7810xIB.wxXCkey=17811_(oV,oHB)7812}7813var cW=_v()7814_(fS,cW)7815if(_oz(z,73,e,s,gg)){cW.wxVkey=17816var aRB=_n('view')7817_rz(z,aRB,'class',74,e,s,gg)7818var tSB=_oz(z,75,e,s,gg)7819_(aRB,tSB)7820_(cW,aRB)7821}7822else{cW.wxVkey=27823var eTB=_n('view')7824_rz(z,eTB,'class',76,e,s,gg)7825var bUB=_oz(z,77,e,s,gg)7826_(eTB,bUB)7827_(cW,eTB)7828}7829cT.wxXCkey=17830hU.wxXCkey=17831oV.wxXCkey=17832cW.wxXCkey=17833_(xC,fS)7834}7835var oD=_v()7836_(oB,oD)7837if(_oz(z,78,e,s,gg)){oD.wxVkey=17838var oVB=_n('view')7839_rz(z,oVB,'class',79,e,s,gg)7840var xWB=_n('view')7841_rz(z,xWB,'class',80,e,s,gg)7842var oXB=_n('view')7843_rz(z,oXB,'class',81,e,s,gg)7844var fYB=_n('view')7845_rz(z,fYB,'class',82,e,s,gg)7846var cZB=_oz(z,83,e,s,gg)7847_(fYB,cZB)7848_(oXB,fYB)7849var h1B=_v()7850_(oXB,h1B)7851var o2B=function(o4B,c3B,l5B,gg){7852var t7B=_mz(z,'button',['bindtap',88,'class',1,'data-comkey',2,'data-eventid',3,'key',4,'size',5,'type',6],[],o4B,c3B,gg)7853var e8B=_oz(z,95,o4B,c3B,gg)7854_(t7B,e8B)7855_(l5B,t7B)7856return l5B7857}7858h1B.wxXCkey=27859_2z(z,86,o2B,e,s,gg,h1B,'item','index','index')7860_(xWB,oXB)7861_(oVB,xWB)7862var b9B=_n('view')7863_rz(z,b9B,'class',96,e,s,gg)7864var xAC=_n('view')7865_rz(z,xAC,'class',97,e,s,gg)7866var oBC=_n('view')7867_rz(z,oBC,'class',98,e,s,gg)7868var fCC=_oz(z,99,e,s,gg)7869_(oBC,fCC)7870_(xAC,oBC)7871var cDC=_v()7872_(xAC,cDC)7873var hEC=function(cGC,oFC,oHC,gg){7874var aJC=_mz(z,'button',['bindtap',104,'class',1,'data-comkey',2,'data-eventid',3,'key',4,'size',5,'type',6],[],cGC,oFC,gg)7875var tKC=_oz(z,111,cGC,oFC,gg)7876_(aJC,tKC)7877_(oHC,aJC)7878return oHC7879}7880cDC.wxXCkey=27881_2z(z,102,hEC,e,s,gg,cDC,'item','index','index')7882_(b9B,xAC)7883var o0B=_v()7884_(b9B,o0B)7885if(_oz(z,112,e,s,gg)){o0B.wxVkey=17886var eLC=_n('view')7887_rz(z,eLC,'class',113,e,s,gg)7888var bMC=_oz(z,114,e,s,gg)7889_(eLC,bMC)7890_(o0B,eLC)7891}7892var oNC=_mz(z,'button',['bindtap',115,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)7893var xOC=_oz(z,119,e,s,gg)7894_(oNC,xOC)7895_(b9B,oNC)7896var oPC=_n('view')7897_rz(z,oPC,'class',120,e,s,gg)7898_(b9B,oPC)7899o0B.wxXCkey=17900_(oVB,b9B)7901_(oD,oVB)7902}7903xC.wxXCkey=17904oD.wxXCkey=17905_(r,oB)7906}catch(err){7907p_[b]=false7908throw err7909}7910p_[b]=false7911return r7912}7913var m47=function(e,s,r,gg){7914var z=gz$gwx_48()7915var lUE=e_[x[74]].i7916_ai(lUE,x[1],e_,x[74],1,1)7917_ai(lUE,x[2],e_,x[74],1,42)7918_ai(lUE,x[3],e_,x[74],1,91)7919_ai(lUE,x[4],e_,x[74],1,135)7920_ai(lUE,x[5],e_,x[74],1,181)7921lUE.pop()7922lUE.pop()7923lUE.pop()7924lUE.pop()7925lUE.pop()7926return r7927}7928e_[x[74]]={f:m47,j:[],i:[],ti:[x[1],x[2],x[3],x[4],x[5]],ic:[]}7929d_[x[75]]={}7930var m48=function(e,s,r,gg){7931var z=gz$gwx_49()7932var tWE=e_[x[75]].i7933_ai(tWE,x[76],e_,x[75],1,1)7934var eXE=_v()7935_(r,eXE)7936var bYE=_oz(z,1,e,s,gg)7937var oZE=_gd(x[75],bYE,e_,d_)7938if(oZE){7939var x1E=_1z(z,0,e,s,gg) || {}7940var cur_globalf=gg.f7941eXE.wxXCkey=37942oZE(x1E,x1E,eXE,gg)7943gg.f=cur_globalf7944}7945else _w(bYE,x[75],2,18)7946tWE.pop()7947return r7948}7949e_[x[75]]={f:m48,j:[],i:[],ti:[x[76]],ic:[]}7950d_[x[77]]={}7951d_[x[77]]["04006aa7"]=function(e,s,r,gg){7952var z=gz$gwx_50()7953var b=x[77]+':04006aa7'7954r.wxVkey=b7955gg.f=$gdc(f_["./pages/shoucang.vue.wxml"],"",1)7956if(p_[b]){_wl(b,x[77]);return}7957p_[b]=true7958try{7959var oB=_n('view')7960_rz(z,oB,'class',1,e,s,gg)7961var xC=_v()7962_(oB,xC)7963if(_oz(z,2,e,s,gg)){xC.wxVkey=17964var fE=_mz(z,'view',['bindtap',3,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)7965var cF=_oz(z,7,e,s,gg)7966_(fE,cF)7967_(xC,fE)7968}7969else{xC.wxVkey=27970var hG=_mz(z,'view',['bindtap',8,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)7971var oH=_oz(z,12,e,s,gg)7972_(hG,oH)7973_(xC,hG)7974}7975var cI=_n('view')7976_rz(z,cI,'class',13,e,s,gg)7977var oJ=_v()7978_(cI,oJ)7979var lK=function(tM,aL,eN,gg){7980var oP=_mz(z,'view',['bindtap',18,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],tM,aL,gg)7981var xQ=_oz(z,23,tM,aL,gg)7982_(oP,xQ)7983_(eN,oP)7984return eN7985}7986oJ.wxXCkey=27987_2z(z,16,lK,e,s,gg,oJ,'item','index','index')7988_(oB,cI)7989var oR=_mz(z,'view',['bindtouchend',24,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)7990var fS=_v()7991_(oR,fS)7992var cT=function(oV,hU,cW,gg){7993var lY=_mz(z,'view',['class',33,'key',1],[],oV,hU,gg)7994var aZ=_v()7995_(lY,aZ)7996if(_oz(z,35,oV,hU,gg)){aZ.wxVkey=17997var e2=_n('view')7998_rz(z,e2,'class',36,oV,hU,gg)7999var x5=_mz(z,'view',['bindtap',37,'class',1,'data-comkey',2,'data-eventid',3],[],oV,hU,gg)8000var o6=_n('view')8001_rz(z,o6,'class',41,oV,hU,gg)8002var f7=_mz(z,'text',['class',42,'selectable',1],[],oV,hU,gg)8003var c8=_oz(z,44,oV,hU,gg)8004_(f7,c8)8005_(o6,f7)8006var h9=_n('view')8007_rz(z,h9,'class',45,oV,hU,gg)8008var o0=_oz(z,46,oV,hU,gg)8009_(h9,o0)8010_(o6,h9)8011_(x5,o6)8012var cAB=_mz(z,'image',['class',47,'lazyLoad',1,'mode',2,'src',3],[],oV,hU,gg)8013_(x5,cAB)8014_(e2,x5)8015var b3=_v()8016_(e2,b3)8017if(_oz(z,51,oV,hU,gg)){b3.wxVkey=18018var oBB=_mz(z,'view',['bindtap',52,'class',1,'data-comkey',2,'data-eventid',3],[],oV,hU,gg)8019_(b3,oBB)8020}8021var o4=_v()8022_(e2,o4)8023if(_oz(z,56,oV,hU,gg)){o4.wxVkey=18024var lCB=_mz(z,'view',['bindtap',57,'class',1,'data-comkey',2,'data-eventid',3],[],oV,hU,gg)8025_(o4,lCB)8026}8027b3.wxXCkey=18028o4.wxXCkey=18029_(aZ,e2)8030}8031var t1=_v()8032_(lY,t1)8033if(_oz(z,61,oV,hU,gg)){t1.wxVkey=18034var aDB=_n('view')8035_rz(z,aDB,'class',62,oV,hU,gg)8036var bGB=_mz(z,'view',['bindtap',63,'class',1,'data-comkey',2,'data-eventid',3],[],oV,hU,gg)8037var oHB=_n('view')8038_rz(z,oHB,'class',67,oV,hU,gg)8039var xIB=_mz(z,'text',['class',68,'selectable',1],[],oV,hU,gg)8040var oJB=_oz(z,70,oV,hU,gg)8041_(xIB,oJB)8042_(oHB,xIB)8043var fKB=_n('view')8044_rz(z,fKB,'class',71,oV,hU,gg)8045var cLB=_oz(z,72,oV,hU,gg)8046_(fKB,cLB)8047_(oHB,fKB)8048_(bGB,oHB)8049var hMB=_mz(z,'image',['class',73,'lazyLoad',1,'mode',2,'src',3],[],oV,hU,gg)8050_(bGB,hMB)8051_(aDB,bGB)8052var tEB=_v()8053_(aDB,tEB)8054if(_oz(z,77,oV,hU,gg)){tEB.wxVkey=18055var oNB=_mz(z,'view',['bindtap',78,'class',1,'data-comkey',2,'data-eventid',3],[],oV,hU,gg)8056_(tEB,oNB)8057}8058var eFB=_v()8059_(aDB,eFB)8060if(_oz(z,82,oV,hU,gg)){eFB.wxVkey=18061var cOB=_mz(z,'view',['bindtap',83,'class',1,'data-comkey',2,'data-eventid',3],[],oV,hU,gg)8062_(eFB,cOB)8063}8064tEB.wxXCkey=18065eFB.wxXCkey=18066_(t1,aDB)8067}8068aZ.wxXCkey=18069t1.wxXCkey=18070_(cW,lY)8071return cW8072}8073fS.wxXCkey=28074_2z(z,31,cT,e,s,gg,fS,'item','index','index')8075_(oB,oR)8076var oPB=_n('view')8077_rz(z,oPB,'class',87,e,s,gg)8078var lQB=_oz(z,88,e,s,gg)8079_(oPB,lQB)8080_(oB,oPB)8081var oD=_v()8082_(oB,oD)8083if(_oz(z,89,e,s,gg)){oD.wxVkey=18084var aRB=_n('view')8085_rz(z,aRB,'class',90,e,s,gg)8086var tSB=_n('view')8087_rz(z,tSB,'class',91,e,s,gg)8088var eTB=_mz(z,'view',['bindtap',92,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)8089var bUB=_oz(z,96,e,s,gg)8090_(eTB,bUB)8091_(tSB,eTB)8092var oVB=_mz(z,'view',['bindtap',97,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)8093var xWB=_oz(z,101,e,s,gg)8094_(oVB,xWB)8095_(tSB,oVB)8096_(aRB,tSB)8097_(oD,aRB)8098}8099xC.wxXCkey=18100oD.wxXCkey=18101_(r,oB)8102}catch(err){8103p_[b]=false8104throw err8105}8106p_[b]=false8107return r8108}8109var m49=function(e,s,r,gg){8110var z=gz$gwx_50()8111return r8112}8113e_[x[77]]={f:m49,j:[],i:[],ti:[],ic:[]}8114d_[x[78]]={}8115var m50=function(e,s,r,gg){8116var z=gz$gwx_51()8117var c4E=e_[x[78]].i8118_ai(c4E,x[79],e_,x[78],1,1)8119var h5E=_v()8120_(r,h5E)8121var o6E=_oz(z,1,e,s,gg)8122var c7E=_gd(x[78],o6E,e_,d_)8123if(c7E){8124var o8E=_1z(z,0,e,s,gg) || {}8125var cur_globalf=gg.f8126h5E.wxXCkey=38127c7E(o8E,o8E,h5E,gg)8128gg.f=cur_globalf8129}8130else _w(o6E,x[78],2,18)8131c4E.pop()8132return r8133}8134e_[x[78]]={f:m50,j:[],i:[],ti:[x[79]],ic:[]}8135d_[x[80]]={}8136d_[x[80]]["04071161"]=function(e,s,r,gg){8137var z=gz$gwx_52()8138var b=x[80]+':04071161'8139r.wxVkey=b8140gg.f=$gdc(f_["./pages/shouquan.vue.wxml"],"",1)8141if(p_[b]){_wl(b,x[80]);return}8142p_[b]=true8143try{8144var oB=_n('view')8145_rz(z,oB,'class',1,e,s,gg)8146var xC=_n('view')8147_rz(z,xC,'class',2,e,s,gg)8148var oD=_oz(z,3,e,s,gg)8149_(xC,oD)8150_(oB,xC)8151var fE=_mz(z,'image',['bindtap',4,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)8152_(oB,fE)8153_(r,oB)8154}catch(err){8155p_[b]=false8156throw err8157}8158p_[b]=false8159return r8160}8161var m51=function(e,s,r,gg){8162var z=gz$gwx_52()8163return r8164}8165e_[x[80]]={f:m51,j:[],i:[],ti:[],ic:[]}8166d_[x[81]]={}8167var m52=function(e,s,r,gg){8168var z=gz$gwx_53()8169var tAF=e_[x[81]].i8170_ai(tAF,x[82],e_,x[81],1,1)8171var eBF=_v()8172_(r,eBF)8173var bCF=_oz(z,1,e,s,gg)8174var oDF=_gd(x[81],bCF,e_,d_)8175if(oDF){8176var xEF=_1z(z,0,e,s,gg) || {}8177var cur_globalf=gg.f8178eBF.wxXCkey=38179oDF(xEF,xEF,eBF,gg)8180gg.f=cur_globalf8181}8182else _w(bCF,x[81],2,18)8183tAF.pop()8184return r8185}8186e_[x[81]]={f:m52,j:[],i:[],ti:[x[82]],ic:[]}8187d_[x[83]]={}8188d_[x[83]]["74ba64d8"]=function(e,s,r,gg){8189var z=gz$gwx_54()8190var b=x[83]+':74ba64d8'8191r.wxVkey=b8192gg.f=$gdc(f_["./pages/sijiao.vue.wxml"],"",1)8193if(p_[b]){_wl(b,x[83]);return}8194p_[b]=true8195try{8196var oB=_n('view')8197_rz(z,oB,'class',1,e,s,gg)8198var xC=_mz(z,'image',['class',2,'mode',1,'src',2],[],e,s,gg)8199_(oB,xC)8200var oD=_mz(z,'navigator',['class',5,'url',1],[],e,s,gg)8201var fE=_n('view')8202_rz(z,fE,'class',7,e,s,gg)8203var cF=_oz(z,8,e,s,gg)8204_(fE,cF)8205_(oD,fE)8206_(oB,oD)8207_(r,oB)8208}catch(err){8209p_[b]=false8210throw err8211}8212p_[b]=false8213return r8214}8215var m53=function(e,s,r,gg){8216var z=gz$gwx_54()8217return r8218}8219e_[x[83]]={f:m53,j:[],i:[],ti:[],ic:[]}8220d_[x[84]]={}8221var m54=function(e,s,r,gg){8222var z=gz$gwx_55()8223var cHF=e_[x[84]].i8224_ai(cHF,x[85],e_,x[84],1,1)8225var hIF=_v()8226_(r,hIF)8227var oJF=_oz(z,1,e,s,gg)8228var cKF=_gd(x[84],oJF,e_,d_)8229if(cKF){8230var oLF=_1z(z,0,e,s,gg) || {}8231var cur_globalf=gg.f8232hIF.wxXCkey=38233cKF(oLF,oLF,hIF,gg)8234gg.f=cur_globalf8235}8236else _w(oJF,x[84],2,18)8237cHF.pop()8238return r8239}8240e_[x[84]]={f:m54,j:[],i:[],ti:[x[85]],ic:[]}8241d_[x[86]]={}8242d_[x[86]]["14fee976"]=function(e,s,r,gg){8243var z=gz$gwx_56()8244var b=x[86]+':14fee976'8245r.wxVkey=b8246gg.f=$gdc(f_["./pages/sijiaolist.vue.wxml"],"",1)8247if(p_[b]){_wl(b,x[86]);return}8248p_[b]=true8249try{8250var oB=_n('view')8251_rz(z,oB,'class',1,e,s,gg)8252var fE=_v()8253_(oB,fE)8254var cF=function(oH,hG,cI,gg){8255var lK=_mz(z,'view',['class',6,'key',1],[],oH,hG,gg)8256var aL=_mz(z,'view',['bindtap',8,'class',1,'data-comkey',2,'data-eventid',3],[],oH,hG,gg)8257var tM=_n('view')8258_rz(z,tM,'class',12,oH,hG,gg)8259var eN=_n('view')8260_rz(z,eN,'class',13,oH,hG,gg)8261var bO=_mz(z,'text',['class',14,'selectable',1],[],oH,hG,gg)8262var oP=_oz(z,16,oH,hG,gg)8263_(bO,oP)8264_(eN,bO)8265var xQ=_n('view')8266_rz(z,xQ,'class',17,oH,hG,gg)8267var oR=_oz(z,18,oH,hG,gg)8268_(xQ,oR)8269_(eN,xQ)8270_(tM,eN)8271var fS=_mz(z,'image',['class',19,'lazyLoad',1,'mode',2,'src',3],[],oH,hG,gg)8272_(tM,fS)8273_(aL,tM)8274_(lK,aL)8275_(cI,lK)8276return cI8277}8278fE.wxXCkey=28279_2z(z,4,cF,e,s,gg,fE,'item','index','index')8280var xC=_v()8281_(oB,xC)8282if(_oz(z,23,e,s,gg)){xC.wxVkey=18283var cT=_n('view')8284_rz(z,cT,'class',24,e,s,gg)8285var hU=_oz(z,25,e,s,gg)8286_(cT,hU)8287_(xC,cT)8288}8289var oD=_v()8290_(oB,oD)8291if(_oz(z,26,e,s,gg)){oD.wxVkey=18292var oV=_n('view')8293_rz(z,oV,'class',27,e,s,gg)8294var cW=_oz(z,28,e,s,gg)8295_(oV,cW)8296_(oD,oV)8297}8298xC.wxXCkey=18299oD.wxXCkey=18300_(r,oB)8301}catch(err){8302p_[b]=false8303throw err8304}8305p_[b]=false8306return r8307}8308var m55=function(e,s,r,gg){8309var z=gz$gwx_56()8310return r8311}8312e_[x[86]]={f:m55,j:[],i:[],ti:[],ic:[]}8313d_[x[87]]={}8314var m56=function(e,s,r,gg){8315var z=gz$gwx_57()8316var tOF=e_[x[87]].i8317_ai(tOF,x[88],e_,x[87],1,1)8318var ePF=_v()8319_(r,ePF)8320var bQF=_oz(z,1,e,s,gg)8321var oRF=_gd(x[87],bQF,e_,d_)8322if(oRF){8323var xSF=_1z(z,0,e,s,gg) || {}8324var cur_globalf=gg.f8325ePF.wxXCkey=38326oRF(xSF,xSF,ePF,gg)8327gg.f=cur_globalf8328}8329else _w(bQF,x[87],2,18)8330tOF.pop()8331return r8332}8333e_[x[87]]={f:m56,j:[],i:[],ti:[x[88]],ic:[]}8334d_[x[89]]={}8335d_[x[89]]["763a3b17"]=function(e,s,r,gg){8336var z=gz$gwx_58()8337var b=x[89]+':763a3b17'8338r.wxVkey=b8339gg.f=$gdc(f_["./pages/tequan.vue.wxml"],"",1)8340if(p_[b]){_wl(b,x[89]);return}8341p_[b]=true8342try{8343var oB=_n('view')8344_rz(z,oB,'class',1,e,s,gg)8345var hG=_n('view')8346_rz(z,hG,'class',2,e,s,gg)8347var oH=_oz(z,3,e,s,gg)8348_(hG,oH)8349_(oB,hG)8350var cI=_n('view')8351_rz(z,cI,'class',4,e,s,gg)8352var oJ=_oz(z,5,e,s,gg)8353_(cI,oJ)8354_(oB,cI)8355var xC=_v()8356_(oB,xC)8357if(_oz(z,6,e,s,gg)){xC.wxVkey=18358var lK=_n('view')8359_rz(z,lK,'class',7,e,s,gg)8360var aL=_oz(z,8,e,s,gg)8361_(lK,aL)8362_(xC,lK)8363}8364var oD=_v()8365_(oB,oD)8366if(_oz(z,9,e,s,gg)){oD.wxVkey=18367var tM=_n('view')8368_rz(z,tM,'class',10,e,s,gg)8369var eN=_oz(z,11,e,s,gg)8370_(tM,eN)8371_(oD,tM)8372}8373var fE=_v()8374_(oB,fE)8375if(_oz(z,12,e,s,gg)){fE.wxVkey=18376var bO=_n('view')8377_rz(z,bO,'class',13,e,s,gg)8378var oP=_n('view')8379_rz(z,oP,'class',14,e,s,gg)8380var xQ=_oz(z,15,e,s,gg)8381_(oP,xQ)8382_(bO,oP)8383var oR=_mz(z,'navigator',['class',16,'url',1],[],e,s,gg)8384var fS=_oz(z,18,e,s,gg)8385_(oR,fS)8386_(bO,oR)8387_(fE,bO)8388}8389var cF=_v()8390_(oB,cF)8391if(_oz(z,19,e,s,gg)){cF.wxVkey=18392var cT=_n('view')8393_rz(z,cT,'class',20,e,s,gg)8394var t1=_oz(z,21,e,s,gg)8395_(cT,t1)8396var hU=_v()8397_(cT,hU)8398if(_oz(z,22,e,s,gg)){hU.wxVkey=18399var e2=_n('view')8400_rz(z,e2,'class',23,e,s,gg)8401var b3=_n('view')8402_rz(z,b3,'class',24,e,s,gg)8403var o4=_mz(z,'text',['class',25,'style',1],[],e,s,gg)8404var x5=_oz(z,27,e,s,gg)8405_(o4,x5)8406_(b3,o4)8407var o6=_oz(z,28,e,s,gg)8408_(b3,o6)8409_(e2,b3)8410var f7=_n('view')8411_rz(z,f7,'class',29,e,s,gg)8412var c8=_mz(z,'text',['class',30,'style',1],[],e,s,gg)8413var h9=_oz(z,32,e,s,gg)8414_(c8,h9)8415_(f7,c8)8416var o0=_oz(z,33,e,s,gg)8417_(f7,o0)8418_(e2,f7)8419var cAB=_n('view')8420_rz(z,cAB,'class',34,e,s,gg)8421var oBB=_mz(z,'text',['class',35,'style',1],[],e,s,gg)8422var lCB=_oz(z,37,e,s,gg)8423_(oBB,lCB)8424_(cAB,oBB)8425var aDB=_oz(z,38,e,s,gg)8426_(cAB,aDB)8427_(e2,cAB)8428var tEB=_n('view')8429_rz(z,tEB,'class',39,e,s,gg)8430var eFB=_mz(z,'text',['class',40,'style',1],[],e,s,gg)8431var bGB=_oz(z,42,e,s,gg)8432_(eFB,bGB)8433_(tEB,eFB)8434var oHB=_oz(z,43,e,s,gg)8435_(tEB,oHB)8436_(e2,tEB)8437var xIB=_n('view')8438_rz(z,xIB,'class',44,e,s,gg)8439var oJB=_mz(z,'text',['class',45,'style',1],[],e,s,gg)8440var fKB=_oz(z,47,e,s,gg)8441_(oJB,fKB)8442_(xIB,oJB)8443var cLB=_oz(z,48,e,s,gg)8444_(xIB,cLB)8445_(e2,xIB)8446var hMB=_n('view')8447_rz(z,hMB,'class',49,e,s,gg)8448var oNB=_mz(z,'text',['class',50,'style',1],[],e,s,gg)8449var cOB=_oz(z,52,e,s,gg)8450_(oNB,cOB)8451_(hMB,oNB)8452var oPB=_oz(z,53,e,s,gg)8453_(hMB,oPB)8454_(e2,hMB)8455var lQB=_n('view')8456_rz(z,lQB,'class',54,e,s,gg)8457var aRB=_mz(z,'text',['class',55,'style',1],[],e,s,gg)8458var tSB=_oz(z,57,e,s,gg)8459_(aRB,tSB)8460_(lQB,aRB)8461var eTB=_oz(z,58,e,s,gg)8462_(lQB,eTB)8463_(e2,lQB)8464var bUB=_n('view')8465_rz(z,bUB,'class',59,e,s,gg)8466var oVB=_mz(z,'text',['class',60,'style',1],[],e,s,gg)8467var xWB=_oz(z,62,e,s,gg)8468_(oVB,xWB)8469_(bUB,oVB)8470var oXB=_oz(z,63,e,s,gg)8471_(bUB,oXB)8472_(e2,bUB)8473var fYB=_n('view')8474_rz(z,fYB,'class',64,e,s,gg)8475var cZB=_mz(z,'text',['class',65,'style',1],[],e,s,gg)8476var h1B=_oz(z,67,e,s,gg)8477_(cZB,h1B)8478_(fYB,cZB)8479var o2B=_oz(z,68,e,s,gg)8480_(fYB,o2B)8481_(e2,fYB)8482_(hU,e2)8483}8484var oV=_v()8485_(cT,oV)8486if(_oz(z,69,e,s,gg)){oV.wxVkey=18487var c3B=_n('view')8488_rz(z,c3B,'class',70,e,s,gg)8489var o4B=_n('view')8490_rz(z,o4B,'class',71,e,s,gg)8491var l5B=_mz(z,'text',['class',72,'style',1],[],e,s,gg)8492var a6B=_oz(z,74,e,s,gg)8493_(l5B,a6B)8494_(o4B,l5B)8495var t7B=_oz(z,75,e,s,gg)8496_(o4B,t7B)8497_(c3B,o4B)8498var e8B=_n('view')8499_rz(z,e8B,'class',76,e,s,gg)8500var b9B=_mz(z,'text',['class',77,'style',1],[],e,s,gg)8501var o0B=_oz(z,79,e,s,gg)8502_(b9B,o0B)8503_(e8B,b9B)8504var xAC=_oz(z,80,e,s,gg)8505_(e8B,xAC)8506_(c3B,e8B)8507var oBC=_n('view')8508_rz(z,oBC,'class',81,e,s,gg)8509var fCC=_mz(z,'text',['class',82,'style',1],[],e,s,gg)8510var cDC=_oz(z,84,e,s,gg)8511_(fCC,cDC)8512_(oBC,fCC)8513var hEC=_oz(z,85,e,s,gg)8514_(oBC,hEC)8515_(c3B,oBC)8516var oFC=_n('view')8517_rz(z,oFC,'class',86,e,s,gg)8518var cGC=_mz(z,'text',['class',87,'style',1],[],e,s,gg)8519var oHC=_oz(z,89,e,s,gg)8520_(cGC,oHC)8521_(oFC,cGC)8522var lIC=_oz(z,90,e,s,gg)8523_(oFC,lIC)8524_(c3B,oFC)8525var aJC=_n('view')8526_rz(z,aJC,'class',91,e,s,gg)8527var tKC=_mz(z,'text',['class',92,'style',1],[],e,s,gg)8528var eLC=_oz(z,94,e,s,gg)8529_(tKC,eLC)8530_(aJC,tKC)8531var bMC=_oz(z,95,e,s,gg)8532_(aJC,bMC)8533_(c3B,aJC)8534var oNC=_n('view')8535_rz(z,oNC,'class',96,e,s,gg)8536var xOC=_mz(z,'text',['class',97,'style',1],[],e,s,gg)8537var oPC=_oz(z,99,e,s,gg)8538_(xOC,oPC)8539_(oNC,xOC)8540var fQC=_oz(z,100,e,s,gg)8541_(oNC,fQC)8542_(c3B,oNC)8543var cRC=_n('view')8544_rz(z,cRC,'class',101,e,s,gg)8545var hSC=_mz(z,'text',['class',102,'style',1],[],e,s,gg)8546var oTC=_oz(z,104,e,s,gg)8547_(hSC,oTC)8548_(cRC,hSC)8549var cUC=_oz(z,105,e,s,gg)8550_(cRC,cUC)8551_(c3B,cRC)8552var oVC=_n('view')8553_rz(z,oVC,'class',106,e,s,gg)8554var lWC=_mz(z,'text',['class',107,'style',1],[],e,s,gg)8555var aXC=_oz(z,109,e,s,gg)8556_(lWC,aXC)8557_(oVC,lWC)8558var tYC=_oz(z,110,e,s,gg)8559_(oVC,tYC)8560_(c3B,oVC)8561var eZC=_n('view')8562_rz(z,eZC,'class',111,e,s,gg)8563var b1C=_mz(z,'text',['class',112,'style',1],[],e,s,gg)8564var o2C=_oz(z,114,e,s,gg)8565_(b1C,o2C)8566_(eZC,b1C)8567var x3C=_oz(z,115,e,s,gg)8568_(eZC,x3C)8569_(c3B,eZC)8570var o4C=_n('view')8571_rz(z,o4C,'class',116,e,s,gg)8572var f5C=_mz(z,'text',['class',117,'style',1],[],e,s,gg)8573var c6C=_oz(z,119,e,s,gg)8574_(f5C,c6C)8575_(o4C,f5C)8576var h7C=_oz(z,120,e,s,gg)8577_(o4C,h7C)8578_(c3B,o4C)8579_(oV,c3B)8580}8581var cW=_v()8582_(cT,cW)8583if(_oz(z,121,e,s,gg)){cW.wxVkey=18584var o8C=_n('view')8585_rz(z,o8C,'class',122,e,s,gg)8586var c9C=_n('view')8587_rz(z,c9C,'class',123,e,s,gg)8588var o0C=_mz(z,'text',['class',124,'style',1],[],e,s,gg)8589var lAD=_oz(z,126,e,s,gg)8590_(o0C,lAD)8591_(c9C,o0C)8592var aBD=_oz(z,127,e,s,gg)8593_(c9C,aBD)8594_(o8C,c9C)8595var tCD=_n('view')8596_rz(z,tCD,'class',128,e,s,gg)8597var eDD=_mz(z,'text',['class',129,'style',1],[],e,s,gg)8598var bED=_oz(z,131,e,s,gg)8599_(eDD,bED)8600_(tCD,eDD)8601var oFD=_oz(z,132,e,s,gg)8602_(tCD,oFD)8603_(o8C,tCD)8604var xGD=_n('view')8605_rz(z,xGD,'class',133,e,s,gg)8606var oHD=_mz(z,'text',['class',134,'style',1],[],e,s,gg)8607var fID=_oz(z,136,e,s,gg)8608_(oHD,fID)8609_(xGD,oHD)8610var cJD=_oz(z,137,e,s,gg)8611_(xGD,cJD)8612_(o8C,xGD)8613var hKD=_n('view')8614_rz(z,hKD,'class',138,e,s,gg)8615var oLD=_mz(z,'text',['class',139,'style',1],[],e,s,gg)8616var cMD=_oz(z,141,e,s,gg)8617_(oLD,cMD)8618_(hKD,oLD)8619var oND=_oz(z,142,e,s,gg)8620_(hKD,oND)8621_(o8C,hKD)8622_(cW,o8C)8623}8624var oX=_v()8625_(cT,oX)8626if(_oz(z,143,e,s,gg)){oX.wxVkey=18627var lOD=_n('view')8628_rz(z,lOD,'class',144,e,s,gg)8629var aPD=_n('view')8630_rz(z,aPD,'class',145,e,s,gg)8631var tQD=_mz(z,'text',['class',146,'style',1],[],e,s,gg)8632var eRD=_oz(z,148,e,s,gg)8633_(tQD,eRD)8634_(aPD,tQD)8635var bSD=_oz(z,149,e,s,gg)8636_(aPD,bSD)8637_(lOD,aPD)8638var oTD=_n('view')8639_rz(z,oTD,'class',150,e,s,gg)8640var xUD=_mz(z,'text',['class',151,'style',1],[],e,s,gg)8641var oVD=_oz(z,153,e,s,gg)8642_(xUD,oVD)8643_(oTD,xUD)8644var fWD=_oz(z,154,e,s,gg)8645_(oTD,fWD)8646_(lOD,oTD)8647var cXD=_n('view')8648_rz(z,cXD,'class',155,e,s,gg)8649var hYD=_mz(z,'text',['class',156,'style',1],[],e,s,gg)8650var oZD=_oz(z,158,e,s,gg)8651_(hYD,oZD)8652_(cXD,hYD)8653var c1D=_oz(z,159,e,s,gg)8654_(cXD,c1D)8655_(lOD,cXD)8656var o2D=_n('view')8657_rz(z,o2D,'class',160,e,s,gg)8658var l3D=_mz(z,'text',['class',161,'style',1],[],e,s,gg)8659var a4D=_oz(z,163,e,s,gg)8660_(l3D,a4D)8661_(o2D,l3D)8662var t5D=_oz(z,164,e,s,gg)8663_(o2D,t5D)8664_(lOD,o2D)8665_(oX,lOD)8666}8667var lY=_v()8668_(cT,lY)8669if(_oz(z,165,e,s,gg)){lY.wxVkey=18670var e6D=_n('view')8671_rz(z,e6D,'class',166,e,s,gg)8672var b7D=_n('view')8673_rz(z,b7D,'class',167,e,s,gg)8674var o8D=_mz(z,'text',['class',168,'style',1],[],e,s,gg)8675var x9D=_oz(z,170,e,s,gg)8676_(o8D,x9D)8677_(b7D,o8D)8678var o0D=_oz(z,171,e,s,gg)8679_(b7D,o0D)8680_(e6D,b7D)8681var fAE=_n('view')8682_rz(z,fAE,'class',172,e,s,gg)8683var cBE=_mz(z,'text',['class',173,'style',1],[],e,s,gg)8684var hCE=_oz(z,175,e,s,gg)8685_(cBE,hCE)8686_(fAE,cBE)8687var oDE=_oz(z,176,e,s,gg)8688_(fAE,oDE)8689_(e6D,fAE)8690var cEE=_n('view')8691_rz(z,cEE,'class',177,e,s,gg)8692var oFE=_mz(z,'text',['class',178,'style',1],[],e,s,gg)8693var lGE=_oz(z,180,e,s,gg)8694_(oFE,lGE)8695_(cEE,oFE)8696var aHE=_oz(z,181,e,s,gg)8697_(cEE,aHE)8698_(e6D,cEE)8699var tIE=_n('view')8700_rz(z,tIE,'class',182,e,s,gg)8701var eJE=_mz(z,'text',['class',183,'style',1],[],e,s,gg)8702var bKE=_oz(z,185,e,s,gg)8703_(eJE,bKE)8704_(tIE,eJE)8705var oLE=_oz(z,186,e,s,gg)8706_(tIE,oLE)8707_(e6D,tIE)8708_(lY,e6D)8709}8710var aZ=_v()8711_(cT,aZ)8712if(_oz(z,187,e,s,gg)){aZ.wxVkey=18713var xME=_n('view')8714_rz(z,xME,'class',188,e,s,gg)8715var oNE=_n('view')8716_rz(z,oNE,'class',189,e,s,gg)8717var fOE=_mz(z,'text',['class',190,'style',1],[],e,s,gg)8718var cPE=_oz(z,192,e,s,gg)8719_(fOE,cPE)8720_(oNE,fOE)8721var hQE=_oz(z,193,e,s,gg)8722_(oNE,hQE)8723_(xME,oNE)8724var oRE=_n('view')8725_rz(z,oRE,'class',194,e,s,gg)8726var cSE=_mz(z,'text',['class',195,'style',1],[],e,s,gg)8727var oTE=_oz(z,197,e,s,gg)8728_(cSE,oTE)8729_(oRE,cSE)8730var lUE=_oz(z,198,e,s,gg)8731_(oRE,lUE)8732_(xME,oRE)8733var aVE=_n('view')8734_rz(z,aVE,'class',199,e,s,gg)8735var tWE=_mz(z,'text',['class',200,'style',1],[],e,s,gg)8736var eXE=_oz(z,202,e,s,gg)8737_(tWE,eXE)8738_(aVE,tWE)8739var bYE=_oz(z,203,e,s,gg)8740_(aVE,bYE)8741_(xME,aVE)8742var oZE=_n('view')8743_rz(z,oZE,'class',204,e,s,gg)8744var x1E=_mz(z,'text',['class',205,'style',1],[],e,s,gg)8745var o2E=_oz(z,207,e,s,gg)8746_(x1E,o2E)8747_(oZE,x1E)8748var f3E=_oz(z,208,e,s,gg)8749_(oZE,f3E)8750_(xME,oZE)8751var c4E=_n('view')8752_rz(z,c4E,'class',209,e,s,gg)8753var h5E=_mz(z,'text',['class',210,'style',1],[],e,s,gg)8754var o6E=_oz(z,212,e,s,gg)8755_(h5E,o6E)8756_(c4E,h5E)8757var c7E=_oz(z,213,e,s,gg)8758_(c4E,c7E)8759_(xME,c4E)8760_(aZ,xME)8761}8762hU.wxXCkey=18763oV.wxXCkey=18764cW.wxXCkey=18765oX.wxXCkey=18766lY.wxXCkey=18767aZ.wxXCkey=18768_(cF,cT)8769}8770xC.wxXCkey=18771oD.wxXCkey=18772fE.wxXCkey=18773cF.wxXCkey=18774_(r,oB)8775}catch(err){8776p_[b]=false8777throw err8778}8779p_[b]=false8780return r8781}8782var m57=function(e,s,r,gg){8783var z=gz$gwx_58()8784return r8785}8786e_[x[89]]={f:m57,j:[],i:[],ti:[],ic:[]}8787d_[x[90]]={}8788var m58=function(e,s,r,gg){8789var z=gz$gwx_59()8790var cVF=e_[x[90]].i8791_ai(cVF,x[91],e_,x[90],1,1)8792var hWF=_v()8793_(r,hWF)8794var oXF=_oz(z,1,e,s,gg)8795var cYF=_gd(x[90],oXF,e_,d_)8796if(cYF){8797var oZF=_1z(z,0,e,s,gg) || {}8798var cur_globalf=gg.f8799hWF.wxXCkey=38800cYF(oZF,oZF,hWF,gg)8801gg.f=cur_globalf8802}8803else _w(oXF,x[90],2,18)8804cVF.pop()8805return r8806}8807e_[x[90]]={f:m58,j:[],i:[],ti:[x[91]],ic:[]}8808d_[x[92]]={}8809d_[x[92]]["e414b9c4"]=function(e,s,r,gg){8810var z=gz$gwx_60()8811var b=x[92]+':e414b9c4'8812r.wxVkey=b8813gg.f=$gdc(f_["./pages/tuweiqinghua.vue.wxml"],"",1)8814if(p_[b]){_wl(b,x[92]);return}8815p_[b]=true8816try{8817var oB=_mz(z,'view',['bindtouchend',1,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4,'scrollY',5,'style',6],[],e,s,gg)8818var xC=_v()8819_(oB,xC)8820var oD=function(cF,fE,hG,gg){8821var cI=_mz(z,'view',['class',12,'key',1],[],cF,fE,gg)8822var aL=_n('view')8823_rz(z,aL,'class',14,cF,fE,gg)8824var tM=_v()8825_(aL,tM)8826if(_oz(z,15,cF,fE,gg)){tM.wxVkey=18827var bO=_mz(z,'image',['class',16,'src',1],[],cF,fE,gg)8828_(tM,bO)8829}8830var eN=_v()8831_(aL,eN)8832if(_oz(z,18,cF,fE,gg)){eN.wxVkey=18833var oP=_mz(z,'image',['class',19,'mode',1,'src',2],[],cF,fE,gg)8834_(eN,oP)8835}8836tM.wxXCkey=18837eN.wxXCkey=18838_(cI,aL)8839var oJ=_v()8840_(cI,oJ)8841if(_oz(z,22,cF,fE,gg)){oJ.wxVkey=18842var xQ=_mz(z,'view',['bindtap',23,'class',1,'data-comkey',2,'data-eventid',3],[],cF,fE,gg)8843var oR=_mz(z,'text',['class',27,'selectable',1],[],cF,fE,gg)8844var fS=_oz(z,29,cF,fE,gg)8845_(oR,fS)8846_(xQ,oR)8847_(oJ,xQ)8848}8849var lK=_v()8850_(cI,lK)8851if(_oz(z,30,cF,fE,gg)){lK.wxVkey=18852var cT=_mz(z,'image',['bindtap',31,'class',1,'data-comkey',2,'data-eventid',3,'mode',4,'src',5],[],cF,fE,gg)8853_(lK,cT)8854}8855oJ.wxXCkey=18856lK.wxXCkey=18857_(hG,cI)8858return hG8859}8860xC.wxXCkey=28861_2z(z,10,oD,e,s,gg,xC,'item','index','index')8862var hU=_n('view')8863_rz(z,hU,'class',37,e,s,gg)8864var oV=_n('view')8865_rz(z,oV,'class',38,e,s,gg)8866var cW=_mz(z,'view',['bindtap',39,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)8867var oX=_oz(z,43,e,s,gg)8868_(cW,oX)8869_(oV,cW)8870var lY=_mz(z,'view',['bindtap',44,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)8871var aZ=_oz(z,48,e,s,gg)8872_(lY,aZ)8873_(oV,lY)8874_(hU,oV)8875_(oB,hU)8876_(r,oB)8877}catch(err){8878p_[b]=false8879throw err8880}8881p_[b]=false8882return r8883}8884var m59=function(e,s,r,gg){8885var z=gz$gwx_60()8886return r8887}8888e_[x[92]]={f:m59,j:[],i:[],ti:[],ic:[]}8889d_[x[93]]={}8890var m60=function(e,s,r,gg){8891var z=gz$gwx_61()8892var t3F=e_[x[93]].i8893_ai(t3F,x[94],e_,x[93],1,1)8894var e4F=_v()8895_(r,e4F)8896var b5F=_oz(z,1,e,s,gg)8897var o6F=_gd(x[93],b5F,e_,d_)8898if(o6F){8899var x7F=_1z(z,0,e,s,gg) || {}8900var cur_globalf=gg.f8901e4F.wxXCkey=38902o6F(x7F,x7F,e4F,gg)8903gg.f=cur_globalf8904}8905else _w(b5F,x[93],2,18)8906t3F.pop()8907return r8908}8909e_[x[93]]={f:m60,j:[],i:[],ti:[x[94]],ic:[]}8910d_[x[95]]={}8911d_[x[95]]["f374d688"]=function(e,s,r,gg){8912var z=gz$gwx_62()8913var b=x[95]+':f374d688'8914r.wxVkey=b8915gg.f=$gdc(f_["./pages/tuweiqinghualist.vue.wxml"],"",1)8916if(p_[b]){_wl(b,x[95]);return}8917p_[b]=true8918try{8919var oB=_n('view')8920_rz(z,oB,'class',1,e,s,gg)8921var fE=_n('view')8922_rz(z,fE,'class',2,e,s,gg)8923_(oB,fE)8924var cF=_v()8925_(oB,cF)8926var hG=function(cI,oH,oJ,gg){8927var aL=_mz(z,'view',['class',7,'key',1],[],cI,oH,gg)8928var tM=_mz(z,'view',['bindtap',9,'class',1,'data-comkey',2,'data-eventid',3],[],cI,oH,gg)8929var eN=_oz(z,13,cI,oH,gg)8930_(tM,eN)8931_(aL,tM)8932_(oJ,aL)8933return oJ8934}8935cF.wxXCkey=28936_2z(z,5,hG,e,s,gg,cF,'item','index','index')8937var xC=_v()8938_(oB,xC)8939if(_oz(z,14,e,s,gg)){xC.wxVkey=18940var bO=_n('view')8941_rz(z,bO,'class',15,e,s,gg)8942var oP=_oz(z,16,e,s,gg)8943_(bO,oP)8944_(xC,bO)8945}8946var oD=_v()8947_(oB,oD)8948if(_oz(z,17,e,s,gg)){oD.wxVkey=18949var xQ=_n('view')8950_rz(z,xQ,'class',18,e,s,gg)8951var oR=_oz(z,19,e,s,gg)8952_(xQ,oR)8953_(oD,xQ)8954}8955xC.wxXCkey=18956oD.wxXCkey=18957_(r,oB)8958}catch(err){8959p_[b]=false8960throw err8961}8962p_[b]=false8963return r8964}8965var m61=function(e,s,r,gg){8966var z=gz$gwx_62()8967return r8968}8969e_[x[95]]={f:m61,j:[],i:[],ti:[],ic:[]}8970d_[x[96]]={}8971var m62=function(e,s,r,gg){8972var z=gz$gwx_63()8973var c0F=e_[x[96]].i8974_ai(c0F,x[97],e_,x[96],1,1)8975var hAG=_v()8976_(r,hAG)8977var oBG=_oz(z,1,e,s,gg)8978var cCG=_gd(x[96],oBG,e_,d_)8979if(cCG){8980var oDG=_1z(z,0,e,s,gg) || {}8981var cur_globalf=gg.f8982hAG.wxXCkey=38983cCG(oDG,oDG,hAG,gg)8984gg.f=cur_globalf8985}8986else _w(oBG,x[96],2,18)8987c0F.pop()8988return r8989}8990e_[x[96]]={f:m62,j:[],i:[],ti:[x[97]],ic:[]}8991d_[x[98]]={}8992d_[x[98]]["4ef56c30"]=function(e,s,r,gg){8993var z=gz$gwx_64()8994var b=x[98]+':4ef56c30'8995r.wxVkey=b8996gg.f=$gdc(f_["./pages/viewganhuo.vue.wxml"],"",1)8997if(p_[b]){_wl(b,x[98]);return}8998p_[b]=true8999try{9000var oB=_n('view')9001_rz(z,oB,'class',1,e,s,gg)9002var xC=_mz(z,'text',['class',2,'selectable',1],[],e,s,gg)9003var oD=_oz(z,4,e,s,gg)9004_(xC,oD)9005_(oB,xC)9006var fE=_mz(z,'video',['autoplay',5,'class',1,'direction',2,'duration',3,'id',4,'src',5],[],e,s,gg)9007_(oB,fE)9008_(r,oB)9009}catch(err){9010p_[b]=false9011throw err9012}9013p_[b]=false9014return r9015}9016var m63=function(e,s,r,gg){9017var z=gz$gwx_64()9018return r9019}9020e_[x[98]]={f:m63,j:[],i:[],ti:[],ic:[]}9021d_[x[99]]={}9022var m64=function(e,s,r,gg){9023var z=gz$gwx_65()9024var tGG=e_[x[99]].i9025_ai(tGG,x[100],e_,x[99],1,1)9026var eHG=_v()9027_(r,eHG)9028var bIG=_oz(z,1,e,s,gg)9029var oJG=_gd(x[99],bIG,e_,d_)9030if(oJG){9031var xKG=_1z(z,0,e,s,gg) || {}9032var cur_globalf=gg.f9033eHG.wxXCkey=39034oJG(xKG,xKG,eHG,gg)9035gg.f=cur_globalf9036}9037else _w(bIG,x[99],2,18)9038tGG.pop()9039return r9040}9041e_[x[99]]={f:m64,j:[],i:[],ti:[x[100]],ic:[]}9042d_[x[101]]={}9043d_[x[101]]["5f987265"]=function(e,s,r,gg){9044var z=gz$gwx_66()9045var b=x[101]+':5f987265'9046r.wxVkey=b9047gg.f=$gdc(f_["./pages/viewhtml.vue.wxml"],"",1)9048if(p_[b]){_wl(b,x[101]);return}9049p_[b]=true9050try{9051var oB=_mz(z,'web-view',['class',1,'src',1],[],e,s,gg)9052_(r,oB)9053}catch(err){9054p_[b]=false9055throw err9056}9057p_[b]=false9058return r9059}9060var m65=function(e,s,r,gg){9061var z=gz$gwx_66()9062return r9063}9064e_[x[101]]={f:m65,j:[],i:[],ti:[],ic:[]}9065d_[x[102]]={}9066var m66=function(e,s,r,gg){9067var z=gz$gwx_67()9068var cNG=e_[x[102]].i9069_ai(cNG,x[103],e_,x[102],1,1)9070var hOG=_v()9071_(r,hOG)9072var oPG=_oz(z,1,e,s,gg)9073var cQG=_gd(x[102],oPG,e_,d_)9074if(cQG){9075var oRG=_1z(z,0,e,s,gg) || {}9076var cur_globalf=gg.f9077hOG.wxXCkey=39078cQG(oRG,oRG,hOG,gg)9079gg.f=cur_globalf9080}9081else _w(oPG,x[102],2,18)9082cNG.pop()9083return r9084}9085e_[x[102]]={f:m66,j:[],i:[],ti:[x[103]],ic:[]}9086d_[x[104]]={}9087d_[x[104]]["d8fed43e"]=function(e,s,r,gg){9088var z=gz$gwx_68()9089var b=x[104]+':d8fed43e'9090r.wxVkey=b9091gg.f=$gdc(f_["./pages/viewimage.vue.wxml"],"",1)9092if(p_[b]){_wl(b,x[104]);return}9093p_[b]=true9094try{9095var oB=_n('view')9096_rz(z,oB,'class',1,e,s,gg)9097var xC=_mz(z,'text',['class',2,'selectable',1],[],e,s,gg)9098var oD=_oz(z,4,e,s,gg)9099_(xC,oD)9100_(oB,xC)9101var fE=_mz(z,'image',['class',5,'mode',1,'src',2],[],e,s,gg)9102_(oB,fE)9103_(r,oB)9104}catch(err){9105p_[b]=false9106throw err9107}9108p_[b]=false9109return r9110}9111var m67=function(e,s,r,gg){9112var z=gz$gwx_68()9113return r9114}9115e_[x[104]]={f:m67,j:[],i:[],ti:[],ic:[]}9116d_[x[105]]={}9117var m68=function(e,s,r,gg){9118var z=gz$gwx_69()9119var tUG=e_[x[105]].i9120_ai(tUG,x[106],e_,x[105],1,1)9121var eVG=_v()9122_(r,eVG)9123var bWG=_oz(z,1,e,s,gg)9124var oXG=_gd(x[105],bWG,e_,d_)9125if(oXG){9126var xYG=_1z(z,0,e,s,gg) || {}9127var cur_globalf=gg.f9128eVG.wxXCkey=39129oXG(xYG,xYG,eVG,gg)9130gg.f=cur_globalf9131}9132else _w(bWG,x[105],2,18)9133tUG.pop()9134return r9135}9136e_[x[105]]={f:m68,j:[],i:[],ti:[x[106]],ic:[]}9137d_[x[107]]={}9138d_[x[107]]["b1ae9730"]=function(e,s,r,gg){9139var z=gz$gwx_70()9140var b=x[107]+':b1ae9730'9141r.wxVkey=b9142gg.f=$gdc(f_["./pages/vip.vue.wxml"],"",1)9143if(p_[b]){_wl(b,x[107]);return}9144p_[b]=true9145try{9146var oB=_n('view')9147_rz(z,oB,'class',1,e,s,gg)9148var xC=_n('view')9149_rz(z,xC,'class',2,e,s,gg)9150var oD=_mz(z,'button',['bindtap',3,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)9151var fE=_n('view')9152_rz(z,fE,'class',7,e,s,gg)9153var cF=_oz(z,8,e,s,gg)9154_(fE,cF)9155_(oD,fE)9156var hG=_n('view')9157_rz(z,hG,'class',9,e,s,gg)9158var oH=_oz(z,10,e,s,gg)9159_(hG,oH)9160_(oD,hG)9161_(xC,oD)9162var cI=_mz(z,'button',['bindtap',11,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)9163var oJ=_n('view')9164_rz(z,oJ,'class',15,e,s,gg)9165var lK=_oz(z,16,e,s,gg)9166_(oJ,lK)9167_(cI,oJ)9168var aL=_n('view')9169_rz(z,aL,'class',17,e,s,gg)9170var tM=_oz(z,18,e,s,gg)9171_(aL,tM)9172_(cI,aL)9173_(xC,cI)9174_(oB,xC)9175var eN=_n('view')9176_rz(z,eN,'class',19,e,s,gg)9177var bO=_mz(z,'button',['bindtap',20,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)9178var oP=_n('view')9179_rz(z,oP,'class',24,e,s,gg)9180var xQ=_oz(z,25,e,s,gg)9181_(oP,xQ)9182_(bO,oP)9183var oR=_n('view')9184_rz(z,oR,'class',26,e,s,gg)9185var fS=_oz(z,27,e,s,gg)9186_(oR,fS)9187_(bO,oR)9188_(eN,bO)9189var cT=_mz(z,'button',['bindtap',28,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)9190var hU=_n('view')9191_rz(z,hU,'class',32,e,s,gg)9192var oV=_oz(z,33,e,s,gg)9193_(hU,oV)9194_(cT,hU)9195var cW=_n('view')9196_rz(z,cW,'class',34,e,s,gg)9197var oX=_oz(z,35,e,s,gg)9198_(cW,oX)9199_(cT,cW)9200_(eN,cT)9201_(oB,eN)9202var lY=_n('view')9203_rz(z,lY,'class',36,e,s,gg)9204var aZ=_mz(z,'button',['bindtap',37,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)9205var t1=_n('view')9206_rz(z,t1,'class',41,e,s,gg)9207var e2=_oz(z,42,e,s,gg)9208_(t1,e2)9209_(aZ,t1)9210var b3=_n('view')9211_rz(z,b3,'class',43,e,s,gg)9212var o4=_oz(z,44,e,s,gg)9213_(b3,o4)9214_(aZ,b3)9215_(lY,aZ)9216var x5=_mz(z,'button',['bindtap',45,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)9217var o6=_n('view')9218_rz(z,o6,'class',49,e,s,gg)9219var f7=_oz(z,50,e,s,gg)9220_(o6,f7)9221_(x5,o6)9222var c8=_n('view')9223_rz(z,c8,'class',51,e,s,gg)9224var h9=_oz(z,52,e,s,gg)9225_(c8,h9)9226_(x5,c8)9227_(lY,x5)9228_(oB,lY)9229var o0=_mz(z,'button',['bindtap',53,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)9230var cAB=_oz(z,57,e,s,gg)9231_(o0,cAB)9232_(oB,o0)9233var oBB=_n('view')9234_rz(z,oBB,'class',58,e,s,gg)9235var xIB=_oz(z,59,e,s,gg)9236_(oBB,xIB)9237var lCB=_v()9238_(oBB,lCB)9239if(_oz(z,60,e,s,gg)){lCB.wxVkey=19240var oJB=_n('view')9241_rz(z,oJB,'class',61,e,s,gg)9242var fKB=_n('view')9243_rz(z,fKB,'class',62,e,s,gg)9244var cLB=_mz(z,'text',['class',63,'style',1],[],e,s,gg)9245var hMB=_oz(z,65,e,s,gg)9246_(cLB,hMB)9247_(fKB,cLB)9248var oNB=_oz(z,66,e,s,gg)9249_(fKB,oNB)9250_(oJB,fKB)9251var cOB=_n('view')9252_rz(z,cOB,'class',67,e,s,gg)9253var oPB=_mz(z,'text',['class',68,'style',1],[],e,s,gg)9254var lQB=_oz(z,70,e,s,gg)9255_(oPB,lQB)9256_(cOB,oPB)9257var aRB=_oz(z,71,e,s,gg)9258_(cOB,aRB)9259_(oJB,cOB)9260var tSB=_n('view')9261_rz(z,tSB,'class',72,e,s,gg)9262var eTB=_mz(z,'text',['class',73,'style',1],[],e,s,gg)9263var bUB=_oz(z,75,e,s,gg)9264_(eTB,bUB)9265_(tSB,eTB)9266var oVB=_oz(z,76,e,s,gg)9267_(tSB,oVB)9268_(oJB,tSB)9269var xWB=_n('view')9270_rz(z,xWB,'class',77,e,s,gg)9271var oXB=_mz(z,'text',['class',78,'style',1],[],e,s,gg)9272var fYB=_oz(z,80,e,s,gg)9273_(oXB,fYB)9274_(xWB,oXB)9275var cZB=_oz(z,81,e,s,gg)9276_(xWB,cZB)9277_(oJB,xWB)9278var h1B=_n('view')9279_rz(z,h1B,'class',82,e,s,gg)9280var o2B=_mz(z,'text',['class',83,'style',1],[],e,s,gg)9281var c3B=_oz(z,85,e,s,gg)9282_(o2B,c3B)9283_(h1B,o2B)9284var o4B=_oz(z,86,e,s,gg)9285_(h1B,o4B)9286_(oJB,h1B)9287var l5B=_n('view')9288_rz(z,l5B,'class',87,e,s,gg)9289var a6B=_mz(z,'text',['class',88,'style',1],[],e,s,gg)9290var t7B=_oz(z,90,e,s,gg)9291_(a6B,t7B)9292_(l5B,a6B)9293var e8B=_oz(z,91,e,s,gg)9294_(l5B,e8B)9295_(oJB,l5B)9296var b9B=_n('view')9297_rz(z,b9B,'class',92,e,s,gg)9298var o0B=_mz(z,'text',['class',93,'style',1],[],e,s,gg)9299var xAC=_oz(z,95,e,s,gg)9300_(o0B,xAC)9301_(b9B,o0B)9302var oBC=_oz(z,96,e,s,gg)9303_(b9B,oBC)9304_(oJB,b9B)9305var fCC=_n('view')9306_rz(z,fCC,'class',97,e,s,gg)9307var cDC=_mz(z,'text',['class',98,'style',1],[],e,s,gg)9308var hEC=_oz(z,100,e,s,gg)9309_(cDC,hEC)9310_(fCC,cDC)9311var oFC=_oz(z,101,e,s,gg)9312_(fCC,oFC)9313_(oJB,fCC)9314var cGC=_n('view')9315_rz(z,cGC,'class',102,e,s,gg)9316var oHC=_mz(z,'text',['class',103,'style',1],[],e,s,gg)9317var lIC=_oz(z,105,e,s,gg)9318_(oHC,lIC)9319_(cGC,oHC)9320var aJC=_oz(z,106,e,s,gg)9321_(cGC,aJC)9322_(oJB,cGC)9323_(lCB,oJB)9324}9325var aDB=_v()9326_(oBB,aDB)9327if(_oz(z,107,e,s,gg)){aDB.wxVkey=19328var tKC=_n('view')9329_rz(z,tKC,'class',108,e,s,gg)9330var eLC=_n('view')9331_rz(z,eLC,'class',109,e,s,gg)9332var bMC=_mz(z,'text',['class',110,'style',1],[],e,s,gg)9333var oNC=_oz(z,112,e,s,gg)9334_(bMC,oNC)9335_(eLC,bMC)9336var xOC=_oz(z,113,e,s,gg)9337_(eLC,xOC)9338_(tKC,eLC)9339var oPC=_n('view')9340_rz(z,oPC,'class',114,e,s,gg)9341var fQC=_mz(z,'text',['class',115,'style',1],[],e,s,gg)9342var cRC=_oz(z,117,e,s,gg)9343_(fQC,cRC)9344_(oPC,fQC)9345var hSC=_oz(z,118,e,s,gg)9346_(oPC,hSC)9347_(tKC,oPC)9348var oTC=_n('view')9349_rz(z,oTC,'class',119,e,s,gg)9350var cUC=_mz(z,'text',['class',120,'style',1],[],e,s,gg)9351var oVC=_oz(z,122,e,s,gg)9352_(cUC,oVC)9353_(oTC,cUC)9354var lWC=_oz(z,123,e,s,gg)9355_(oTC,lWC)9356_(tKC,oTC)9357var aXC=_n('view')9358_rz(z,aXC,'class',124,e,s,gg)9359var tYC=_mz(z,'text',['class',125,'style',1],[],e,s,gg)9360var eZC=_oz(z,127,e,s,gg)9361_(tYC,eZC)9362_(aXC,tYC)9363var b1C=_oz(z,128,e,s,gg)9364_(aXC,b1C)9365_(tKC,aXC)9366var o2C=_n('view')9367_rz(z,o2C,'class',129,e,s,gg)9368var x3C=_mz(z,'text',['class',130,'style',1],[],e,s,gg)9369var o4C=_oz(z,132,e,s,gg)9370_(x3C,o4C)9371_(o2C,x3C)9372var f5C=_oz(z,133,e,s,gg)9373_(o2C,f5C)9374_(tKC,o2C)9375var c6C=_n('view')9376_rz(z,c6C,'class',134,e,s,gg)9377var h7C=_mz(z,'text',['class',135,'style',1],[],e,s,gg)9378var o8C=_oz(z,137,e,s,gg)9379_(h7C,o8C)9380_(c6C,h7C)9381var c9C=_oz(z,138,e,s,gg)9382_(c6C,c9C)9383_(tKC,c6C)9384var o0C=_n('view')9385_rz(z,o0C,'class',139,e,s,gg)9386var lAD=_mz(z,'text',['class',140,'style',1],[],e,s,gg)9387var aBD=_oz(z,142,e,s,gg)9388_(lAD,aBD)9389_(o0C,lAD)9390var tCD=_oz(z,143,e,s,gg)9391_(o0C,tCD)9392_(tKC,o0C)9393var eDD=_n('view')9394_rz(z,eDD,'class',144,e,s,gg)9395var bED=_mz(z,'text',['class',145,'style',1],[],e,s,gg)9396var oFD=_oz(z,147,e,s,gg)9397_(bED,oFD)9398_(eDD,bED)9399var xGD=_oz(z,148,e,s,gg)9400_(eDD,xGD)9401_(tKC,eDD)9402var oHD=_n('view')9403_rz(z,oHD,'class',149,e,s,gg)9404var fID=_mz(z,'text',['class',150,'style',1],[],e,s,gg)9405var cJD=_oz(z,152,e,s,gg)9406_(fID,cJD)9407_(oHD,fID)9408var hKD=_oz(z,153,e,s,gg)9409_(oHD,hKD)9410_(tKC,oHD)9411var oLD=_n('view')9412_rz(z,oLD,'class',154,e,s,gg)9413var cMD=_mz(z,'text',['class',155,'style',1],[],e,s,gg)9414var oND=_oz(z,157,e,s,gg)9415_(cMD,oND)9416_(oLD,cMD)9417var lOD=_oz(z,158,e,s,gg)9418_(oLD,lOD)9419_(tKC,oLD)9420_(aDB,tKC)9421}9422var tEB=_v()9423_(oBB,tEB)9424if(_oz(z,159,e,s,gg)){tEB.wxVkey=19425var aPD=_n('view')9426_rz(z,aPD,'class',160,e,s,gg)9427var tQD=_n('view')9428_rz(z,tQD,'class',161,e,s,gg)9429var eRD=_mz(z,'text',['class',162,'style',1],[],e,s,gg)9430var bSD=_oz(z,164,e,s,gg)9431_(eRD,bSD)9432_(tQD,eRD)9433var oTD=_oz(z,165,e,s,gg)9434_(tQD,oTD)9435_(aPD,tQD)9436var xUD=_n('view')9437_rz(z,xUD,'class',166,e,s,gg)9438var oVD=_mz(z,'text',['class',167,'style',1],[],e,s,gg)9439var fWD=_oz(z,169,e,s,gg)9440_(oVD,fWD)9441_(xUD,oVD)9442var cXD=_oz(z,170,e,s,gg)9443_(xUD,cXD)9444_(aPD,xUD)9445var hYD=_n('view')9446_rz(z,hYD,'class',171,e,s,gg)9447var oZD=_mz(z,'text',['class',172,'style',1],[],e,s,gg)9448var c1D=_oz(z,174,e,s,gg)9449_(oZD,c1D)9450_(hYD,oZD)9451var o2D=_oz(z,175,e,s,gg)9452_(hYD,o2D)9453_(aPD,hYD)9454var l3D=_n('view')9455_rz(z,l3D,'class',176,e,s,gg)9456var a4D=_mz(z,'text',['class',177,'style',1],[],e,s,gg)9457var t5D=_oz(z,179,e,s,gg)9458_(a4D,t5D)9459_(l3D,a4D)9460var e6D=_oz(z,180,e,s,gg)9461_(l3D,e6D)9462_(aPD,l3D)9463_(tEB,aPD)9464}9465var eFB=_v()9466_(oBB,eFB)9467if(_oz(z,181,e,s,gg)){eFB.wxVkey=19468var b7D=_n('view')9469_rz(z,b7D,'class',182,e,s,gg)9470var o8D=_n('view')9471_rz(z,o8D,'class',183,e,s,gg)9472var x9D=_mz(z,'text',['class',184,'style',1],[],e,s,gg)9473var o0D=_oz(z,186,e,s,gg)9474_(x9D,o0D)9475_(o8D,x9D)9476var fAE=_oz(z,187,e,s,gg)9477_(o8D,fAE)9478_(b7D,o8D)9479var cBE=_n('view')9480_rz(z,cBE,'class',188,e,s,gg)9481var hCE=_mz(z,'text',['class',189,'style',1],[],e,s,gg)9482var oDE=_oz(z,191,e,s,gg)9483_(hCE,oDE)9484_(cBE,hCE)9485var cEE=_oz(z,192,e,s,gg)9486_(cBE,cEE)9487_(b7D,cBE)9488var oFE=_n('view')9489_rz(z,oFE,'class',193,e,s,gg)9490var lGE=_mz(z,'text',['class',194,'style',1],[],e,s,gg)9491var aHE=_oz(z,196,e,s,gg)9492_(lGE,aHE)9493_(oFE,lGE)9494var tIE=_oz(z,197,e,s,gg)9495_(oFE,tIE)9496_(b7D,oFE)9497var eJE=_n('view')9498_rz(z,eJE,'class',198,e,s,gg)9499var bKE=_mz(z,'text',['class',199,'style',1],[],e,s,gg)9500var oLE=_oz(z,201,e,s,gg)9501_(bKE,oLE)9502_(eJE,bKE)9503var xME=_oz(z,202,e,s,gg)9504_(eJE,xME)9505_(b7D,eJE)9506_(eFB,b7D)9507}9508var bGB=_v()9509_(oBB,bGB)9510if(_oz(z,203,e,s,gg)){bGB.wxVkey=19511var oNE=_n('view')9512_rz(z,oNE,'class',204,e,s,gg)9513var fOE=_n('view')9514_rz(z,fOE,'class',205,e,s,gg)9515var cPE=_mz(z,'text',['class',206,'style',1],[],e,s,gg)9516var hQE=_oz(z,208,e,s,gg)9517_(cPE,hQE)9518_(fOE,cPE)9519var oRE=_oz(z,209,e,s,gg)9520_(fOE,oRE)9521_(oNE,fOE)9522var cSE=_n('view')9523_rz(z,cSE,'class',210,e,s,gg)9524var oTE=_mz(z,'text',['class',211,'style',1],[],e,s,gg)9525var lUE=_oz(z,213,e,s,gg)9526_(oTE,lUE)9527_(cSE,oTE)9528var aVE=_oz(z,214,e,s,gg)9529_(cSE,aVE)9530_(oNE,cSE)9531var tWE=_n('view')9532_rz(z,tWE,'class',215,e,s,gg)9533var eXE=_mz(z,'text',['class',216,'style',1],[],e,s,gg)9534var bYE=_oz(z,218,e,s,gg)9535_(eXE,bYE)9536_(tWE,eXE)9537var oZE=_oz(z,219,e,s,gg)9538_(tWE,oZE)9539_(oNE,tWE)9540var x1E=_n('view')9541_rz(z,x1E,'class',220,e,s,gg)9542var o2E=_mz(z,'text',['class',221,'style',1],[],e,s,gg)9543var f3E=_oz(z,223,e,s,gg)9544_(o2E,f3E)9545_(x1E,o2E)9546var c4E=_oz(z,224,e,s,gg)9547_(x1E,c4E)9548_(oNE,x1E)9549_(bGB,oNE)9550}9551var oHB=_v()9552_(oBB,oHB)9553if(_oz(z,225,e,s,gg)){oHB.wxVkey=19554var h5E=_n('view')9555_rz(z,h5E,'class',226,e,s,gg)9556var o6E=_n('view')9557_rz(z,o6E,'class',227,e,s,gg)9558var c7E=_mz(z,'text',['class',228,'style',1],[],e,s,gg)9559var o8E=_oz(z,230,e,s,gg)9560_(c7E,o8E)9561_(o6E,c7E)9562var l9E=_oz(z,231,e,s,gg)9563_(o6E,l9E)9564_(h5E,o6E)9565var a0E=_n('view')9566_rz(z,a0E,'class',232,e,s,gg)9567var tAF=_mz(z,'text',['class',233,'style',1],[],e,s,gg)9568var eBF=_oz(z,235,e,s,gg)9569_(tAF,eBF)9570_(a0E,tAF)9571var bCF=_oz(z,236,e,s,gg)9572_(a0E,bCF)9573_(h5E,a0E)9574var oDF=_n('view')9575_rz(z,oDF,'class',237,e,s,gg)9576var xEF=_mz(z,'text',['class',238,'style',1],[],e,s,gg)9577var oFF=_oz(z,240,e,s,gg)9578_(xEF,oFF)9579_(oDF,xEF)9580var fGF=_oz(z,241,e,s,gg)9581_(oDF,fGF)9582_(h5E,oDF)9583var cHF=_n('view')9584_rz(z,cHF,'class',242,e,s,gg)9585var hIF=_mz(z,'text',['class',243,'style',1],[],e,s,gg)9586var oJF=_oz(z,245,e,s,gg)9587_(hIF,oJF)9588_(cHF,hIF)9589var cKF=_oz(z,246,e,s,gg)9590_(cHF,cKF)9591_(h5E,cHF)9592var oLF=_n('view')9593_rz(z,oLF,'class',247,e,s,gg)9594var lMF=_mz(z,'text',['class',248,'style',1],[],e,s,gg)9595var aNF=_oz(z,250,e,s,gg)9596_(lMF,aNF)9597_(oLF,lMF)9598var tOF=_oz(z,251,e,s,gg)9599_(oLF,tOF)9600_(h5E,oLF)9601_(oHB,h5E)9602}9603lCB.wxXCkey=19604aDB.wxXCkey=19605tEB.wxXCkey=19606eFB.wxXCkey=19607bGB.wxXCkey=19608oHB.wxXCkey=19609_(oB,oBB)9610_(r,oB)9611}catch(err){9612p_[b]=false9613throw err9614}9615p_[b]=false9616return r9617}9618var m69=function(e,s,r,gg){9619var z=gz$gwx_70()9620return r9621}9622e_[x[107]]={f:m69,j:[],i:[],ti:[],ic:[]}9623d_[x[108]]={}9624var m70=function(e,s,r,gg){9625var z=gz$gwx_71()9626var c2G=e_[x[108]].i9627_ai(c2G,x[109],e_,x[108],1,1)9628var h3G=_v()9629_(r,h3G)9630var o4G=_oz(z,1,e,s,gg)9631var c5G=_gd(x[108],o4G,e_,d_)9632if(c5G){9633var o6G=_1z(z,0,e,s,gg) || {}9634var cur_globalf=gg.f9635h3G.wxXCkey=39636c5G(o6G,o6G,h3G,gg)9637gg.f=cur_globalf9638}9639else _w(o4G,x[108],2,18)9640c2G.pop()9641return r9642}9643e_[x[108]]={f:m70,j:[],i:[],ti:[x[109]],ic:[]}9644d_[x[110]]={}9645d_[x[110]]["7b552e37"]=function(e,s,r,gg){9646var z=gz$gwx_72()9647var b=x[110]+':7b552e37'9648r.wxVkey=b9649gg.f=$gdc(f_["./pages/weixin.vue.wxml"],"",1)9650if(p_[b]){_wl(b,x[110]);return}9651p_[b]=true9652try{9653var oB=_n('view')9654_rz(z,oB,'class',1,e,s,gg)9655var xC=_v()9656_(oB,xC)9657if(_oz(z,2,e,s,gg)){xC.wxVkey=19658var hG=_n('view')9659_rz(z,hG,'class',3,e,s,gg)9660var oH=_oz(z,4,e,s,gg)9661_(hG,oH)9662_(xC,hG)9663}9664var oD=_v()9665_(oB,oD)9666if(_oz(z,5,e,s,gg)){oD.wxVkey=19667var cI=_mz(z,'image',['bindtap',6,'class',1,'data-comkey',2,'data-eventid',3,'mode',4,'src',5],[],e,s,gg)9668_(oD,cI)9669}9670var fE=_v()9671_(oB,fE)9672if(_oz(z,12,e,s,gg)){fE.wxVkey=19673var oJ=_n('view')9674_rz(z,oJ,'class',13,e,s,gg)9675var lK=_oz(z,14,e,s,gg)9676_(oJ,lK)9677_(fE,oJ)9678}9679var cF=_v()9680_(oB,cF)9681if(_oz(z,15,e,s,gg)){cF.wxVkey=19682var aL=_n('view')9683_rz(z,aL,'class',16,e,s,gg)9684var tM=_n('view')9685_rz(z,tM,'class',17,e,s,gg)9686var eN=_oz(z,18,e,s,gg)9687_(tM,eN)9688_(aL,tM)9689var bO=_mz(z,'navigator',['class',19,'url',1],[],e,s,gg)9690var oP=_oz(z,21,e,s,gg)9691_(bO,oP)9692_(aL,bO)9693_(cF,aL)9694}9695var xQ=_n('view')9696_rz(z,xQ,'class',22,e,s,gg)9697var oR=_oz(z,23,e,s,gg)9698_(xQ,oR)9699_(oB,xQ)9700var fS=_mz(z,'image',['bindtap',24,'class',1,'data-comkey',2,'data-eventid',3,'mode',4,'src',5],[],e,s,gg)9701_(oB,fS)9702xC.wxXCkey=19703oD.wxXCkey=19704fE.wxXCkey=19705cF.wxXCkey=19706_(r,oB)9707}catch(err){9708p_[b]=false9709throw err9710}9711p_[b]=false9712return r9713}9714var m71=function(e,s,r,gg){9715var z=gz$gwx_72()9716return r9717}9718e_[x[110]]={f:m71,j:[],i:[],ti:[],ic:[]}9719d_[x[111]]={}9720var m72=function(e,s,r,gg){9721var z=gz$gwx_73()9722var t9G=e_[x[111]].i9723_ai(t9G,x[112],e_,x[111],1,1)9724var e0G=_v()9725_(r,e0G)9726var bAH=_oz(z,1,e,s,gg)9727var oBH=_gd(x[111],bAH,e_,d_)9728if(oBH){9729var xCH=_1z(z,0,e,s,gg) || {}9730var cur_globalf=gg.f9731e0G.wxXCkey=39732oBH(xCH,xCH,e0G,gg)9733gg.f=cur_globalf9734}9735else _w(bAH,x[111],2,18)9736t9G.pop()9737return r9738}9739e_[x[111]]={f:m72,j:[],i:[],ti:[x[112]],ic:[]}9740d_[x[113]]={}9741d_[x[113]]["7fd98568"]=function(e,s,r,gg){9742var z=gz$gwx_74()9743var b=x[113]+':7fd98568'9744r.wxVkey=b9745gg.f=$gdc(f_["./pages/wenda.vue.wxml"],"",1)9746if(p_[b]){_wl(b,x[113]);return}9747p_[b]=true9748try{9749var oB=_n('view')9750_rz(z,oB,'class',1,e,s,gg)9751var xC=_n('view')9752_rz(z,xC,'class',2,e,s,gg)9753var oD=_oz(z,3,e,s,gg)9754_(xC,oD)9755_(oB,xC)9756var fE=_mz(z,'rich-text',['class',4,'nodes',1],[],e,s,gg)9757_(oB,fE)9758var cF=_n('view')9759_rz(z,cF,'class',6,e,s,gg)9760var hG=_n('view')9761_rz(z,hG,'class',7,e,s,gg)9762var oH=_v()9763_(hG,oH)9764if(_oz(z,8,e,s,gg)){oH.wxVkey=19765var cI=_mz(z,'image',['bindtap',9,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)9766_(oH,cI)9767}9768else{oH.wxVkey=29769var oJ=_mz(z,'image',['bindtap',14,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)9770_(oH,oJ)9771}9772var lK=_n('view')9773_rz(z,lK,'class',19,e,s,gg)9774var aL=_oz(z,20,e,s,gg)9775_(lK,aL)9776_(hG,lK)9777oH.wxXCkey=19778_(cF,hG)9779var tM=_n('view')9780_rz(z,tM,'class',21,e,s,gg)9781var eN=_v()9782_(tM,eN)9783if(_oz(z,22,e,s,gg)){eN.wxVkey=19784var bO=_mz(z,'image',['bindtap',23,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)9785_(eN,bO)9786}9787else{eN.wxVkey=29788var oP=_mz(z,'image',['bindtap',28,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)9789_(eN,oP)9790}9791var xQ=_n('view')9792_rz(z,xQ,'class',33,e,s,gg)9793var oR=_oz(z,34,e,s,gg)9794_(xQ,oR)9795_(tM,xQ)9796eN.wxXCkey=19797_(cF,tM)9798_(oB,cF)9799_(r,oB)9800}catch(err){9801p_[b]=false9802throw err9803}9804p_[b]=false9805return r9806}9807var m73=function(e,s,r,gg){9808var z=gz$gwx_74()9809return r9810}9811e_[x[113]]={f:m73,j:[],i:[],ti:[],ic:[]}9812d_[x[114]]={}9813var m74=function(e,s,r,gg){9814var z=gz$gwx_75()9815var cFH=e_[x[114]].i9816_ai(cFH,x[115],e_,x[114],1,1)9817var hGH=_v()9818_(r,hGH)9819var oHH=_oz(z,1,e,s,gg)9820var cIH=_gd(x[114],oHH,e_,d_)9821if(cIH){9822var oJH=_1z(z,0,e,s,gg) || {}9823var cur_globalf=gg.f9824hGH.wxXCkey=39825cIH(oJH,oJH,hGH,gg)9826gg.f=cur_globalf9827}9828else _w(oHH,x[114],2,18)9829cFH.pop()9830return r9831}9832e_[x[114]]={f:m74,j:[],i:[],ti:[x[115]],ic:[]}9833d_[x[116]]={}9834d_[x[116]]["437b4206"]=function(e,s,r,gg){9835var z=gz$gwx_76()9836var b=x[116]+':437b4206'9837r.wxVkey=b9838gg.f=$gdc(f_["./pages/wendalist.vue.wxml"],"",1)9839if(p_[b]){_wl(b,x[116]);return}9840p_[b]=true9841try{9842var oB=_n('view')9843_rz(z,oB,'class',1,e,s,gg)9844var fE=_mz(z,'scroll-view',['class',2,'scrollLeft',1,'scrollX',2],[],e,s,gg)9845var cF=_v()9846_(fE,cF)9847var hG=function(cI,oH,oJ,gg){9848var aL=_mz(z,'view',['bindtap',9,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],cI,oH,gg)9849var tM=_oz(z,14,cI,oH,gg)9850_(aL,tM)9851_(oJ,aL)9852return oJ9853}9854cF.wxXCkey=29855_2z(z,7,hG,e,s,gg,cF,'item','index','index')9856_(oB,fE)9857var eN=_mz(z,'view',['bindtouchend',15,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)9858var bO=_v()9859_(eN,bO)9860var oP=function(oR,xQ,fS,gg){9861var hU=_mz(z,'view',['class',24,'key',1],[],oR,xQ,gg)9862var oV=_mz(z,'view',['bindtap',26,'class',1,'data-comkey',2,'data-eventid',3],[],oR,xQ,gg)9863var cW=_n('view')9864_rz(z,cW,'class',30,oR,xQ,gg)9865var oX=_n('view')9866_rz(z,oX,'class',31,oR,xQ,gg)9867var lY=_mz(z,'text',['class',32,'selectable',1],[],oR,xQ,gg)9868var aZ=_oz(z,34,oR,xQ,gg)9869_(lY,aZ)9870_(oX,lY)9871var t1=_n('view')9872_rz(z,t1,'class',35,oR,xQ,gg)9873var e2=_oz(z,36,oR,xQ,gg)9874_(t1,e2)9875_(oX,t1)9876_(cW,oX)9877var b3=_mz(z,'image',['class',37,'lazyLoad',1,'mode',2,'src',3],[],oR,xQ,gg)9878_(cW,b3)9879_(oV,cW)9880_(hU,oV)9881_(fS,hU)9882return fS9883}9884bO.wxXCkey=29885_2z(z,22,oP,e,s,gg,bO,'item','index','index')9886_(oB,eN)9887var xC=_v()9888_(oB,xC)9889if(_oz(z,41,e,s,gg)){xC.wxVkey=19890var o4=_n('view')9891_rz(z,o4,'class',42,e,s,gg)9892var x5=_oz(z,43,e,s,gg)9893_(o4,x5)9894_(xC,o4)9895}9896var oD=_v()9897_(oB,oD)9898if(_oz(z,44,e,s,gg)){oD.wxVkey=19899var o6=_n('view')9900_rz(z,o6,'class',45,e,s,gg)9901var f7=_oz(z,46,e,s,gg)9902_(o6,f7)9903_(oD,o6)9904}9905xC.wxXCkey=19906oD.wxXCkey=19907_(r,oB)9908}catch(err){9909p_[b]=false9910throw err9911}9912p_[b]=false9913return r9914}9915var m75=function(e,s,r,gg){9916var z=gz$gwx_76()9917return r9918}9919e_[x[116]]={f:m75,j:[],i:[],ti:[],ic:[]}9920d_[x[117]]={}9921var m76=function(e,s,r,gg){9922var z=gz$gwx_77()9923var tMH=e_[x[117]].i9924_ai(tMH,x[118],e_,x[117],1,1)9925var eNH=_v()9926_(r,eNH)9927var bOH=_oz(z,1,e,s,gg)9928var oPH=_gd(x[117],bOH,e_,d_)9929if(oPH){9930var xQH=_1z(z,0,e,s,gg) || {}9931var cur_globalf=gg.f9932eNH.wxXCkey=39933oPH(xQH,xQH,eNH,gg)9934gg.f=cur_globalf9935}9936else _w(bOH,x[117],2,18)9937tMH.pop()9938return r9939}9940e_[x[117]]={f:m76,j:[],i:[],ti:[x[118]],ic:[]}9941d_[x[119]]={}9942d_[x[119]]["41c8f51a"]=function(e,s,r,gg){9943var z=gz$gwx_78()9944var b=x[119]+':41c8f51a'9945r.wxVkey=b9946gg.f=$gdc(f_["./pages/xingxiangjianshe.vue.wxml"],"",1)9947if(p_[b]){_wl(b,x[119]);return}9948p_[b]=true9949try{9950var oB=_n('view')9951_rz(z,oB,'class',1,e,s,gg)9952var xC=_mz(z,'text',['class',2,'selectable',1],[],e,s,gg)9953var oD=_oz(z,4,e,s,gg)9954_(xC,oD)9955_(oB,xC)9956var fE=_mz(z,'rich-text',['class',5,'nodes',1],[],e,s,gg)9957_(oB,fE)9958var cF=_n('view')9959_rz(z,cF,'class',7,e,s,gg)9960var hG=_n('view')9961_rz(z,hG,'class',8,e,s,gg)9962var oH=_v()9963_(hG,oH)9964if(_oz(z,9,e,s,gg)){oH.wxVkey=19965var cI=_mz(z,'image',['bindtap',10,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)9966_(oH,cI)9967}9968else{oH.wxVkey=29969var oJ=_mz(z,'image',['bindtap',15,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)9970_(oH,oJ)9971}9972var lK=_n('view')9973_rz(z,lK,'class',20,e,s,gg)9974var aL=_oz(z,21,e,s,gg)9975_(lK,aL)9976_(hG,lK)9977oH.wxXCkey=19978_(cF,hG)9979var tM=_n('view')9980_rz(z,tM,'class',22,e,s,gg)9981var eN=_v()9982_(tM,eN)9983if(_oz(z,23,e,s,gg)){eN.wxVkey=19984var bO=_mz(z,'image',['bindtap',24,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)9985_(eN,bO)9986}9987else{eN.wxVkey=29988var oP=_mz(z,'image',['bindtap',29,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)9989_(eN,oP)9990}9991var xQ=_n('view')9992_rz(z,xQ,'class',34,e,s,gg)9993var oR=_oz(z,35,e,s,gg)9994_(xQ,oR)9995_(tM,xQ)9996eN.wxXCkey=19997_(cF,tM)9998_(oB,cF)9999_(r,oB)10000}catch(err){10001p_[b]=false10002throw err10003}10004p_[b]=false10005return r10006}10007var m77=function(e,s,r,gg){10008var z=gz$gwx_78()10009return r10010}10011e_[x[119]]={f:m77,j:[],i:[],ti:[],ic:[]}10012d_[x[120]]={}10013var m78=function(e,s,r,gg){10014var z=gz$gwx_79()10015var cTH=e_[x[120]].i10016_ai(cTH,x[121],e_,x[120],1,1)10017var hUH=_v()10018_(r,hUH)10019var oVH=_oz(z,1,e,s,gg)10020var cWH=_gd(x[120],oVH,e_,d_)10021if(cWH){10022var oXH=_1z(z,0,e,s,gg) || {}10023var cur_globalf=gg.f10024hUH.wxXCkey=310025cWH(oXH,oXH,hUH,gg)10026gg.f=cur_globalf10027}10028else _w(oVH,x[120],2,18)10029cTH.pop()10030return r10031}10032e_[x[120]]={f:m78,j:[],i:[],ti:[x[121]],ic:[]}10033d_[x[122]]={}10034d_[x[122]]["c830ee90"]=function(e,s,r,gg){10035var z=gz$gwx_80()10036var b=x[122]+':c830ee90'10037r.wxVkey=b10038gg.f=$gdc(f_["./pages/xingxiangjianshelist.vue.wxml"],"",1)10039if(p_[b]){_wl(b,x[122]);return}10040p_[b]=true10041try{10042var oB=_n('view')10043_rz(z,oB,'class',1,e,s,gg)10044var fE=_v()10045_(oB,fE)10046var cF=function(oH,hG,cI,gg){10047var lK=_mz(z,'view',['class',6,'key',1],[],oH,hG,gg)10048var aL=_mz(z,'view',['bindtap',8,'class',1,'data-comkey',2,'data-eventid',3],[],oH,hG,gg)10049var tM=_n('view')10050_rz(z,tM,'class',12,oH,hG,gg)10051var eN=_n('view')10052_rz(z,eN,'class',13,oH,hG,gg)10053var bO=_mz(z,'text',['class',14,'selectable',1],[],oH,hG,gg)10054var oP=_oz(z,16,oH,hG,gg)10055_(bO,oP)10056_(eN,bO)10057var xQ=_n('view')10058_rz(z,xQ,'class',17,oH,hG,gg)10059var oR=_oz(z,18,oH,hG,gg)10060_(xQ,oR)10061_(eN,xQ)10062_(tM,eN)10063var fS=_mz(z,'image',['class',19,'lazyLoad',1,'mode',2,'src',3],[],oH,hG,gg)10064_(tM,fS)10065_(aL,tM)10066_(lK,aL)10067_(cI,lK)10068return cI10069}10070fE.wxXCkey=210071_2z(z,4,cF,e,s,gg,fE,'item','index','index')10072var xC=_v()10073_(oB,xC)10074if(_oz(z,23,e,s,gg)){xC.wxVkey=110075var cT=_n('view')10076_rz(z,cT,'class',24,e,s,gg)10077var hU=_oz(z,25,e,s,gg)10078_(cT,hU)10079_(xC,cT)10080}10081var oD=_v()10082_(oB,oD)10083if(_oz(z,26,e,s,gg)){oD.wxVkey=110084var oV=_n('view')10085_rz(z,oV,'class',27,e,s,gg)10086var cW=_oz(z,28,e,s,gg)10087_(oV,cW)10088_(oD,oV)10089}10090xC.wxXCkey=110091oD.wxXCkey=110092_(r,oB)10093}catch(err){10094p_[b]=false10095throw err10096}10097p_[b]=false10098return r10099}10100var m79=function(e,s,r,gg){10101var z=gz$gwx_80()10102return r10103}10104e_[x[122]]={f:m79,j:[],i:[],ti:[],ic:[]}10105d_[x[123]]={}10106var m80=function(e,s,r,gg){10107var z=gz$gwx_81()10108var t1H=e_[x[123]].i10109_ai(t1H,x[124],e_,x[123],1,1)10110var e2H=_v()10111_(r,e2H)10112var b3H=_oz(z,1,e,s,gg)10113var o4H=_gd(x[123],b3H,e_,d_)10114if(o4H){10115var x5H=_1z(z,0,e,s,gg) || {}10116var cur_globalf=gg.f10117e2H.wxXCkey=310118o4H(x5H,x5H,e2H,gg)10119gg.f=cur_globalf10120}10121else _w(b3H,x[123],2,18)10122t1H.pop()10123return r10124}10125e_[x[123]]={f:m80,j:[],i:[],ti:[x[124]],ic:[]}10126d_[x[125]]={}10127d_[x[125]]["25a024cd"]=function(e,s,r,gg){10128var z=gz$gwx_82()10129var b=x[125]+':25a024cd'10130r.wxVkey=b10131gg.f=$gdc(f_["./pages/xinliceshi.vue.wxml"],"",1)10132if(p_[b]){_wl(b,x[125]);return}10133p_[b]=true10134try{10135var oB=_n('view')10136_rz(z,oB,'class',1,e,s,gg)10137var xC=_v()10138_(oB,xC)10139if(_oz(z,2,e,s,gg)){xC.wxVkey=110140var oH=_n('view')10141_rz(z,oH,'class',3,e,s,gg)10142var cI=_n('view')10143_rz(z,cI,'class',4,e,s,gg)10144var oJ=_oz(z,5,e,s,gg)10145_(cI,oJ)10146_(oH,cI)10147var lK=_n('view')10148_rz(z,lK,'class',6,e,s,gg)10149var aL=_mz(z,'rich-text',['class',7,'nodes',1],[],e,s,gg)10150_(lK,aL)10151_(oH,lK)10152var tM=_n('view')10153_rz(z,tM,'class',9,e,s,gg)10154var eN=_oz(z,10,e,s,gg)10155_(tM,eN)10156_(oH,tM)10157var bO=_mz(z,'view',['bindtap',11,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)10158var oP=_oz(z,15,e,s,gg)10159_(bO,oP)10160_(oH,bO)10161_(xC,oH)10162}10163var oD=_v()10164_(oB,oD)10165if(_oz(z,16,e,s,gg)){oD.wxVkey=110166var xQ=_n('view')10167_rz(z,xQ,'class',17,e,s,gg)10168var oR=_oz(z,18,e,s,gg)10169_(xQ,oR)10170_(oD,xQ)10171}10172var fE=_v()10173_(oB,fE)10174if(_oz(z,19,e,s,gg)){fE.wxVkey=110175var fS=_n('view')10176_rz(z,fS,'class',20,e,s,gg)10177var cT=_n('view')10178_rz(z,cT,'class',21,e,s,gg)10179var hU=_oz(z,22,e,s,gg)10180_(cT,hU)10181_(fS,cT)10182var oV=_v()10183_(fS,oV)10184var cW=function(lY,oX,aZ,gg){10185var e2=_mz(z,'view',['class',27,'key',1],[],lY,oX,gg)10186var b3=_mz(z,'view',['bindtap',29,'class',1,'data-comkey',2,'data-eventid',3],[],lY,oX,gg)10187var x5=_n('view')10188_rz(z,x5,'class',33,lY,oX,gg)10189var o6=_oz(z,34,lY,oX,gg)10190_(x5,o6)10191_(b3,x5)10192var o4=_v()10193_(b3,o4)10194if(_oz(z,35,lY,oX,gg)){o4.wxVkey=110195var f7=_n('view')10196_rz(z,f7,'class',36,lY,oX,gg)10197_(o4,f7)10198}10199else{o4.wxVkey=210200var c8=_n('view')10201_rz(z,c8,'class',37,lY,oX,gg)10202_(o4,c8)10203}10204o4.wxXCkey=110205_(e2,b3)10206_(aZ,e2)10207return aZ10208}10209oV.wxXCkey=210210_2z(z,25,cW,e,s,gg,oV,'item','index','index')10211var h9=_n('view')10212_rz(z,h9,'class',38,e,s,gg)10213var o0=_v()10214_(h9,o0)10215if(_oz(z,39,e,s,gg)){o0.wxVkey=110216var oBB=_mz(z,'view',['bindtap',40,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)10217var lCB=_oz(z,44,e,s,gg)10218_(oBB,lCB)10219_(o0,oBB)10220}10221var cAB=_v()10222_(h9,cAB)10223if(_oz(z,45,e,s,gg)){cAB.wxVkey=110224var aDB=_mz(z,'view',['bindtap',46,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)10225var tEB=_oz(z,50,e,s,gg)10226_(aDB,tEB)10227_(cAB,aDB)10228}10229o0.wxXCkey=110230cAB.wxXCkey=110231_(fS,h9)10232_(fE,fS)10233}10234var cF=_v()10235_(oB,cF)10236if(_oz(z,51,e,s,gg)){cF.wxVkey=110237var eFB=_n('view')10238_rz(z,eFB,'class',52,e,s,gg)10239var bGB=_oz(z,53,e,s,gg)10240_(eFB,bGB)10241_(cF,eFB)10242}10243var hG=_v()10244_(oB,hG)10245if(_oz(z,54,e,s,gg)){hG.wxVkey=110246var oHB=_n('view')10247_rz(z,oHB,'class',55,e,s,gg)10248var xIB=_n('view')10249_rz(z,xIB,'class',56,e,s,gg)10250var oJB=_oz(z,57,e,s,gg)10251_(xIB,oJB)10252_(oHB,xIB)10253var fKB=_n('view')10254_rz(z,fKB,'class',58,e,s,gg)10255var cLB=_mz(z,'rich-text',['class',59,'nodes',1],[],e,s,gg)10256_(fKB,cLB)10257_(oHB,fKB)10258var hMB=_n('view')10259_rz(z,hMB,'class',61,e,s,gg)10260var oNB=_oz(z,62,e,s,gg)10261_(hMB,oNB)10262_(oHB,hMB)10263var cOB=_n('view')10264_rz(z,cOB,'class',63,e,s,gg)10265var oPB=_oz(z,64,e,s,gg)10266_(cOB,oPB)10267_(oHB,cOB)10268var lQB=_mz(z,'view',['bindtap',65,'class',1,'data-comkey',2,'data-eventid',3],[],e,s,gg)10269var aRB=_oz(z,69,e,s,gg)10270_(lQB,aRB)10271_(oHB,lQB)10272var tSB=_n('view')10273_rz(z,tSB,'class',70,e,s,gg)10274var eTB=_n('view')10275_rz(z,eTB,'class',71,e,s,gg)10276var bUB=_v()10277_(eTB,bUB)10278if(_oz(z,72,e,s,gg)){bUB.wxVkey=110279var oVB=_mz(z,'image',['bindtap',73,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)10280_(bUB,oVB)10281}10282else{bUB.wxVkey=210283var xWB=_mz(z,'image',['bindtap',78,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)10284_(bUB,xWB)10285}10286var oXB=_n('view')10287_rz(z,oXB,'class',83,e,s,gg)10288var fYB=_oz(z,84,e,s,gg)10289_(oXB,fYB)10290_(eTB,oXB)10291bUB.wxXCkey=110292_(tSB,eTB)10293var cZB=_n('view')10294_rz(z,cZB,'class',85,e,s,gg)10295var h1B=_v()10296_(cZB,h1B)10297if(_oz(z,86,e,s,gg)){h1B.wxVkey=110298var o2B=_mz(z,'image',['bindtap',87,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)10299_(h1B,o2B)10300}10301else{h1B.wxVkey=210302var c3B=_mz(z,'image',['bindtap',92,'class',1,'data-comkey',2,'data-eventid',3,'src',4],[],e,s,gg)10303_(h1B,c3B)10304}10305var o4B=_n('view')10306_rz(z,o4B,'class',97,e,s,gg)10307var l5B=_oz(z,98,e,s,gg)10308_(o4B,l5B)10309_(cZB,o4B)10310h1B.wxXCkey=110311_(tSB,cZB)10312_(oHB,tSB)10313_(hG,oHB)10314}10315xC.wxXCkey=110316oD.wxXCkey=110317fE.wxXCkey=110318cF.wxXCkey=110319hG.wxXCkey=110320_(r,oB)10321}catch(err){10322p_[b]=false10323throw err10324}10325p_[b]=false10326return r10327}10328var m81=function(e,s,r,gg){10329var z=gz$gwx_82()10330return r10331}10332e_[x[125]]={f:m81,j:[],i:[],ti:[],ic:[]}10333d_[x[126]]={}10334var m82=function(e,s,r,gg){10335var z=gz$gwx_83()10336var c8H=e_[x[126]].i10337_ai(c8H,x[127],e_,x[126],1,1)10338var h9H=_v()10339_(r,h9H)10340var o0H=_oz(z,1,e,s,gg)10341var cAI=_gd(x[126],o0H,e_,d_)10342if(cAI){10343var oBI=_1z(z,0,e,s,gg) || {}10344var cur_globalf=gg.f10345h9H.wxXCkey=310346cAI(oBI,oBI,h9H,gg)10347gg.f=cur_globalf10348}10349else _w(o0H,x[126],2,18)10350c8H.pop()10351return r10352}10353e_[x[126]]={f:m82,j:[],i:[],ti:[x[127]],ic:[]}10354d_[x[128]]={}10355d_[x[128]]["5c69a6eb"]=function(e,s,r,gg){10356var z=gz$gwx_84()10357var b=x[128]+':5c69a6eb'10358r.wxVkey=b10359gg.f=$gdc(f_["./pages/xinliceshilist.vue.wxml"],"",1)10360if(p_[b]){_wl(b,x[128]);return}10361p_[b]=true10362try{10363var oB=_n('view')10364_rz(z,oB,'class',1,e,s,gg)10365var fE=_mz(z,'scroll-view',['class',2,'scrollX',1],[],e,s,gg)10366var cF=_v()10367_(fE,cF)10368var hG=function(cI,oH,oJ,gg){10369var aL=_mz(z,'view',['bindtap',8,'class',1,'data-comkey',2,'data-eventid',3,'key',4],[],cI,oH,gg)10370var tM=_oz(z,13,cI,oH,gg)10371_(aL,tM)10372_(oJ,aL)10373return oJ10374}10375cF.wxXCkey=210376_2z(z,6,hG,e,s,gg,cF,'item','index','index')10377_(oB,fE)10378var eN=_mz(z,'view',['bindtouchend',14,'bindtouchstart',1,'class',2,'data-comkey',3,'data-eventid',4],[],e,s,gg)10379var bO=_v()10380_(eN,bO)10381var oP=function(oR,xQ,fS,gg){10382var hU=_mz(z,'view',['class',23,'key',1],[],oR,xQ,gg)10383var oV=_mz(z,'view',['bindtap',25,'class',1,'data-comkey',2,'data-eventid',3],[],oR,xQ,gg)10384var cW=_n('view')10385_rz(z,cW,'class',29,oR,xQ,gg)10386var oX=_n('view')10387_rz(z,oX,'class',30,oR,xQ,gg)10388var lY=_mz(z,'text',['class',31,'selectable',1],[],oR,xQ,gg)10389var aZ=_oz(z,33,oR,xQ,gg)10390_(lY,aZ)10391_(oX,lY)10392var t1=_n('view')10393_rz(z,t1,'class',34,oR,xQ,gg)10394var e2=_oz(z,35,oR,xQ,gg)10395_(t1,e2)10396_(oX,t1)10397_(cW,oX)10398var b3=_mz(z,'image',['class',36,'lazyLoad',1,'mode',2,'src',3],[],oR,xQ,gg)10399_(cW,b3)10400_(oV,cW)10401_(hU,oV)10402_(fS,hU)10403return fS10404}10405bO.wxXCkey=210406_2z(z,21,oP,e,s,gg,bO,'item','index','index')10407_(oB,eN)10408var xC=_v()10409_(oB,xC)10410if(_oz(z,40,e,s,gg)){xC.wxVkey=110411var o4=_n('view')10412_rz(z,o4,'class',41,e,s,gg)10413var x5=_oz(z,42,e,s,gg)10414_(o4,x5)10415_(xC,o4)10416}10417var oD=_v()10418_(oB,oD)10419if(_oz(z,43,e,s,gg)){oD.wxVkey=110420var o6=_n('view')10421_rz(z,o6,'class',44,e,s,gg)10422var f7=_oz(z,45,e,s,gg)10423_(o6,f7)10424_(oD,o6)10425}10426xC.wxXCkey=110427oD.wxXCkey=110428_(r,oB)10429}catch(err){10430p_[b]=false10431throw err10432}10433p_[b]=false10434return r10435}10436var m83=function(e,s,r,gg){10437var z=gz$gwx_84()10438return r10439}10440e_[x[128]]={f:m83,j:[],i:[],ti:[],ic:[]}10441d_[x[129]]={}10442var m84=function(e,s,r,gg){10443var z=gz$gwx_85()10444var tEI=e_[x[129]].i10445_ai(tEI,x[130],e_,x[129],1,1)10446var eFI=_v()10447_(r,eFI)10448var bGI=_oz(z,1,e,s,gg)10449var oHI=_gd(x[129],bGI,e_,d_)10450if(oHI){10451var xII=_1z(z,0,e,s,gg) || {}10452var cur_globalf=gg.f10453eFI.wxXCkey=310454oHI(xII,xII,eFI,gg)10455gg.f=cur_globalf10456}10457else _w(bGI,x[129],2,18)10458tEI.pop()10459return r10460}10461e_[x[129]]={f:m84,j:[],i:[],ti:[x[130]],ic:[]}10462if(path&&e_[path]){10463window.__wxml_comp_version__=0.0210464return function(env,dd,global){$gwxc=0;var root={"tag":"wx-page"};root.children=[]10465var main=e_[path].f10466if (typeof global==="undefined")global={};global.f=$gdc(f_[path],"",1);10467if(typeof(window.__webview_engine_version__)!='undefined'&&window.__webview_engine_version__+1e-6>=0.02+1e-6&&window.__mergeData__)10468{10469env=window.__mergeData__(env,dd);10470}10471try{10472main(env,{},root,global);10473_tsd(root)10474if(typeof(window.__webview_engine_version__)=='undefined'|| window.__webview_engine_version__+1e-6<0.01+1e-6){return _ev(root);}10475}catch(err){10476console.log(err)10477}10478return root;10479}10480}10481}10482var BASE_DEVICE_WIDTH = 750;10483var isIOS=navigator.userAgent.match("iPhone");10484var deviceWidth = window.screen.width || 375;10485var deviceDPR = window.devicePixelRatio || 2;10486var checkDeviceWidth = window.__checkDeviceWidth__ || function() {10487var newDeviceWidth = window.screen.width || 37510488var newDeviceDPR = window.devicePixelRatio || 210489var newDeviceHeight = window.screen.height || 37510490if (window.screen.orientation && /^landscape/.test(window.screen.orientation.type || '')) newDeviceWidth = newDeviceHeight10491if (newDeviceWidth !== deviceWidth || newDeviceDPR !== deviceDPR) {10492deviceWidth = newDeviceWidth10493deviceDPR = newDeviceDPR10494}10495}10496checkDeviceWidth()10497var eps = 1e-4;10498var transformRPX = window.__transformRpx__ || function(number, newDeviceWidth) {10499if ( number === 0 ) return 0;10500number = number / BASE_DEVICE_WIDTH * ( newDeviceWidth || deviceWidth );10501number = Math.floor(number + eps);10502if (number === 0) {10503if (deviceDPR === 1 || !isIOS) {10504return 1;10505} else {10506return 0.5;10507}10508}10509return number;10510}10511var setCssToHead = function(file, _xcInvalid, info) {10512var Ca = {};10513var css_id;10514var info = info || {};10515var _C= [[[2,1],],[".",[1],"swiper-tab { margin-top: ",[0,0],"; margin-bottom: ",[0,0],"; padding: ",[0,0],"; font-weight: bolder; padding-left: 10%; padding-right: 10%; line-height: ",[0,66],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; text-align: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"swiper-tab-list { font-size: ",[0,38],"; color: #777777; }\n.",[1],"active { color: #ff4500; border-bottom: ",[0,5]," solid #ff4500; }\n.",[1],"huashuList .",[1],"duihua { margin-top: ",[0,20],"; border-radius: ",[0,20],"; margin-left: ",[0,20],"; margin-right: ",[0,20],"; padding-left: ",[0,20],"; padding-right: ",[0,20],"; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; background: #ffffff; }\n.",[1],"huashuList .",[1],"nv { line-height: 25px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; left: 0; }\n.",[1],"huashuList .",[1],"nan { line-height: 25px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; left: 0; }\n.",[1],"huashuList .",[1],"item_img { padding-top: ",[0,10],"; padding-right: ",[0,10],"; width: ",[0,35],"; height: ",[0,35],"; }\n.",[1],"huashuList .",[1],"textkuang { width: 100%; }\n.",[1],"huashuList .",[1],"text { font-size: ",[0,28],"; color: #333; }\n.",[1],"huashuList .",[1],"vip { margin-top: ",[0,20],"; text-align: center; }\n.",[1],"huashuList .",[1],"vip .",[1],"item_img { padding: ",[0,0],"; border-radius: ",[0,20],"; width: ",[0,368],"; height: ",[0,248],"; }\n.",[1],"biaoqingkuai { padding-top: ",[0,10],"; }\n.",[1],"biaoqingList { display: inline-block; }\n.",[1],"biaoqingList .",[1],"box { margin-top: ",[0,20],"; margin-left: ",[0,20],"; }\n.",[1],"biaoqingList .",[1],"box .",[1],"image_box { border-radius: ",[0,20],"; border: ",[0,1]," solid #ffffff; width: ",[0,220],"; height: ",[0,220],"; }\n.",[1],"container { background: #ffffff; border-top: 6px solid #efefef; }\n.",[1],"container .",[1],"wenzhang { background: #ffffff; width: 92%; margin-left: 4%; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; border-bottom: 1px solid #efefef; }\n.",[1],"container .",[1],"wenzhang .",[1],"kuai { padding-left: ",[0,16],"; padding-right: ",[0,16],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"container .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang { width: 80%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"container .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"title { color: #333; font-size: ",[0,28],"; width: ",[0,420],"; }\n.",[1],"container .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"laiyuan { text-align: center; width: ",[0,100],"; font-size: ",[0,20],"; color: #fff; background: #ff7e00; border-radius: ",[0,20],"; }\n.",[1],"container .",[1],"wenzhang .",[1],"kuai .",[1],"image { margin-left: ",[0,16],"; height: ",[0,138],"; width: ",[0,250],"; }\n.",[1],"empty-placeholder { width: 100%; text-align: center; }\n.",[1],"empty-placeholder wx-text { color: #666; font-size: ",[0,38],"; }\n.",[1],"icon-xl { width: 100%; display: block; margin: 0 auto; }\n",],];10516function makeup(file, opt) {10517var _n = typeof(file) === "number";10518if ( _n && Ca.hasOwnProperty(file)) return "";10519if ( _n ) Ca[file] = 1;10520var ex = _n ? _C[file] : file;10521var res="";10522for (var i = ex.length - 1; i >= 0; i--) {10523var content = ex[i];10524if (typeof(content) === "object")10525{10526var op = content[0];10527if ( op == 0 )10528res = transformRPX(content[1], opt.deviceWidth) + "px" + res;10529else if ( op == 1)10530res = opt.suffix + res;10531else if ( op == 2 ) 10532res = makeup(content[1], opt) + res;10533}10534else10535res = content + res10536}10537return res;10538}10539var rewritor = function(suffix, opt, style){10540opt = opt || {};10541suffix = suffix || "";10542opt.suffix = suffix;10543if ( opt.allowIllegalSelector != undefined && _xcInvalid != undefined )10544{10545if ( opt.allowIllegalSelector )10546console.warn( "For developer:" + _xcInvalid );10547else10548{10549console.error( _xcInvalid + "This wxss file is ignored." );10550return;10551}10552}10553Ca={};10554css = makeup(file, opt);10555if ( !style ) 10556{10557var head = document.head || document.getElementsByTagName('head')[0];10558window.__rpxRecalculatingFuncs__ = window.__rpxRecalculatingFuncs__ || [];10559style = document.createElement('style');10560style.type = 'text/css';10561style.setAttribute( "wxss:path", info.path );10562head.appendChild(style);10563window.__rpxRecalculatingFuncs__.push(function(size){10564opt.deviceWidth = size.width;10565rewritor(suffix, opt, style);10566});10567}10568if (style.styleSheet) {10569style.styleSheet.cssText = css;10570} else {10571if ( style.childNodes.length == 0 )10572style.appendChild(document.createTextNode(css));10573else 10574style.childNodes[0].nodeValue = css;10575}10576}10577return rewritor;10578}10579setCssToHead([])();setCssToHead([[2,0]],undefined,{path:"./app.wxss"})();10580__wxAppCode__['components/baike.wxss']=undefined; 10581__wxAppCode__['components/baike.wxml']=$gwx('./components/baike.wxml');10582__wxAppCode__['components/biaoqing.wxss']=undefined; 10583__wxAppCode__['components/biaoqing.wxml']=$gwx('./components/biaoqing.wxml');10584__wxAppCode__['components/huashu.wxss']=undefined; 10585__wxAppCode__['components/huashu.wxml']=$gwx('./components/huashu.wxml');10586__wxAppCode__['components/loading.wxss']=setCssToHead([".",[1],"loadMoreGif { margin: ",[0,15]," auto; width: ",[0,220],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; }\n.",[1],"loadMoreGif wx-text { font-size: ",[0,30],"; color: #999; margin-left: ",[0,10],"; }\n.",[1],"loadMoreGif wx-image { width: ",[0,30],"; height: ",[0,30],"; }\n",],undefined,{path:"./components/loading.wxss"}); 10587__wxAppCode__['components/loading.wxml']=$gwx('./components/loading.wxml');10588__wxAppCode__['components/placeholder.wxss']=undefined; 10589__wxAppCode__['components/placeholder.wxml']=$gwx('./components/placeholder.wxml');10590__wxAppCode__['components/tab.wxss']=undefined; 10591__wxAppCode__['components/tab.wxml']=$gwx('./components/tab.wxml');10592__wxAppCode__['pages/adding.wxss']=setCssToHead([".",[1],"adding { background: #fff; padding-top: ",[0,300],"; text-align: center; font-size: ",[0,30],"; color: #000000; }\n.",[1],"futrue { margin-top: ",[0,300],"; }\n",],undefined,{path:"./pages/adding.wxss"}); 10593__wxAppCode__['pages/adding.wxml']=$gwx('./pages/adding.wxml');10594__wxAppCode__['pages/baike.wxss']=setCssToHead([".",[1],"baike { background: #ffffff; padding-left: ",[0,30],"; padding-right: ",[0,30],"; color: #000; word-break: break-all; text-align: center; }\n.",[1],"title { color: #000; font-size: ",[0,40],"; }\n.",[1],"dikuang { padding-bottom: ",[0,100],"; width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"dikuang .",[1],"shoucangkuang { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; text-align: center; }\n.",[1],"dikuang .",[1],"shoucangkuang .",[1],"shoucang { width: ",[0,100],"; height: ",[0,100],"; margin-top: ",[0,100],"; }\n",],undefined,{path:"./pages/baike.wxss"}); 10595__wxAppCode__['pages/baike.wxml']=$gwx('./pages/baike.wxml');10596__wxAppCode__['pages/baikelist.wxss']=setCssToHead([".",[1],"baikelist { background: #ffffff; }\n.",[1],"baikelist .",[1],"wenzhang { background: #ffffff; width: 92%; margin-left: 4%; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; border-bottom: 1px solid #efefef; }\n.",[1],"baikelist .",[1],"wenzhang .",[1],"kuai { padding-left: ",[0,16],"; padding-right: ",[0,16],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"baikelist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang { width: 80%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"baikelist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"title { color: #333; font-size: ",[0,28],"; width: ",[0,420],"; }\n.",[1],"baikelist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"laiyuan { font-size: ",[0,20],"; }\n.",[1],"baikelist .",[1],"wenzhang .",[1],"kuai .",[1],"image { margin-left: ",[0,16],"; height: ",[0,138],"; width: ",[0,250],"; }\n.",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n",],undefined,{path:"./pages/baikelist.wxss"}); 10597__wxAppCode__['pages/baikelist.wxml']=$gwx('./pages/baikelist.wxml');10598__wxAppCode__['pages/dingdan.wxss']=setCssToHead([".",[1],"dingdan { margin: ",[0,0],"; padding-bottom: ",[0,20],"; background: #dfdfdf; }\n.",[1],"dingdan .",[1],"title { color: #000000; text-align: center; }\n.",[1],"dingdan .",[1],"dingdankuang { margin-top: ",[0,20],"; margin-left: ",[0,20],"; margin-right: ",[0,20],"; border-radius: ",[0,20],"; background: #FFFFFF; }\n.",[1],"dingdan .",[1],"dingdankuang .",[1],"dingdanminkuang { padding-top: ",[0,20],"; margin-left: ",[0,20],"; margin-right: ",[0,20],"; padding-bottom: ",[0,20],"; }\n.",[1],"dingdan .",[1],"dingdankuang .",[1],"dingdanminkuang .",[1],"guding { color: #000000; }\n.",[1],"dingdan .",[1],"dingdankuang .",[1],"dingdanminkuang .",[1],"xiangqing { padding-left: ",[0,50],"; }\n.",[1],"dingdan .",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n",],undefined,{path:"./pages/dingdan.wxss"}); 10599__wxAppCode__['pages/dingdan.wxml']=$gwx('./pages/dingdan.wxml');10600__wxAppCode__['pages/fenxiao.wxss']=setCssToHead([".",[1],"fenxiao { background: #ffffff; color: #000; word-break: break-all; padding-bottom: ",[0,80],"; }\n.",[1],"tixian { margin: ",[0,20],"; color: #333; }\n.",[1],"tixian .",[1],"jinshi { color: #FF0000; }\n.",[1],"tixianjine { width: 60%; margin-left: 20%; text-align: center; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: ",[0,20],"; }\n.",[1],"tixianjine .",[1],"tixianclour { color: #333; }\n.",[1],"tixianjine .",[1],"jinekuang { width: ",[0,250],"; }\n.",[1],"dianjitixian { width: 60%; margin-left: 20%; margin-bottom: ",[0,200],"; }\n.",[1],"dingdankuang { margin-top: ",[0,20],"; margin-left: ",[0,20],"; margin-right: ",[0,20],"; border-radius: ",[0,20],"; background: #efefef; }\n.",[1],"dingdankuang .",[1],"dingdanminkuang { padding-top: ",[0,20],"; margin-left: ",[0,20],"; margin-right: ",[0,20],"; padding-bottom: ",[0,20],"; }\n.",[1],"dingdankuang .",[1],"dingdanminkuang .",[1],"guding { color: #000000; }\n.",[1],"dingdankuang .",[1],"dingdanminkuang .",[1],"xiangqing { padding-left: ",[0,50],"; }\n.",[1],"loadingkuang { text-align: center; }\n.",[1],"loading { width: ",[0,50],"; height: ",[0,50],"; }\n.",[1],"wenankuag { margin-left: ",[0,30],"; margin-top: ",[0,30],"; margin-bottom: ",[0,30],"; margin-right: ",[0,30],"; color: #333; }\n.",[1],"wenankuag .",[1],"wenan { margin-top: ",[0,30],"; color: #ff7e00; }\n.",[1],"banner { width: 100%; }\n.",[1],"shouhang { margin-top: ",[0,20],"; margin-left: ",[0,20],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; line-height: ",[0,60],"; }\n.",[1],"userinfo-avatar { margin-right: ",[0,30],"; width: ",[0,60],"; height: ",[0,60],"; border-radius: 50%; overflow: hidden; }\n.",[1],"headercontent0 { color: #333; font-size: ",[0,26],"; margin-right: ",[0,30],"; }\n.",[1],"jibie { margin-right: ",[0,30],"; padding-left: ",[0,10],"; padding-right: ",[0,10],"; font-size: ",[0,26],"; margin-top: ",[0,10],"; height: ",[0,40],"; line-height: ",[0,40],"; border: 1px solid #ff7e00; border-radius: ",[0,20],"; color: #ff7e00; }\n.",[1],"shuju { margin-top: ",[0,20],"; width: 96%; margin-left: 2%; background: #d8b980; border-radius: ",[0,10],"; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }\n.",[1],"shuju .",[1],"minkuang { font-size: ",[0,24],"; width: 35%; color: #fff; padding-left: ",[0,80],"; height: ",[0,120],"; }\n.",[1],"shuju .",[1],"minkuang .",[1],"shuzhi { padding-top: ",[0,20],"; }\n.",[1],"shuju .",[1],"minkuang .",[1],"kedianji { background: #09bb07; border-radius: ",[0,10],"; }\n.",[1],"haibaokuang { width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; }\n.",[1],"haibaokuang .",[1],"haibao { margin: ",[0,23],"; border: ",[0,1]," solid #ff7e00; border-radius: ",[0,20],"; width: ",[0,200],"; height: ",[0,200],"; }\n.",[1],"tab-h { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; height: ",[0,80],"; font-size: 28px; border-bottom: ",[0,2]," solid #dfdfdf; }\n.",[1],"tab-h .",[1],"tab-item { color: #000; margin-left: ",[0,20],"; margin-right: ",[0,20],"; display: inline; }\n.",[1],"tab-h .",[1],"tab-itemactive { color: #ff7e00; margin-left: ",[0,15],"; margin-right: ",[0,15],"; display: inline; padding-bottom: ",[0,6],"; border-bottom: ",[0,6]," solid #ff7e00; }\n.",[1],"libiao { margin-bottom: ",[0,50],"; }\n",],undefined,{path:"./pages/fenxiao.wxss"}); 10601__wxAppCode__['pages/fenxiao.wxml']=$gwx('./pages/fenxiao.wxml');10602__wxAppCode__['pages/home.wxss']=setCssToHead([".",[1],"home { background: #ffffff; text-align: center; padding-bottom: ",[0,30],"; }\n.",[1],"swiper { height: ",[0,300],"; }\n.",[1],"slide-image { width: 100%; height: 100%; }\n.",[1],"tubiao { margin-top: ",[0,20],"; width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"tubiao .",[1],"box { -webkit-box-sizing: border-box; box-sizing: border-box; text-align: center; }\n.",[1],"tubiao .",[1],"box .",[1],"image { width: ",[0,60],"; height: ",[0,60],"; }\n.",[1],"tubiao .",[1],"box .",[1],"title { font-size: ",[0,20],"; }\n.",[1],"search { margin-left: 10%; margin-top: ",[0,30],"; width: 80%; border-radius: ",[0,50],"; border: ",[0,4]," solid #ff7e00; height: ",[0,80],"; line-height: ",[0,100],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; }\n.",[1],"search .",[1],"text { margin-left: 12%; line-height: ",[0,80],"; width: 76%; overflow: hidden; }\n.",[1],"search .",[1],"image { margin-top: ",[0,20],"; width: ",[0,40],"; height: ",[0,40],"; }\n.",[1],"searchmiaoshu { margin-top: ",[0,10],"; font-size: ",[0,20],"; color: #ff7e00; }\n.",[1],"tuijiankuang { margin-top: ",[0,10],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"tuijiankuang .",[1],"tuijian { padding-left: ",[0,10],"; padding-right: ",[0,10],"; font-size: ",[0,20],"; color: #ffffff; background: #FFCC66; border-radius: ",[0,10],"; }\n.",[1],"kuai3 { margin-top: ",[0,30],"; }\n.",[1],"kuai3 .",[1],"shouhang { width: 100%; height: ",[0,40],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"kuai3 .",[1],"shouhang .",[1],"image1 { margin-left: ",[0,10],"; height: ",[0,40],"; width: ",[0,176],"; }\n.",[1],"kuai3 .",[1],"shouhang .",[1],"image2 { margin-top: ",[0,10],"; width: ",[0,20],"; height: ",[0,20],"; }\n.",[1],"kuai3 .",[1],"shouhang .",[1],"gengduo { color: #ff7e00; font-size: ",[0,26],"; line-height: ",[0,40],"; margin-right: ",[0,30],"; }\n.",[1],"kuai3 .",[1],"box { margin-top: ",[0,30],"; margin-left: ",[0,20],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; min-height: ",[0,203],"; }\n.",[1],"kuai3 .",[1],"box .",[1],"image { border-radius: ",[0,15],"; width: ",[0,335],"; height: ",[0,203],"; }\n.",[1],"kuai3 .",[1],"box .",[1],"text { margin-left: ",[0,30],"; margin-right: ",[0,30],"; margin-top: ",[0,10],"; margin-bottom: ",[0,10],"; text-align: left; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"kuai3 .",[1],"box .",[1],"text .",[1],"bigtext { min-height: ",[0,80],"; font-size: ",[0,26],"; color: #333; }\n.",[1],"kuai3 .",[1],"box .",[1],"text .",[1],"minlan { width: ",[0,320],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; text-align: center; }\n.",[1],"kuai3 .",[1],"box .",[1],"text .",[1],"minlan .",[1],"laiyuan { font-size: ",[0,20],"; }\n.",[1],"kuai3 .",[1],"box .",[1],"text .",[1],"minlan .",[1],"yigoumai { width: ",[0,100],"; color: #fff; background: #ff7e00; border-radius: ",[0,20],"; font-size: ",[0,20],"; }\n.",[1],"kuai3 .",[1],"box .",[1],"text .",[1],"mintext { font-size: ",[0,24],"; }\n.",[1],"kuai4 { margin-top: ",[0,30],"; }\n.",[1],"kuai4 .",[1],"shouhang { width: 100%; height: ",[0,40],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"kuai4 .",[1],"shouhang .",[1],"image1 { margin-left: ",[0,10],"; height: ",[0,40],"; width: ",[0,176],"; }\n.",[1],"kuai4 .",[1],"shouhang .",[1],"image2 { margin-top: ",[0,10],"; width: ",[0,20],"; height: ",[0,20],"; }\n.",[1],"kuai4 .",[1],"shouhang .",[1],"gengduo { color: #ff7e00; font-size: ",[0,26],"; line-height: ",[0,40],"; margin-right: ",[0,30],"; }\n.",[1],"kuai4 .",[1],"bigbox { display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-align-content: space-around; -ms-flex-line-pack: distribute; align-content: space-around; width: 100%; }\n.",[1],"kuai4 .",[1],"bigbox .",[1],"box { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-align-content: space-around; -ms-flex-line-pack: distribute; align-content: space-around; width: ",[0,375],"; text-align: left; }\n.",[1],"kuai4 .",[1],"bigbox .",[1],"box .",[1],"image { border-radius: ",[0,15],"; margin: ",[0,20],"; width: ",[0,335],"; height: ",[0,203],"; }\n.",[1],"kuai4 .",[1],"bigbox .",[1],"box .",[1],"text { margin-left: ",[0,30],"; margin-right: ",[0,30],"; text-align: left; }\n.",[1],"kuai4 .",[1],"bigbox .",[1],"box .",[1],"text .",[1],"bigtext { min-height: ",[0,80],"; font-size: ",[0,26],"; color: #333; }\n.",[1],"kuai4 .",[1],"bigbox .",[1],"box .",[1],"text .",[1],"mintext { margin-top: ",[0,10],"; font-size: ",[0,24],"; }\n",],undefined,{path:"./pages/home.wxss"}); 10603__wxAppCode__['pages/home.wxml']=$gwx('./pages/home.wxml');10604__wxAppCode__['pages/info.wxss']=setCssToHead([".",[1],"header { background: #ffffff; background: url(https://www.lianaizhuli.com/geren/gerenbeijing.png); background-size: ",[0,750]," ",[0,240],"; height: ",[0,240],"; }\n.",[1],"header .",[1],"headcontent { position: fixed; height: ",[0,300],"; margin-left: 5%; width: 90%; margin-top: ",[0,80],"; padding-top: ",[0,20],"; background: #ffffff; border-radius: ",[0,20],"; border: ",[0,1]," solid #efefef; }\n.",[1],"header .",[1],"headcontent .",[1],"wenhouyu { position: fixed; top: ",[0,0],"; height: ",[0,40],"; line-height: ",[0,40],"; left: ",[0,60],"; color: #ffffff; }\n.",[1],"header .",[1],"headcontent .",[1],"tuichu { position: fixed; top: ",[0,0],"; left: ",[0,650],"; width: ",[0,40],"; height: ",[0,40],"; }\n.",[1],"header .",[1],"headcontent .",[1],"diyihang { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-left: ",[0,200],"; color: #000000; }\n.",[1],"header .",[1],"headcontent .",[1],"diyihang .",[1],"nickname { line-height: ",[0,30],"; }\n.",[1],"header .",[1],"headcontent .",[1],"diyihang .",[1],"vipimage { margin-left: ",[0,20],"; width: ",[0,45],"; height: ",[0,35],"; }\n.",[1],"header .",[1],"headcontent .",[1],"dierhang { margin-left: ",[0,200],"; margin-top: ",[0,20],"; font-size: ",[0,26],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; color: #ff7e00; width: ",[0,600],"; }\n.",[1],"header .",[1],"headcontent .",[1],"disanhang { margin-top: ",[0,60],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; width: 100%; }\n.",[1],"header .",[1],"headcontent .",[1],"disanhang .",[1],"banimage { width: ",[0,200],"; height: ",[0,100],"; }\n.",[1],"headimgurlkuang { position: fixed; top: ",[0,50],"; left: ",[0,60],"; overflow: hidden; width: ",[0,150],"; height: ",[0,150],"; border-radius: ",[0,10],"; }\n.",[1],"headimgurlkuang .",[1],"headimgurl { width: ",[0,150],"; height: ",[0,150],"; }\n.",[1],"tequanming { margin-left: ",[0,50],"; color: #000000; }\n.",[1],"info_block { background: #ffffff; padding-top: ",[0,180],"; padding-bottom: ",[0,180],"; }\n.",[1],"info_block .",[1],"item { height: ",[0,100],"; line-height: ",[0,100],"; border-color: #ffffff; background: #ffffff; padding-left: ",[0,0],"; border-bottom: 1px solid #efefef; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; color: #000000; margin-left: 3%; width: 94%; border-radius: ",[0,0],"; }\n.",[1],"info_block .",[1],"item_content { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; }\n.",[1],"info_block .",[1],"text { width: ",[0,640],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; margin-left: ",[0,25],"; }\n.",[1],"info_block .",[1],"text .",[1],"text1 { font-size: ",[0,26],"; color: #000; }\n.",[1],"info_block .",[1],"text .",[1],"text2 { margin-top: ",[0,40],"; width: ",[0,20],"; height: ",[0,20],"; }\n.",[1],"info_block .",[1],"item_img { width: ",[0,30],"; height: ",[0,28],"; }\n.",[1],"info_block .",[1],"tip { color: #ffffff; font-size: ",[0,28],"; margin-top: ",[0,20],"; margin-left: ",[0,60],"; }\n",],undefined,{path:"./pages/info.wxss"}); 10605__wxAppCode__['pages/info.wxml']=$gwx('./pages/info.wxml');10606__wxAppCode__['pages/jifen.wxss']=setCssToHead([".",[1],"jifen { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; margin-top: ",[0,0],"; background: #ffffff; }\n.",[1],"kaitongtext { margin-top: ",[0,50],"; margin-left: ",[0,200],"; margin-right: ",[0,200],"; color: #000000; }\n.",[1],"vip { height: ",[0,60],"; background: #ff7e00; color: #ffffff; border-radius: ",[0,20],"; margin-top: ",[0,200],"; padding-top: ",[0,16],"; width: 60%; margin-left: 20%; }\n.",[1],"tequan { padding-top: ",[0,20],"; color: #000000; }\n.",[1],"shuzi { padding-top: ",[0,50],"; color: #ff7e00; }\n.",[1],"tequanneirong { margin-top: ",[0,20],"; margin-left: ",[0,138],"; text-align: left; }\n.",[1],"tequanneirong .",[1],"tequantext { color: #000000; }\n",],undefined,{path:"./pages/jifen.wxss"}); 10607__wxAppCode__['pages/jifen.wxml']=$gwx('./pages/jifen.wxml');10608__wxAppCode__['pages/kecheng.wxss']=setCssToHead([".",[1],"kecheng { background: #ffffff; color: #000; word-break: break-all; text-align: center; padding-bottom: ",[0,80],"; }\n.",[1],"banner { width: 100%; }\n.",[1],"title { color: #333; font-size: ",[0,40],"; margin-top: ",[0,20],"; margin-bottom: ",[0,20],"; }\n.",[1],"tab-h { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; height: ",[0,80],"; font-size: 28px; border-bottom: ",[0,2]," solid #dfdfdf; }\n.",[1],"tab-h .",[1],"tab-item { color: #000; margin-left: ",[0,20],"; margin-right: ",[0,20],"; display: inline; }\n.",[1],"tab-h .",[1],"tab-itemactive { color: #ff7e00; margin-left: ",[0,15],"; margin-right: ",[0,15],"; display: inline; padding-bottom: ",[0,6],"; border-bottom: ",[0,6]," solid #ff7e00; }\n.",[1],"libiao { margin-bottom: ",[0,50],"; }\n.",[1],"titlekuang { width: 90%; margin-left: 5%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; border-bottom: ",[0,2]," solid #dfdfdf; min-height: ",[0,120],"; line-height: ",[0,120],"; }\n.",[1],"itemtitle { text-align: left; color: #333; }\n.",[1],"yigoumai { margin-top: ",[0,45],"; width: ",[0,100],"; height: ",[0,30],"; line-height: ",[0,30],"; color: #fff; background: #ff7e00; border-radius: ",[0,20],"; font-size: ",[0,25],"; }\n.",[1],"suo { margin-top: ",[0,40],"; width: ",[0,40],"; height: ",[0,40],"; }\n.",[1],"kuang { position: fixed; bottom: 0; width: 100%; height: ",[0,100],"; background: #ffffff; }\n.",[1],"kuang .",[1],"text { margin-left: 20%; width: 60%; border-radius: ",[0,20],"; color: #ffffff; text-align: center; background: #09BB07; line-height: ",[0,100],"; }\n",],undefined,{path:"./pages/kecheng.wxss"}); 10609__wxAppCode__['pages/kecheng.wxml']=$gwx('./pages/kecheng.wxml');10610__wxAppCode__['pages/kechenglist.wxss']=setCssToHead([".",[1],"kechenglist { background: #ffffff; }\n.",[1],"kechenglist .",[1],"wenzhang { background: #ffffff; width: 92%; margin-left: 4%; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; border-bottom: 1px solid #efefef; }\n.",[1],"kechenglist .",[1],"wenzhang .",[1],"kuai { padding-left: ",[0,16],"; padding-right: ",[0,16],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"kechenglist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang { width: 80%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"kechenglist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"title { color: #333; font-size: ",[0,28],"; width: ",[0,420],"; }\n.",[1],"kechenglist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"minlan { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; text-align: center; }\n.",[1],"kechenglist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"minlan .",[1],"laiyuan { font-size: ",[0,20],"; }\n.",[1],"kechenglist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"minlan .",[1],"yigoumai { width: ",[0,100],"; color: #fff; background: #ff7e00; border-radius: ",[0,20],"; font-size: ",[0,20],"; }\n.",[1],"kechenglist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"minlan .",[1],"weigoumai { width: ",[0,100],"; color: #fff; background: #09BB07; border-radius: ",[0,20],"; font-size: ",[0,20],"; }\n.",[1],"kechenglist .",[1],"wenzhang .",[1],"kuai .",[1],"image { margin-left: ",[0,16],"; height: ",[0,138],"; width: ",[0,250],"; }\n.",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n",],undefined,{path:"./pages/kechenglist.wxss"}); 10611__wxAppCode__['pages/kechenglist.wxml']=$gwx('./pages/kechenglist.wxml');10612__wxAppCode__['pages/kechengneirong.wxss']=setCssToHead([".",[1],"kechengneirong { background: #ffffff; padding-left: ",[0,30],"; padding-right: ",[0,30],"; color: #333; word-break: break-all; text-align: justify; padding-bottom: ",[0,100],"; }\n.",[1],"title { color: #333; font-size: ",[0,40],"; }\n",],undefined,{path:"./pages/kechengneirong.wxss"}); 10613__wxAppCode__['pages/kechengneirong.wxml']=$gwx('./pages/kechengneirong.wxml');10614__wxAppCode__['pages/liaomeishizhan.wxss']=setCssToHead([".",[1],"liaomeishizhan { background: #FFFFFF; }\n.",[1],"liaomeishizhan .",[1],"title { padding-left: ",[0,20],"; padding-right: ",[0,20],"; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; font-weight: bolder; font-size: ",[0,38],"; color: #000000; }\n.",[1],"liaomeishizhan .",[1],"image { width: 100%; }\n.",[1],"liaomeishizhan .",[1],"dikuang { padding-top: ",[0,100],"; padding-bottom: ",[0,100],"; width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"liaomeishizhan .",[1],"dikuang .",[1],"shoucangkuang { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; text-align: center; }\n.",[1],"liaomeishizhan .",[1],"dikuang .",[1],"shoucangkuang .",[1],"shoucang { width: ",[0,100],"; height: ",[0,100],"; margin-top: ",[0,100],"; }\n",],undefined,{path:"./pages/liaomeishizhan.wxss"}); 10615__wxAppCode__['pages/liaomeishizhan.wxml']=$gwx('./pages/liaomeishizhan.wxml');10616__wxAppCode__['pages/liaomeishizhanlist.wxss']=setCssToHead([".",[1],"liaomeishizhanlist { background: #ffffff; }\n.",[1],"liaomeishizhanlist .",[1],"wenzhang { background: #ffffff; width: 92%; margin-left: 4%; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; border-bottom: 1px solid #efefef; }\n.",[1],"liaomeishizhanlist .",[1],"wenzhang .",[1],"kuai { padding-left: ",[0,16],"; padding-right: ",[0,16],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"liaomeishizhanlist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang { width: 80%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"liaomeishizhanlist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"title { color: #333; font-size: ",[0,28],"; width: ",[0,420],"; }\n.",[1],"liaomeishizhanlist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"laiyuan { font-size: ",[0,20],"; }\n.",[1],"liaomeishizhanlist .",[1],"wenzhang .",[1],"kuai .",[1],"image { margin-left: ",[0,16],"; height: ",[0,138],"; width: ",[0,250],"; }\n.",[1],"liaomeishizhanlist .",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n",],undefined,{path:"./pages/liaomeishizhanlist.wxss"}); 10617__wxAppCode__['pages/liaomeishizhanlist.wxml']=$gwx('./pages/liaomeishizhanlist.wxml');10618__wxAppCode__['pages/liaomeitaolu.wxss']=setCssToHead([".",[1],"liaomeitaolu { text-align: justify; background: rgba(0, 0, 0, 0.1); }\n.",[1],"liaomeitaolu .",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n.",[1],"swiper { min-height: ",[0,5000],"; }\n.",[1],"current { text-align: center; color: #ff7e00; font-size: ",[0,30],"; }\n.",[1],"secondkuai { border-radius: ",[0,20],"; margin-left: ",[0,10],"; margin-right: ",[0,10],"; padding-left: ",[0,20],"; padding-right: ",[0,20],"; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; background: #ffffff; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"biaoti { text-align: center; white-space: pre-wrap; margin-bottom: ",[0,10],"; font-weight: bolder; font-size: ",[0,30],"; color: #333; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"fangshi { white-space: pre-wrap; margin-bottom: ",[0,10],"; font-weight: bolder; font-size: ",[0,30],"; color: #ff7e00; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"jiexi { white-space: pre-wrap; margin-top: ",[0,20],"; margin-bottom: ",[0,10],"; font-weight: bolder; font-size: ",[0,30],"; color: #333; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"nv { line-height: 25px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; left: 0; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"nan { line-height: 25px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; left: 0; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"item_img { padding-top: ",[0,10],"; padding-right: ",[0,10],"; width: ",[0,35],"; height: ",[0,35],"; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"textkuang { width: 100%; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"text { font-size: ",[0,28],"; color: #333; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"vip { margin-top: ",[0,20],"; text-align: center; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"vip .",[1],"item_img { padding: ",[0,0],"; border-radius: ",[0,20],"; width: ",[0,368],"; height: ",[0,248],"; }\n.",[1],"secondkuai .",[1],"duihua .",[1],"content { padding-left: ",[0,20],"; padding-right: ",[0,20],"; padding-bottom: ",[0,20],"; font-size: ",[0,28],"; }\n",],undefined,{path:"./pages/liaomeitaolu.wxss"}); 10619__wxAppCode__['pages/liaomeitaolu.wxml']=$gwx('./pages/liaomeitaolu.wxml');10620__wxAppCode__['pages/liaomeitaolulist.wxss']=setCssToHead([".",[1],"liaomeitaolulist { background: #ffffff; }\n.",[1],"liaomeitaolulist .",[1],"tou { height: ",[0,1],"; }\n.",[1],"kuai { margin: ",[0,20]," ",[0,20]," ",[0,20]," ",[0,20],"; background: #dfdfdf; border-radius: ",[0,20],"; }\n.",[1],"kuai .",[1],"biaoti { font-weight: bolder; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; position: relative; font-size: ",[0,30],"; color: #000; }\n.",[1],"kuai .",[1],"biaoti .",[1],"kuai_flag { margin-left: ",[0,20],"; margin-right: ",[0,20],"; width: ",[0,5],"; height: ",[0,28],"; background-color: #000000; }\n.",[1],"kuai .",[1],"kuai_list { color: #000000; }\n.",[1],"kuai .",[1],"kuai_list .",[1],"weui-btn { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin-top: ",[0,0],"; margin-bottom: ",[0,20],"; margin-left: 2.5%; width: 30%; height: ",[0,62],"; line-height: ",[0,62],"; background: #ffffff; font-size: ",[0,28],"; padding: ",[0,0],"; }\n",],undefined,{path:"./pages/liaomeitaolulist.wxss"}); 10621__wxAppCode__['pages/liaomeitaolulist.wxml']=$gwx('./pages/liaomeitaolulist.wxml');10622__wxAppCode__['pages/phonenumber.wxss']=setCssToHead([".",[1],"phonenumber { height: 100%; background: #fff; text-align: center; padding-top: ",[0,100],"; }\n.",[1],"phonenumber .",[1],"authorize-icon { width: ",[0,128],"; height: ",[0,128],"; display: block; margin: 0 auto; padding-bottom: ",[0,10],"; }\n.",[1],"phonenumber .",[1],"auth-item { padding: ",[0,5]," 0; }\n.",[1],"phonenumber .",[1],"btn-authorize { margin: ",[0,100]," ",[0,50],"; }\n",],undefined,{path:"./pages/phonenumber.wxss"}); 10623__wxAppCode__['pages/phonenumber.wxml']=$gwx('./pages/phonenumber.wxml');10624__wxAppCode__['pages/qingganbaike.wxss']=setCssToHead([".",[1],"qingganbaike { color: #000000; background: #efefef; }\n.",[1],"tubiao { background: #ffffff; padding-top: ",[0,50],"; padding-bottom: ",[0,50],"; width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"tubiao .",[1],"box { -webkit-box-sizing: border-box; box-sizing: border-box; text-align: center; }\n.",[1],"tubiao .",[1],"box .",[1],"image { width: ",[0,70],"; height: ",[0,60],"; }\n.",[1],"tubiao .",[1],"box .",[1],"title { font-size: ",[0,26],"; }\n.",[1],"kuai { background: #ffffff; margin-top: ",[0,4],"; padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; padding-left: ",[0,20],"; padding-right: ",[0,20],"; }\n.",[1],"kuai .",[1],"hang { height: ",[0,40],"; line-height: ",[0,40],"; margin-bottom: ",[0,30],"; }\n.",[1],"kuai .",[1],"hang .",[1],"image { width: ",[0,137],"; height: ",[0,40],"; }\n.",[1],"kuai .",[1],"neikuai .",[1],"bigbox { display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"kuai .",[1],"neikuai .",[1],"bigbox .",[1],"box { margin-bottom: ",[0,30],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; width: ",[0,340],"; text-align: left; }\n.",[1],"kuai .",[1],"neikuai .",[1],"bigbox .",[1],"box .",[1],"image-group { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; }\n.",[1],"kuai .",[1],"neikuai .",[1],"bigbox .",[1],"box .",[1],"image-group .",[1],"image { width: 100%; height: ",[0,200],"; }\n.",[1],"kuai .",[1],"neikuai .",[1],"bigbox .",[1],"box .",[1],"image-group .",[1],"image-tip { position: absolute; font-size: ",[0,36],"; color: #ffffff; }\n.",[1],"kuai .",[1],"neikuai .",[1],"bigbox .",[1],"box .",[1],"text { text-align: left; font-size: ",[0,26],"; }\n",],undefined,{path:"./pages/qingganbaike.wxss"}); 10625__wxAppCode__['pages/qingganbaike.wxml']=$gwx('./pages/qingganbaike.wxml');10626__wxAppCode__['pages/searchpage.wxss']=setCssToHead([".",[1],"searchpage { background: #ffffff; }\n.",[1],"search { width: 100%; top: ",[0,0],"; position: fixed; z-index: 99; background: #ffffff; }\n.",[1],"search .",[1],"serch_content { margin-left: 5%; margin-right: 5%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: ",[0,300],"; color: #333; background: #dfdfdf; padding: ",[0,6]," ",[0,20],"; height: ",[0,58],"; }\n.",[1],"search .",[1],"serch_content .",[1],"search_input { line-height: ",[0,58],"; font-size: ",[0,28],"; width: 100%; }\n.",[1],"search .",[1],"serch_content .",[1],"cha { width: ",[0,58],"; height: ",[0,58],"; }\n.",[1],"search .",[1],"serch_content .",[1],"cha .",[1],"chaclearn { margin-top: ",[0,10],"; }\n.",[1],"search .",[1],"tab { margin-top: ",[0,6],"; height: ",[0,66],"; }\n.",[1],"showdata { padding-top: ",[0,136],"; background: #dfdfdf; }\n.",[1],"showdata .",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n.",[1],"recommend { padding-top: ",[0,88],"; }\n.",[1],"recommend .",[1],"bigkuai { border-radius: ",[0,20],"; margin-left: ",[0,20],"; margin-right: ",[0,20],"; margin-bottom: ",[0,20],"; padding-top: ",[0,20],"; background: #dfdfdf; }\n.",[1],"recommend .",[1],"kuai { background: #dfdfdf; width: 100%; border-radius: ",[0,20],"; display: inline-block; }\n.",[1],"recommend .",[1],"kuai .",[1],"biaoti { font-weight: bolder; padding-left: ",[0,20],"; text-align: left; color: #999999; font-size: ",[0,30],"; }\n.",[1],"recommend .",[1],"kuai .",[1],"weui-btn { margin-left: 2%; margin-top: ",[0,6],"; margin-bottom: ",[0,0],"; padding: ",[0,0],"; text-align: center; width: 22.5%; height: ",[0,62],"; background: #ffffff; font-size: ",[0,28],"; }\n.",[1],"recommend .",[1],"hiskuai { width: 100%; border-radius: ",[0,20],"; display: inline; }\n.",[1],"recommend .",[1],"hiskuai .",[1],"biaoti { font-weight: bolder; padding-left: ",[0,20],"; text-align: left; color: #999999; font-size: ",[0,30],"; }\n.",[1],"recommend .",[1],"hiskuai .",[1],"weui-btn { margin-left: 2%; margin-top: ",[0,6],"; margin-bottom: ",[0,0],"; padding: ",[0,0],"; text-align: center; width: 22.5%; height: ",[0,62],"; background: #ffffff; font-size: ",[0,28],"; }\n.",[1],"recommend .",[1],"if_his { -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; margin-left: ",[0,20],"; text-align: left; font-size: ",[0,28],"; color: #999999; }\n.",[1],"recommend .",[1],"btn_box { width: ",[0,228],"; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin-top: ",[0,20],"; margin-bottom: ",[0,20],"; font-size: ",[0,28],"; color: #999999; }\n.",[1],"recommend .",[1],"minkuai { height: ",[0,1],"; }\n",],undefined,{path:"./pages/searchpage.wxss"}); 10627__wxAppCode__['pages/searchpage.wxml']=$gwx('./pages/searchpage.wxml');10628__wxAppCode__['pages/shoucang.wxss']=setCssToHead([".",[1],"shoucang { background: #ffffff; }\n.",[1],"shoucang .",[1],"bianji { width: ",[0,100],"; height: ",[0,80],"; z-index: 100; position: fixed; top: ",[0,0],"; left: ",[0,650],"; color: #333; }\n.",[1],"shoucang .",[1],"tab-h { position: fixed; top: ",[0,0],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; height: ",[0,80],"; width: 100%; font-size: 28px; background: #ffffff; }\n.",[1],"shoucang .",[1],"tab-h .",[1],"tab-item { color: #000; margin-left: ",[0,20],"; margin-right: ",[0,20],"; display: inline; }\n.",[1],"shoucang .",[1],"tab-h .",[1],"tab-itemactive { color: #ff7e00; margin-left: ",[0,15],"; margin-right: ",[0,15],"; display: inline; padding-bottom: ",[0,6],"; border-bottom: ",[0,6]," solid #ff7e00; }\n.",[1],"shoucang .",[1],"jiange { margin-top: ",[0,80],"; border-top: 2px solid #efefef; }\n.",[1],"shoucang .",[1],"wenzhang { background: #ffffff; width: 92%; margin-left: 4%; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; border-bottom: 1px solid #efefef; }\n.",[1],"shoucang .",[1],"wenzhang .",[1],"kuai { padding-left: ",[0,16],"; padding-right: ",[0,16],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"shoucang .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang { width: 80%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"shoucang .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"title { color: #333; font-size: ",[0,28],"; width: ",[0,420],"; }\n.",[1],"shoucang .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"laiyuan { text-align: center; width: ",[0,100],"; font-size: ",[0,20],"; color: #fff; background: #ff7e00; border-radius: ",[0,20],"; }\n.",[1],"shoucang .",[1],"wenzhang .",[1],"kuai .",[1],"image { margin-left: ",[0,16],"; height: ",[0,138],"; width: ",[0,250],"; }\n.",[1],"shoucang .",[1],"wenzhang .",[1],"xuanze0 { position: relative; top: ",[0,-100],"; left: ",[0,300],"; width: ",[0,80],"; height: ",[0,80],"; border-radius: ",[0,50],"; border: ",[0,5]," solid #ff7e00; }\n.",[1],"shoucang .",[1],"wenzhang .",[1],"xuanze1 { position: relative; top: ",[0,-100],"; left: ",[0,300],"; background: #ff7e00; width: ",[0,88],"; height: ",[0,88],"; border-radius: ",[0,50],"; }\n.",[1],"shoucang .",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n.",[1],"shoucang .",[1],"fixed-footer { z-index: 99; position: fixed; left: 0; bottom: 0; width: 100%; }\n.",[1],"shoucang .",[1],"btngroup-prev-next { position: relative; width: 100%; height: ",[0,90],"; line-height: ",[0,90],"; text-align: center; color: #535355; font-size: ",[0,34],"; overflow: hidden; -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: 0; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; }\n.",[1],"shoucang .",[1],"btn-prev { position: relative; width: 100%; height: ",[0,90],"; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; background-color: #fff; border-right: 1px solid #eaeaea; overflow: hidden; }\n.",[1],"shoucang .",[1],"btn-next { position: relative; width: 100%; height: ",[0,90],"; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; background-color: #fff; overflow: hidden; }\n",],undefined,{path:"./pages/shoucang.wxss"}); 10629__wxAppCode__['pages/shoucang.wxml']=$gwx('./pages/shoucang.wxml');10630__wxAppCode__['pages/shouquan.wxss']=setCssToHead([".",[1],"shouquan .",[1],"denglu { width: 100%; text-align: center; position: fixed; bottom: 0; padding-bottom: ",[0,500],"; }\n.",[1],"shouquan .",[1],"authorize-icon { position: fixed; bottom: 0; left: ",[0,311],"; width: ",[0,128],"; height: ",[0,128],"; display: block; margin: 0 auto; padding-bottom: ",[0,300],"; }\n",],undefined,{path:"./pages/shouquan.wxss"}); 10631__wxAppCode__['pages/shouquan.wxml']=$gwx('./pages/shouquan.wxml');10632__wxAppCode__['pages/sijiao.wxss']=setCssToHead([".",[1],"sijiao { background: #FFFFFF; padding-bottom: ",[0,80],"; }\n.",[1],"sijiao .",[1],"image { width: 100%; }\n.",[1],"sijiao .",[1],"kuang { position: fixed; bottom: 0; width: 100%; height: ",[0,80],"; background: #ffffff; }\n.",[1],"sijiao .",[1],"kuang .",[1],"text { margin-left: 20%; width: 60%; border-radius: ",[0,20],"; color: #ffffff; text-align: center; background: #09BB07; line-height: ",[0,80],"; }\n",],undefined,{path:"./pages/sijiao.wxss"}); 10633__wxAppCode__['pages/sijiao.wxml']=$gwx('./pages/sijiao.wxml');10634__wxAppCode__['pages/sijiaolist.wxss']=setCssToHead([".",[1],"sijiaolist { background: #ffffff; }\n.",[1],"sijiaolist .",[1],"wenzhang { background: #ffffff; width: 92%; margin-left: 4%; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; border-bottom: 1px solid #efefef; }\n.",[1],"sijiaolist .",[1],"wenzhang .",[1],"kuai { padding-left: ",[0,16],"; padding-right: ",[0,16],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"sijiaolist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang { width: 80%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"sijiaolist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"title { color: #333; font-size: ",[0,28],"; width: ",[0,420],"; }\n.",[1],"sijiaolist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"laiyuan { font-size: ",[0,20],"; }\n.",[1],"sijiaolist .",[1],"wenzhang .",[1],"kuai .",[1],"image { margin-left: ",[0,16],"; height: ",[0,138],"; width: ",[0,250],"; }\n.",[1],"sijiaolist .",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n",],undefined,{path:"./pages/sijiaolist.wxss"}); 10635__wxAppCode__['pages/sijiaolist.wxml']=$gwx('./pages/sijiaolist.wxml');10636__wxAppCode__['pages/tequan.wxss']=setCssToHead([".",[1],"tequan { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; margin-top: ",[0,0],"; background: #ffffff; }\n.",[1],"kaitongtext { margin-top: ",[0,50],"; margin-left: ",[0,200],"; margin-right: ",[0,200],"; color: #000000; }\n.",[1],"vip { height: ",[0,60],"; background: #ff7e00; color: #ffffff; border-radius: ",[0,20],"; margin-top: ",[0,100],"; padding-top: ",[0,16],"; width: 60%; margin-left: 20%; }\n.",[1],"tequankuang { padding-top: ",[0,100],"; color: #000000; }\n.",[1],"tequanming { padding-top: ",[0,50],"; color: #ff7e00; }\n.",[1],"tequanneirong { margin-top: ",[0,20],"; margin-left: ",[0,138],"; text-align: left; }\n.",[1],"tequanneirong .",[1],"tequantext { color: #000000; }\n",],undefined,{path:"./pages/tequan.wxss"}); 10637__wxAppCode__['pages/tequan.wxml']=$gwx('./pages/tequan.wxml');10638__wxAppCode__['pages/tuweiqinghua.wxss']=setCssToHead([".",[1],"tuweiqinghua { background-color: #ebeaeb; width: 100%; padding: ",[0,30]," ",[0,20]," ",[0,230],"; -webkit-box-sizing: border-box; box-sizing: border-box; }\n.",[1],"words-item { position: relative; width: 100%; height: auto; min-height: ",[0,80],"; -webkit-box-sizing: border-box; box-sizing: border-box; margin-bottom: ",[0,30],"; overflow: hidden; }\n.",[1],"words-avatar { position: absolute; top: 0; width: ",[0,80],"; height: ",[0,80],"; background-color: #fff; }\n.",[1],"words-avatar wx-image { width: ",[0,80],"; height: ",[0,80],"; }\n.",[1],"words-content { position: relative; width: auto; height: auto; padding: ",[0,20],"; font-size: ",[0,30],"; display: inline-block; border-radius: ",[0,8],"; color: #000; max-width: 70%; }\n.",[1],"words-content::after { content: \x22\x22; position: absolute; top: ",[0,28],"; width: 0; height: 0; border-bottom: ",[0,12]," solid transparent; border-top: ",[0,12]," solid transparent; }\n.",[1],"words-img { width: ",[0,200],"; display: block; max-height: ",[0,200],"; -webkit-box-sizing: border-box; box-sizing: border-box; }\n.",[1],"words-item.",[1],"person1 { padding-right: ",[0,100],"; }\n.",[1],"words-item.",[1],"person2 { padding-left: ",[0,100],"; }\n.",[1],"words-item.",[1],"person1 .",[1],"words-avatar { right: 0; }\n.",[1],"words-item.",[1],"person2 .",[1],"words-avatar { left: 0; }\n.",[1],"words-item.",[1],"person1 .",[1],"words-content { background-color: #a3e36b; float: right; }\n.",[1],"words-item.",[1],"person2 .",[1],"words-content { background-color: #fff; }\n.",[1],"words-item.",[1],"person1 .",[1],"words-content:active { background-color: #99d565; }\n.",[1],"words-item.",[1],"person2 .",[1],"words-content:active { background-color: #f7f7f7; }\n.",[1],"words-item.",[1],"person1 .",[1],"words-content::after { right: ",[0,-20],"; border-right: ",[0,12]," solid transparent; border-left: ",[0,12]," solid #a3e36b; }\n.",[1],"words-item.",[1],"person2 .",[1],"words-content::after { left: ",[0,-20],"; border-right: ",[0,12]," solid #fff; border-left: ",[0,12]," solid transparent; }\n.",[1],"words-item.",[1],"person1 .",[1],"words-content:active::after { border-left-color: #99d565; }\n.",[1],"words-item.",[1],"person2 .",[1],"words-content:active::after { border-right-color: #f7f7f7; }\n.",[1],"words-item.",[1],"person1 .",[1],"words-img { float: right; }\n.",[1],"fixed-footer { z-index: 99; position: fixed; left: 0; bottom: 0; width: 100%; }\n.",[1],"btngroup-prev-next { position: relative; width: 100%; height: ",[0,90],"; line-height: ",[0,90],"; text-align: center; color: #535355; font-size: ",[0,34],"; overflow: hidden; -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: 0; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; }\n.",[1],"btn-prev { position: relative; width: 100%; height: ",[0,90],"; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; background-color: #fff; border-right: 1px solid #eaeaea; overflow: hidden; }\n.",[1],"btn-next { position: relative; width: 100%; height: ",[0,90],"; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; background-color: #fff; overflow: hidden; }\n.",[1],"btn-prev.",[1],"disabled, .",[1],"btn-next.",[1],"disabled { color: #b8b8bd; }\n",],undefined,{path:"./pages/tuweiqinghua.wxss"}); 10639__wxAppCode__['pages/tuweiqinghua.wxml']=$gwx('./pages/tuweiqinghua.wxml');10640__wxAppCode__['pages/tuweiqinghualist.wxss']=setCssToHead([".",[1],"tuweiqinghualist { margin: ",[0,0],"; padding-bottom: ",[0,20],"; background: #dfdfdf; }\n.",[1],"tuweiqinghualist .",[1],"tou { margin: ",[0,0],"; height: ",[0,1],"; width: 100%; }\n.",[1],"tuweiqinghualist .",[1],"tuweiqinghua { border-radius: ",[0,20],"; margin-top: ",[0,20],"; margin-left: ",[0,20],"; margin-right: ",[0,20],"; padding-left: ",[0,20],"; padding-right: ",[0,20],"; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; background: #ffffff; color: #000; }\n.",[1],"tuweiqinghualist .",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n",],undefined,{path:"./pages/tuweiqinghualist.wxss"}); 10641__wxAppCode__['pages/tuweiqinghualist.wxml']=$gwx('./pages/tuweiqinghualist.wxml');10642__wxAppCode__['pages/viewganhuo.wxss']=setCssToHead([".",[1],"viewganhuo { background: #FFFFFF; }\n.",[1],"viewganhuo .",[1],"title { padding-left: ",[0,20],"; padding-right: ",[0,20],"; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; font-weight: bolder; font-size: ",[0,38],"; color: #000000; }\n.",[1],"viewganhuo .",[1],"video { width: 100%; }\n",],undefined,{path:"./pages/viewganhuo.wxss"}); 10643__wxAppCode__['pages/viewganhuo.wxml']=$gwx('./pages/viewganhuo.wxml');10644__wxAppCode__['pages/viewhtml.wxss']=setCssToHead([".",[1],"webview { overflow: inherit; width: ",[0,750],"; }\n",],undefined,{path:"./pages/viewhtml.wxss"}); 10645__wxAppCode__['pages/viewhtml.wxml']=$gwx('./pages/viewhtml.wxml');10646__wxAppCode__['pages/viewimage.wxss']=setCssToHead([".",[1],"viewimage { background: #FFFFFF; }\n.",[1],"viewimage .",[1],"title { padding-left: ",[0,20],"; padding-right: ",[0,20],"; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; font-weight: bolder; font-size: ",[0,38],"; color: #000000; }\n.",[1],"viewimage .",[1],"image { width: 100%; }\n",],undefined,{path:"./pages/viewimage.wxss"}); 10647__wxAppCode__['pages/viewimage.wxml']=$gwx('./pages/viewimage.wxml');10648__wxAppCode__['pages/vip.wxss']=setCssToHead([".",[1],"vip { text-align: center; margin-top: ",[0,0],"; background: #ffffff; }\n.",[1],"vip .",[1],"zhifu { background: #09BB07; color: #ffffff; border-radius: ",[0,20],"; margin-top: ",[0,28],"; width: 60%; }\n.",[1],"vip .",[1],"tequan { margin-top: ",[0,20],"; color: #000000; }\n.",[1],"vip .",[1],"tequanneirong { font-size: ",[0,28],"; margin-top: ",[0,20],"; margin-left: ",[0,20],"; text-align: left; }\n.",[1],"vip .",[1],"tequanneirong .",[1],"tequantext { color: #000000; }\n.",[1],"vip .",[1],"viphang { padding-top: ",[0,20],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"vip .",[1],"vipkuang { padding: ",[0,0],"; width: 46%; border-radius: ",[0,20],"; border: ",[0,1]," solid; }\n.",[1],"vip .",[1],"vipkuangactive { background: #dcf1ca; color: #09BB07; padding: ",[0,0],"; width: 46%; border-radius: ",[0,20],"; border: ",[0,1]," solid; }\n.",[1],"vip .",[1],"viptext { font-size: ",[0,28],"; text-align: center; padding: ",[0,0],"; }\n.",[1],"vip .",[1],"viptextactive { background: #dcf1ca; color: #09BB07; font-size: ",[0,28],"; text-align: center; padding: ",[0,0],"; }\n",],undefined,{path:"./pages/vip.wxss"}); 10649__wxAppCode__['pages/vip.wxml']=$gwx('./pages/vip.wxml');10650__wxAppCode__['pages/weixin.wxss']=setCssToHead([".",[1],"weixin { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; margin-top: ",[0,0],"; background: #ffffff; }\n.",[1],"kaitongtext { margin-top: ",[0,50],"; margin-left: ",[0,200],"; margin-right: ",[0,200],"; color: #000000; }\n.",[1],"image_box { width: ",[0,200],"; height: ",[0,336],"; }\n.",[1],"image { width: 100%; height: ",[0,214],"; margin-top: ",[0,50],"; }\n.",[1],"vip { height: ",[0,60],"; background: #09bb07; color: #ffffff; border-radius: ",[0,20],"; margin-top: ",[0,50],"; padding-top: ",[0,16],"; width: 60%; margin-left: 20%; }\n.",[1],"tequan { padding-top: ",[0,50],"; color: #000000; }\n.",[1],"tequan1 { padding-top: ",[0,50],"; padding-left: ",[0,50],"; padding-right: ",[0,50],"; color: #000000; }\n",],undefined,{path:"./pages/weixin.wxss"}); 10651__wxAppCode__['pages/weixin.wxml']=$gwx('./pages/weixin.wxml');10652__wxAppCode__['pages/wenda.wxss']=setCssToHead([".",[1],"wenda { background: #ffffff; padding-left: ",[0,30],"; padding-right: ",[0,30],"; color: #000; word-break: break-all; }\n.",[1],"wenda .",[1],"title { color: #000; font-size: ",[0,40],"; margin-bottom: ",[0,30],"; }\n.",[1],"wenda .",[1],"dikuang { padding-bottom: ",[0,100],"; width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"wenda .",[1],"dikuang .",[1],"shoucangkuang { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; text-align: center; }\n.",[1],"wenda .",[1],"dikuang .",[1],"shoucangkuang .",[1],"shoucang { width: ",[0,100],"; height: ",[0,100],"; margin-top: ",[0,100],"; }\n",],undefined,{path:"./pages/wenda.wxss"}); 10653__wxAppCode__['pages/wenda.wxml']=$gwx('./pages/wenda.wxml');10654__wxAppCode__['pages/wendalist.wxss']=setCssToHead([".",[1],"wendalist { background: #ffffff; }\n.",[1],"wendalist .",[1],"tab-h { position: fixed; top: ",[0,0],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: ",[0,80],"; min-width: 100%; font-size: ",[0,30],"; white-space: nowrap; background: #ffffff; }\n.",[1],"wendalist .",[1],"tab-h .",[1],"tab-item { color: #000; margin-left: ",[0,20],"; margin-right: ",[0,20],"; display: inline; }\n.",[1],"wendalist .",[1],"tab-h .",[1],"tab-itemactive { color: #ff7e00; margin-left: ",[0,15],"; margin-right: ",[0,15],"; display: inline; padding-bottom: ",[0,6],"; border-bottom: ",[0,6]," solid #ff7e00; }\n.",[1],"wendalist .",[1],"jiange { margin-top: ",[0,80],"; border-top: 2px solid #efefef; }\n.",[1],"wendalist .",[1],"wenzhang { background: #ffffff; width: 92%; margin-left: 4%; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; border-bottom: 1px solid #efefef; }\n.",[1],"wendalist .",[1],"wenzhang .",[1],"kuai { padding-left: ",[0,16],"; padding-right: ",[0,16],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"wendalist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang { width: 80%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"wendalist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"title { color: #333; font-size: ",[0,28],"; width: ",[0,420],"; }\n.",[1],"wendalist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"laiyuan { font-size: ",[0,20],"; }\n.",[1],"wendalist .",[1],"wenzhang .",[1],"kuai .",[1],"image { margin-left: ",[0,16],"; height: ",[0,138],"; width: ",[0,250],"; }\n.",[1],"wendalist .",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n",],undefined,{path:"./pages/wendalist.wxss"}); 10655__wxAppCode__['pages/wendalist.wxml']=$gwx('./pages/wendalist.wxml');10656__wxAppCode__['pages/xingxiangjianshe.wxss']=setCssToHead([".",[1],"xingxiangjianshe { background: #FFFFFF; }\n.",[1],"xingxiangjianshe .",[1],"title { padding-left: ",[0,20],"; padding-right: ",[0,20],"; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; font-weight: bolder; font-size: ",[0,38],"; color: #000000; }\n.",[1],"xingxiangjianshe .",[1],"image { width: 100%; }\n.",[1],"xingxiangjianshe .",[1],"dikuang { padding-top: ",[0,100],"; padding-bottom: ",[0,100],"; width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"xingxiangjianshe .",[1],"dikuang .",[1],"shoucangkuang { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; text-align: center; }\n.",[1],"xingxiangjianshe .",[1],"dikuang .",[1],"shoucangkuang .",[1],"shoucang { width: ",[0,100],"; height: ",[0,100],"; margin-top: ",[0,100],"; }\n",],undefined,{path:"./pages/xingxiangjianshe.wxss"}); 10657__wxAppCode__['pages/xingxiangjianshe.wxml']=$gwx('./pages/xingxiangjianshe.wxml');10658__wxAppCode__['pages/xingxiangjianshelist.wxss']=setCssToHead([".",[1],"xingxiangjianshelist { background: #ffffff; }\n.",[1],"xingxiangjianshelist .",[1],"wenzhang { background: #ffffff; width: 92%; margin-left: 4%; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; border-bottom: 1px solid #efefef; }\n.",[1],"xingxiangjianshelist .",[1],"wenzhang .",[1],"kuai { padding-left: ",[0,16],"; padding-right: ",[0,16],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"xingxiangjianshelist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang { width: 80%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"xingxiangjianshelist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"title { color: #333; font-size: ",[0,28],"; width: ",[0,420],"; }\n.",[1],"xingxiangjianshelist .",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"laiyuan { font-size: ",[0,20],"; }\n.",[1],"xingxiangjianshelist .",[1],"wenzhang .",[1],"kuai .",[1],"image { margin-left: ",[0,16],"; height: ",[0,138],"; width: ",[0,250],"; }\n.",[1],"xingxiangjianshelist .",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n",],undefined,{path:"./pages/xingxiangjianshelist.wxss"}); 10659__wxAppCode__['pages/xingxiangjianshelist.wxml']=$gwx('./pages/xingxiangjianshelist.wxml');10660__wxAppCode__['pages/xinliceshi.wxss']=setCssToHead([".",[1],"xinliceshi { color: #000; }\n.",[1],"shouxian { top: 0; text-align: center; background: #fff; padding-bottom: ",[0,30],"; }\n.",[1],"kaishiceshi { border-radius: ",[0,50],"; background: #ff7e00; line-height: ",[0,100],"; color: #ffffff; width: 90%; text-align: center; margin-top: ",[0,30],"; margin-left: 5%; height: ",[0,100],"; }\n.",[1],"timu { width: 90%; border-radius: ",[0,30],"; background: #fff; margin-left: 5%; }\n.",[1],"title { width: 100%; padding-left: 5%; padding-right: 5%; background: #fff; text-align: center; padding: ",[0,30],"; margin-bottom: ",[0,30],"; font-size: ",[0,40],"; color: #000; }\n.",[1],"timutitle { padding: ",[0,30],"; font-size: ",[0,30],"; color: #000; }\n.",[1],"zixiang { padding-left: ",[0,30],"; padding-right: ",[0,30],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; min-height: ",[0,100],"; line-height: ",[0,100],"; }\n.",[1],"zixiang .",[1],"xuanxiang { width: 96%; color: #000; }\n.",[1],"zixiang .",[1],"xuanze0 { width: ",[0,25],"; height: ",[0,25],"; border-radius: ",[0,50],"; border: ",[0,5]," solid #ff7e00; }\n.",[1],"zixiang .",[1],"xuanze1 { background: #ff7e00; width: ",[0,30],"; height: ",[0,30],"; border-radius: ",[0,50],"; }\n.",[1],"wanchenglv { margin-top: ",[0,30],"; color: #000; text-align: center; }\n.",[1],"image { margin-left: 2%; width: 96%; height: auto; }\n.",[1],"bigtext { margin-top: ",[0,30],"; font-size: ",[0,35],"; color: #000; text-align: left; margin-left: 5%; width: 90%; }\n.",[1],"text { margin-top: ",[0,30],"; color: #000; text-align: left; margin-left: 5%; width: 90%; }\n.",[1],"tijiaokuang { width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"shangyiti { border-radius: ",[0,50],"; margin-top: ",[0,30],"; margin-bottom: ",[0,30],"; width: ",[0,200],"; height: ",[0,100],"; line-height: ",[0,100],"; color: #ffffff; background: #ff7e00; text-align: center; }\n.",[1],"tijiao { border-radius: ",[0,50],"; margin-top: ",[0,30],"; margin-bottom: ",[0,30],"; width: ",[0,200],"; height: ",[0,100],"; line-height: ",[0,100],"; color: #ffffff; background: #ff7e00; text-align: center; }\n.",[1],"dikuang { padding-top: ",[0,100],"; padding-bottom: ",[0,100],"; width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; }\n.",[1],"dikuang .",[1],"shoucangkuang { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; text-align: center; }\n.",[1],"dikuang .",[1],"shoucangkuang .",[1],"shoucang { width: ",[0,100],"; height: ",[0,100],"; margin-top: ",[0,100],"; }\n",],undefined,{path:"./pages/xinliceshi.wxss"}); 10661__wxAppCode__['pages/xinliceshi.wxml']=$gwx('./pages/xinliceshi.wxml');10662__wxAppCode__['pages/xinliceshilist.wxss']=setCssToHead([".",[1],"xinliceshilist { background: #ffffff; }\n.",[1],"tab-h { z-index: 99; position: fixed; top: ",[0,0],"; background: #ffffff; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; height: ",[0,80],"; width: 100%; font-size: ",[0,28],"; }\n.",[1],"tab-h .",[1],"tab-item { color: #000; margin-left: ",[0,20],"; margin-right: ",[0,20],"; display: inline; }\n.",[1],"tab-h .",[1],"tab-itemactive { color: #ff7e00; margin-left: ",[0,20],"; margin-right: ",[0,20],"; display: inline; padding-bottom: ",[0,6],"; border-bottom: ",[0,6]," solid #ff7e00; }\n.",[1],"jiange { margin-top: ",[0,80],"; border-top: 2px solid #efefef; }\n.",[1],"wenzhang { background: #ffffff; width: 92%; margin-left: 4%; padding-top: ",[0,20],"; padding-bottom: ",[0,20],"; border-bottom: 1px solid #efefef; }\n.",[1],"wenzhang .",[1],"kuai { padding-left: ",[0,16],"; padding-right: ",[0,16],"; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"wenzhang .",[1],"kuai .",[1],"textkuang { width: 80%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }\n.",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"title { color: #333; font-size: ",[0,28],"; width: ",[0,420],"; }\n.",[1],"wenzhang .",[1],"kuai .",[1],"textkuang .",[1],"laiyuan { font-size: ",[0,20],"; }\n.",[1],"wenzhang .",[1],"kuai .",[1],"image { margin-left: ",[0,16],"; height: ",[0,138],"; width: ",[0,250],"; }\n.",[1],"textend { padding-top: ",[0,30],"; padding-bottom: ",[0,30],"; text-align: center; }\n",],undefined,{path:"./pages/xinliceshilist.wxss"}); 10663__wxAppCode__['pages/xinliceshilist.wxml']=$gwx('./pages/xinliceshilist.wxml');10664;var __pageFrameEndTime__ = Date.now();10665(function() {10666 plus.webview.getLaunchWebview().evalJS('__uniAppViewReadyCallback__("' + plus.webview.currentWebview()10667 .id + '")')...
skin.js
Source:skin.js
1// Garden Gnome Software - Skin2// Pano2VR 5.0.3/150883// Filename: simplex_v5_autohide.ggsk4// Generated å¨äº 12æ 23 20:23:23 20165function pano2vrSkin(player,base) {6 var ggSkinVars = [];7 var me=this;8 var flag=false;9 var nodeMarker=[];10 var activeNodeMarker=[];11 this.player=player;12 this.player.skinObj=this;13 this.divSkin=player.divSkin;14 this.ggUserdata=me.player.userdata;15 this.lastSize={ w: -1,h: -1 };16 var basePath="";17 // auto detect base path18 if (base=='?') {19 var scripts = document.getElementsByTagName('script');20 for(var i=0;i<scripts.length;i++) {21 var src=scripts[i].src;22 if (src.indexOf('skin.js')>=0) {23 var p=src.lastIndexOf('/');24 if (p>=0) {25 basePath=src.substr(0,p+1);26 }27 }28 }29 } else30 if (base) {31 basePath=base;32 }33 this.elementMouseDown=[];34 this.elementMouseOver=[];35 var cssPrefix='';36 var domTransition='transition';37 var domTransform='transform';38 var prefixes='Webkit,Moz,O,ms,Ms'.split(',');39 var i;40 if (typeof document.body.style['transform'] == 'undefined') {41 for(var i=0;i<prefixes.length;i++) {42 if (typeof document.body.style[prefixes[i] + 'Transform'] !== 'undefined') {43 cssPrefix='-' + prefixes[i].toLowerCase() + '-';44 domTransition=prefixes[i] + 'Transition';45 domTransform=prefixes[i] + 'Transform';46 }47 }48 }49 50 this.player.setMargins(0,0,0,0);51 52 this.updateSize=function(startElement) {53 var stack=[];54 stack.push(startElement);55 while(stack.length>0) {56 var e=stack.pop();57 if (e.ggUpdatePosition) {58 e.ggUpdatePosition();59 }60 if (e.hasChildNodes()) {61 for(var i=0;i<e.childNodes.length;i++) {62 stack.push(e.childNodes[i]);63 }64 }65 }66 }67 68 parameterToTransform=function(p) {69 var hs='translate(' + p.rx + 'px,' + p.ry + 'px) rotate(' + p.a + 'deg) scale(' + p.sx + ',' + p.sy + ')';70 return hs;71 }72 73 this.findElements=function(id,regex) {74 var r=[];75 var stack=[];76 var pat=new RegExp(id,'');77 stack.push(me.divSkin);78 while(stack.length>0) {79 var e=stack.pop();80 if (regex) {81 if (pat.test(e.ggId)) r.push(e);82 } else {83 if (e.ggId==id) r.push(e);84 }85 if (e.hasChildNodes()) {86 for(var i=0;i<e.childNodes.length;i++) {87 stack.push(e.childNodes[i]);88 }89 }90 }91 return r;92 }93 94 this.addSkin=function() {95 var hs='';96 this.ggCurrentTime=new Date().getTime();97 this._controller=document.createElement('div');98 this._controller.ggId="controller";99 this._controller.ggLeft=-143;100 this._controller.ggTop=-65;101 this._controller.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };102 this._controller.ggVisible=true;103 this._controller.className='ggskin ggskin_container ';104 this._controller.ggType='container';105 hs ='';106 hs+='height : 50px;';107 hs+='left : -143px;';108 hs+='position : absolute;';109 hs+='top : -65px;';110 hs+='visibility : inherit;';111 hs+='width : 286px;';112 this._controller.setAttribute('style',hs);113 this._controller.style[domTransform + 'Origin']='50% 50%';114 me._controller.ggIsActive=function() {115 return false;116 }117 me._controller.ggElementNodeId=function() {118 return me.player.getCurrentNode();119 }120 this._controller.onmouseover=function () {121 me.elementMouseOver['controller']=true;122 }123 this._controller.onmouseout=function () {124 me.elementMouseOver['controller']=false;125 }126 this._controller.ontouchend=function () {127 me.elementMouseOver['controller']=false;128 }129 me._controller.ggCurrentLogicStatePosition = -1;130 this._controller.ggUpdateConditionTimer=function () {131 var newLogicStatePosition;132 if (133 (me.player.getViewerSize().width <= 1024) || 134 (me.player.getIsMobile() == true)135 )136 {137 newLogicStatePosition = 0;138 }139 else {140 newLogicStatePosition = -1;141 }142 if (me._controller.ggCurrentLogicStatePosition != newLogicStatePosition) {143 me._controller.ggCurrentLogicStatePosition = newLogicStatePosition;144 me._controller.style[domTransition]='left none, top none';145 if (me._controller.ggCurrentLogicStatePosition == 0) {146 me._controller.ggLeft=-166;147 me._controller.ggTop=-65;148 me._controller.ggUpdatePosition();149 }150 else {151 me._controller.ggLeft=-143;152 me._controller.ggTop=-65;153 me._controller.ggUpdatePosition();154 }155 }156 }157 this._controller.ggUpdatePosition=function () {158 this.style[domTransition]='none';159 if (this.parentNode) {160 var w=this.parentNode.offsetWidth;161 this.style.left=(this.ggLeft - 0 + w/2) + 'px';162 var h=this.parentNode.offsetHeight;163 this.style.top=(this.ggTop - 0 + h) + 'px';164 }165 }166 this._up=document.createElement('div');167 this._up__img=document.createElement('img');168 this._up__img.className='ggskin ggskin_svg';169 this._up__img.setAttribute('src',basePath + 'images/up.svg');170 this._up__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');171 this._up__img['ondragstart']=function() { return false; };172 this._up.appendChild(this._up__img);173 this._up__imgo=document.createElement('img');174 this._up__imgo.className='ggskin ggskin_svg';175 this._up__imgo.setAttribute('src',basePath + 'images/up__o.svg');176 this._up__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');177 this._up__imgo['ondragstart']=function() { return false; };178 this._up.appendChild(this._up__imgo);179 this._up.ggId="up";180 this._up.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };181 this._up.ggVisible=true;182 this._up.className='ggskin ggskin_svg ';183 this._up.ggType='svg';184 hs ='';185 hs+='cursor : pointer;';186 hs+='height : 32px;';187 hs+='left : 25px;';188 hs+='position : absolute;';189 hs+='top : -5px;';190 hs+='visibility : inherit;';191 hs+='width : 32px;';192 this._up.setAttribute('style',hs);193 this._up.style[domTransform + 'Origin']='50% 50%';194 me._up.ggIsActive=function() {195 if ((this.parentNode) && (this.parentNode.ggIsActive)) {196 return this.parentNode.ggIsActive();197 }198 return false;199 }200 me._up.ggElementNodeId=function() {201 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {202 return this.parentNode.ggElementNodeId();203 }204 return me.player.getCurrentNode();205 }206 this._up.onmouseover=function () {207 me._up__img.style.visibility='hidden';208 me._up__imgo.style.visibility='inherit';209 }210 this._up.onmouseout=function () {211 me._up__img.style.visibility='inherit';212 me._up__imgo.style.visibility='hidden';213 me.elementMouseDown['up']=false;214 }215 this._up.onmousedown=function () {216 me.elementMouseDown['up']=true;217 }218 this._up.onmouseup=function () {219 me.elementMouseDown['up']=false;220 }221 this._up.ontouchend=function () {222 me.elementMouseDown['up']=false;223 }224 me._up.ggCurrentLogicStateVisible = -1;225 this._up.ggUpdateConditionTimer=function () {226 var newLogicStateVisible;227 if (228 (me.player.getViewerSize().width <= 1024) || 229 (me.player.getIsMobile() == true)230 )231 {232 newLogicStateVisible = 0;233 }234 else {235 newLogicStateVisible = -1;236 }237 if (me._up.ggCurrentLogicStateVisible != newLogicStateVisible) {238 me._up.ggCurrentLogicStateVisible = newLogicStateVisible;239 me._up.style[domTransition]='';240 if (me._up.ggCurrentLogicStateVisible == 0) {241 me._up.style.visibility="hidden";242 me._up.ggVisible=false;243 }244 else {245 me._up.style.visibility=(Number(me._up.style.opacity)>0||!me._up.style.opacity)?'inherit':'hidden';246 me._up.ggVisible=true;247 }248 }249 }250 this._up.ggUpdatePosition=function () {251 }252 this._controller.appendChild(this._up);253 this._down=document.createElement('div');254 this._down__img=document.createElement('img');255 this._down__img.className='ggskin ggskin_svg';256 this._down__img.setAttribute('src',basePath + 'images/down.svg');257 this._down__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');258 this._down__img['ondragstart']=function() { return false; };259 this._down.appendChild(this._down__img);260 this._down__imgo=document.createElement('img');261 this._down__imgo.className='ggskin ggskin_svg';262 this._down__imgo.setAttribute('src',basePath + 'images/down__o.svg');263 this._down__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');264 this._down__imgo['ondragstart']=function() { return false; };265 this._down.appendChild(this._down__imgo);266 this._down.ggId="down";267 this._down.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };268 this._down.ggVisible=true;269 this._down.className='ggskin ggskin_svg ';270 this._down.ggType='svg';271 hs ='';272 hs+='cursor : pointer;';273 hs+='height : 32px;';274 hs+='left : 25px;';275 hs+='position : absolute;';276 hs+='top : 25px;';277 hs+='visibility : inherit;';278 hs+='width : 32px;';279 this._down.setAttribute('style',hs);280 this._down.style[domTransform + 'Origin']='50% 50%';281 me._down.ggIsActive=function() {282 if ((this.parentNode) && (this.parentNode.ggIsActive)) {283 return this.parentNode.ggIsActive();284 }285 return false;286 }287 me._down.ggElementNodeId=function() {288 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {289 return this.parentNode.ggElementNodeId();290 }291 return me.player.getCurrentNode();292 }293 this._down.onmouseover=function () {294 me._down__img.style.visibility='hidden';295 me._down__imgo.style.visibility='inherit';296 }297 this._down.onmouseout=function () {298 me._down__img.style.visibility='inherit';299 me._down__imgo.style.visibility='hidden';300 me.elementMouseDown['down']=false;301 }302 this._down.onmousedown=function () {303 me.elementMouseDown['down']=true;304 }305 this._down.onmouseup=function () {306 me.elementMouseDown['down']=false;307 }308 this._down.ontouchend=function () {309 me.elementMouseDown['down']=false;310 }311 me._down.ggCurrentLogicStateVisible = -1;312 this._down.ggUpdateConditionTimer=function () {313 var newLogicStateVisible;314 if (315 (me.player.getViewerSize().width <= 1024) || 316 (me.player.getIsMobile() == true)317 )318 {319 newLogicStateVisible = 0;320 }321 else {322 newLogicStateVisible = -1;323 }324 if (me._down.ggCurrentLogicStateVisible != newLogicStateVisible) {325 me._down.ggCurrentLogicStateVisible = newLogicStateVisible;326 me._down.style[domTransition]='';327 if (me._down.ggCurrentLogicStateVisible == 0) {328 me._down.style.visibility="hidden";329 me._down.ggVisible=false;330 }331 else {332 me._down.style.visibility=(Number(me._down.style.opacity)>0||!me._down.style.opacity)?'inherit':'hidden';333 me._down.ggVisible=true;334 }335 }336 }337 this._down.ggUpdatePosition=function () {338 }339 this._controller.appendChild(this._down);340 this._left=document.createElement('div');341 this._left__img=document.createElement('img');342 this._left__img.className='ggskin ggskin_svg';343 this._left__img.setAttribute('src',basePath + 'images/left.svg');344 this._left__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');345 this._left__img['ondragstart']=function() { return false; };346 this._left.appendChild(this._left__img);347 this._left__imgo=document.createElement('img');348 this._left__imgo.className='ggskin ggskin_svg';349 this._left__imgo.setAttribute('src',basePath + 'images/left__o.svg');350 this._left__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');351 this._left__imgo['ondragstart']=function() { return false; };352 this._left.appendChild(this._left__imgo);353 this._left.ggId="left";354 this._left.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };355 this._left.ggVisible=true;356 this._left.className='ggskin ggskin_svg ';357 this._left.ggType='svg';358 hs ='';359 hs+='cursor : pointer;';360 hs+='height : 32px;';361 hs+='left : 0px;';362 hs+='position : absolute;';363 hs+='top : 10px;';364 hs+='visibility : inherit;';365 hs+='width : 32px;';366 this._left.setAttribute('style',hs);367 this._left.style[domTransform + 'Origin']='50% 50%';368 me._left.ggIsActive=function() {369 if ((this.parentNode) && (this.parentNode.ggIsActive)) {370 return this.parentNode.ggIsActive();371 }372 return false;373 }374 me._left.ggElementNodeId=function() {375 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {376 return this.parentNode.ggElementNodeId();377 }378 return me.player.getCurrentNode();379 }380 this._left.onmouseover=function () {381 me._left__img.style.visibility='hidden';382 me._left__imgo.style.visibility='inherit';383 }384 this._left.onmouseout=function () {385 me._left__img.style.visibility='inherit';386 me._left__imgo.style.visibility='hidden';387 me.elementMouseDown['left']=false;388 }389 this._left.onmousedown=function () {390 me.elementMouseDown['left']=true;391 }392 this._left.onmouseup=function () {393 me.elementMouseDown['left']=false;394 }395 this._left.ontouchend=function () {396 me.elementMouseDown['left']=false;397 }398 me._left.ggCurrentLogicStateVisible = -1;399 this._left.ggUpdateConditionTimer=function () {400 var newLogicStateVisible;401 if (402 (me.player.getViewerSize().width <= 1024) || 403 (me.player.getIsMobile() == true)404 )405 {406 newLogicStateVisible = 0;407 }408 else {409 newLogicStateVisible = -1;410 }411 if (me._left.ggCurrentLogicStateVisible != newLogicStateVisible) {412 me._left.ggCurrentLogicStateVisible = newLogicStateVisible;413 me._left.style[domTransition]='';414 if (me._left.ggCurrentLogicStateVisible == 0) {415 me._left.style.visibility="hidden";416 me._left.ggVisible=false;417 }418 else {419 me._left.style.visibility=(Number(me._left.style.opacity)>0||!me._left.style.opacity)?'inherit':'hidden';420 me._left.ggVisible=true;421 }422 }423 }424 this._left.ggUpdatePosition=function () {425 }426 this._controller.appendChild(this._left);427 this._right=document.createElement('div');428 this._right__img=document.createElement('img');429 this._right__img.className='ggskin ggskin_svg';430 this._right__img.setAttribute('src',basePath + 'images/right.svg');431 this._right__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');432 this._right__img['ondragstart']=function() { return false; };433 this._right.appendChild(this._right__img);434 this._right__imgo=document.createElement('img');435 this._right__imgo.className='ggskin ggskin_svg';436 this._right__imgo.setAttribute('src',basePath + 'images/right__o.svg');437 this._right__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');438 this._right__imgo['ondragstart']=function() { return false; };439 this._right.appendChild(this._right__imgo);440 this._right.ggId="right";441 this._right.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };442 this._right.ggVisible=true;443 this._right.className='ggskin ggskin_svg ';444 this._right.ggType='svg';445 hs ='';446 hs+='cursor : pointer;';447 hs+='height : 32px;';448 hs+='left : 50px;';449 hs+='position : absolute;';450 hs+='top : 10px;';451 hs+='visibility : inherit;';452 hs+='width : 32px;';453 this._right.setAttribute('style',hs);454 this._right.style[domTransform + 'Origin']='50% 50%';455 me._right.ggIsActive=function() {456 if ((this.parentNode) && (this.parentNode.ggIsActive)) {457 return this.parentNode.ggIsActive();458 }459 return false;460 }461 me._right.ggElementNodeId=function() {462 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {463 return this.parentNode.ggElementNodeId();464 }465 return me.player.getCurrentNode();466 }467 this._right.onmouseover=function () {468 me._right__img.style.visibility='hidden';469 me._right__imgo.style.visibility='inherit';470 }471 this._right.onmouseout=function () {472 me._right__img.style.visibility='inherit';473 me._right__imgo.style.visibility='hidden';474 me.elementMouseDown['right']=false;475 }476 this._right.onmousedown=function () {477 me.elementMouseDown['right']=true;478 }479 this._right.onmouseup=function () {480 me.elementMouseDown['right']=false;481 }482 this._right.ontouchend=function () {483 me.elementMouseDown['right']=false;484 }485 me._right.ggCurrentLogicStateVisible = -1;486 this._right.ggUpdateConditionTimer=function () {487 var newLogicStateVisible;488 if (489 (me.player.getViewerSize().width <= 1024) || 490 (me.player.getIsMobile() == true)491 )492 {493 newLogicStateVisible = 0;494 }495 else {496 newLogicStateVisible = -1;497 }498 if (me._right.ggCurrentLogicStateVisible != newLogicStateVisible) {499 me._right.ggCurrentLogicStateVisible = newLogicStateVisible;500 me._right.style[domTransition]='';501 if (me._right.ggCurrentLogicStateVisible == 0) {502 me._right.style.visibility="hidden";503 me._right.ggVisible=false;504 }505 else {506 me._right.style.visibility=(Number(me._right.style.opacity)>0||!me._right.style.opacity)?'inherit':'hidden';507 me._right.ggVisible=true;508 }509 }510 }511 this._right.ggUpdatePosition=function () {512 }513 this._controller.appendChild(this._right);514 this._zoomin=document.createElement('div');515 this._zoomin__img=document.createElement('img');516 this._zoomin__img.className='ggskin ggskin_svg';517 this._zoomin__img.setAttribute('src',basePath + 'images/zoomin.svg');518 this._zoomin__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');519 this._zoomin__img['ondragstart']=function() { return false; };520 this._zoomin.appendChild(this._zoomin__img);521 this._zoomin__imgo=document.createElement('img');522 this._zoomin__imgo.className='ggskin ggskin_svg';523 this._zoomin__imgo.setAttribute('src',basePath + 'images/zoomin__o.svg');524 this._zoomin__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');525 this._zoomin__imgo['ondragstart']=function() { return false; };526 this._zoomin.appendChild(this._zoomin__imgo);527 this._zoomin.ggId="zoomin";528 this._zoomin.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };529 this._zoomin.ggVisible=true;530 this._zoomin.className='ggskin ggskin_svg ';531 this._zoomin.ggType='svg';532 hs ='';533 hs+='cursor : pointer;';534 hs+='height : 32px;';535 hs+='left : 90px;';536 hs+='position : absolute;';537 hs+='top : 10px;';538 hs+='visibility : inherit;';539 hs+='width : 32px;';540 this._zoomin.setAttribute('style',hs);541 this._zoomin.style[domTransform + 'Origin']='50% 50%';542 me._zoomin.ggIsActive=function() {543 if ((this.parentNode) && (this.parentNode.ggIsActive)) {544 return this.parentNode.ggIsActive();545 }546 return false;547 }548 me._zoomin.ggElementNodeId=function() {549 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {550 return this.parentNode.ggElementNodeId();551 }552 return me.player.getCurrentNode();553 }554 this._zoomin.onmouseover=function () {555 me._zoomin__img.style.visibility='hidden';556 me._zoomin__imgo.style.visibility='inherit';557 me.elementMouseOver['zoomin']=true;558 }559 this._zoomin.onmouseout=function () {560 me._zoomin__img.style.visibility='inherit';561 me._zoomin__imgo.style.visibility='hidden';562 me.elementMouseDown['zoomin']=false;563 me.elementMouseOver['zoomin']=false;564 }565 this._zoomin.onmousedown=function () {566 me.elementMouseDown['zoomin']=true;567 }568 this._zoomin.onmouseup=function () {569 me.elementMouseDown['zoomin']=false;570 }571 this._zoomin.ontouchend=function () {572 me.elementMouseDown['zoomin']=false;573 me.elementMouseOver['zoomin']=false;574 }575 this._zoomin.ggUpdatePosition=function () {576 }577 this._tt_zoomin=document.createElement('div');578 this._tt_zoomin__text=document.createElement('div');579 this._tt_zoomin.className='ggskin ggskin_textdiv';580 this._tt_zoomin.ggTextDiv=this._tt_zoomin__text;581 this._tt_zoomin.ggId="tt_zoomin";582 this._tt_zoomin.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };583 this._tt_zoomin.ggVisible=false;584 this._tt_zoomin.className='ggskin ggskin_text ';585 this._tt_zoomin.ggType='text';586 hs ='';587 hs+='height : 18px;';588 hs+='left : -55px;';589 hs+='position : absolute;';590 hs+='top : 36px;';591 hs+='visibility : hidden;';592 hs+='width : 148px;';593 this._tt_zoomin.setAttribute('style',hs);594 this._tt_zoomin.style[domTransform + 'Origin']='50% 50%';595 hs ='position:absolute;';596 hs+='left: 0px;';597 hs+='top: 0px;';598 hs+='width: 148px;';599 hs+='height: 18px;';600 hs+='border: 0px solid #000000;';601 hs+='color: rgba(0,0,0,1);';602 hs+='text-align: center;';603 hs+='white-space: nowrap;';604 hs+='padding: 0px 1px 0px 1px;';605 hs+='overflow: hidden;';606 this._tt_zoomin__text.setAttribute('style',hs);607 this._tt_zoomin__text.innerHTML="Zoom In";608 this._tt_zoomin.appendChild(this._tt_zoomin__text);609 me._tt_zoomin.ggIsActive=function() {610 if ((this.parentNode) && (this.parentNode.ggIsActive)) {611 return this.parentNode.ggIsActive();612 }613 return false;614 }615 me._tt_zoomin.ggElementNodeId=function() {616 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {617 return this.parentNode.ggElementNodeId();618 }619 return me.player.getCurrentNode();620 }621 me._tt_zoomin.ggCurrentLogicStateVisible = -1;622 this._tt_zoomin.ggUpdateConditionTimer=function () {623 var newLogicStateVisible;624 if (625 (me.elementMouseOver['zoomin'] == true) && 626 (me.player.getIsMobile() == false)627 )628 {629 newLogicStateVisible = 0;630 }631 else {632 newLogicStateVisible = -1;633 }634 if (me._tt_zoomin.ggCurrentLogicStateVisible != newLogicStateVisible) {635 me._tt_zoomin.ggCurrentLogicStateVisible = newLogicStateVisible;636 me._tt_zoomin.style[domTransition]='';637 if (me._tt_zoomin.ggCurrentLogicStateVisible == 0) {638 me._tt_zoomin.style.visibility=(Number(me._tt_zoomin.style.opacity)>0||!me._tt_zoomin.style.opacity)?'inherit':'hidden';639 me._tt_zoomin.ggVisible=true;640 }641 else {642 me._tt_zoomin.style.visibility="hidden";643 me._tt_zoomin.ggVisible=false;644 }645 }646 }647 this._tt_zoomin.ggUpdatePosition=function () {648 }649 this._tt_zoomin_white=document.createElement('div');650 this._tt_zoomin_white__text=document.createElement('div');651 this._tt_zoomin_white.className='ggskin ggskin_textdiv';652 this._tt_zoomin_white.ggTextDiv=this._tt_zoomin_white__text;653 this._tt_zoomin_white.ggId="tt_zoomin_white";654 this._tt_zoomin_white.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };655 this._tt_zoomin_white.ggVisible=true;656 this._tt_zoomin_white.className='ggskin ggskin_text ';657 this._tt_zoomin_white.ggType='text';658 hs ='';659 hs+='height : 18px;';660 hs+='left : -1px;';661 hs+='position : absolute;';662 hs+='top : -1px;';663 hs+='visibility : inherit;';664 hs+='width : 148px;';665 this._tt_zoomin_white.setAttribute('style',hs);666 this._tt_zoomin_white.style[domTransform + 'Origin']='50% 50%';667 hs ='position:absolute;';668 hs+='left: 0px;';669 hs+='top: 0px;';670 hs+='width: 148px;';671 hs+='height: 18px;';672 hs+='border: 0px solid #000000;';673 hs+='color: rgba(255,255,255,1);';674 hs+='text-align: center;';675 hs+='white-space: nowrap;';676 hs+='padding: 0px 1px 0px 1px;';677 hs+='overflow: hidden;';678 this._tt_zoomin_white__text.setAttribute('style',hs);679 this._tt_zoomin_white__text.innerHTML="Zoom In";680 this._tt_zoomin_white.appendChild(this._tt_zoomin_white__text);681 me._tt_zoomin_white.ggIsActive=function() {682 if ((this.parentNode) && (this.parentNode.ggIsActive)) {683 return this.parentNode.ggIsActive();684 }685 return false;686 }687 me._tt_zoomin_white.ggElementNodeId=function() {688 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {689 return this.parentNode.ggElementNodeId();690 }691 return me.player.getCurrentNode();692 }693 this._tt_zoomin_white.ggUpdatePosition=function () {694 }695 this._tt_zoomin.appendChild(this._tt_zoomin_white);696 this._zoomin.appendChild(this._tt_zoomin);697 this._controller.appendChild(this._zoomin);698 this._zoomout=document.createElement('div');699 this._zoomout__img=document.createElement('img');700 this._zoomout__img.className='ggskin ggskin_svg';701 this._zoomout__img.setAttribute('src',basePath + 'images/zoomout.svg');702 this._zoomout__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');703 this._zoomout__img['ondragstart']=function() { return false; };704 this._zoomout.appendChild(this._zoomout__img);705 this._zoomout__imgo=document.createElement('img');706 this._zoomout__imgo.className='ggskin ggskin_svg';707 this._zoomout__imgo.setAttribute('src',basePath + 'images/zoomout__o.svg');708 this._zoomout__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');709 this._zoomout__imgo['ondragstart']=function() { return false; };710 this._zoomout.appendChild(this._zoomout__imgo);711 this._zoomout.ggId="zoomout";712 this._zoomout.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };713 this._zoomout.ggVisible=true;714 this._zoomout.className='ggskin ggskin_svg ';715 this._zoomout.ggType='svg';716 hs ='';717 hs+='cursor : pointer;';718 hs+='height : 32px;';719 hs+='left : 120px;';720 hs+='position : absolute;';721 hs+='top : 10px;';722 hs+='visibility : inherit;';723 hs+='width : 32px;';724 this._zoomout.setAttribute('style',hs);725 this._zoomout.style[domTransform + 'Origin']='50% 50%';726 me._zoomout.ggIsActive=function() {727 if ((this.parentNode) && (this.parentNode.ggIsActive)) {728 return this.parentNode.ggIsActive();729 }730 return false;731 }732 me._zoomout.ggElementNodeId=function() {733 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {734 return this.parentNode.ggElementNodeId();735 }736 return me.player.getCurrentNode();737 }738 this._zoomout.onmouseover=function () {739 me._zoomout__img.style.visibility='hidden';740 me._zoomout__imgo.style.visibility='inherit';741 me.elementMouseOver['zoomout']=true;742 }743 this._zoomout.onmouseout=function () {744 me._zoomout__img.style.visibility='inherit';745 me._zoomout__imgo.style.visibility='hidden';746 me.elementMouseDown['zoomout']=false;747 me.elementMouseOver['zoomout']=false;748 }749 this._zoomout.onmousedown=function () {750 me.elementMouseDown['zoomout']=true;751 }752 this._zoomout.onmouseup=function () {753 me.elementMouseDown['zoomout']=false;754 }755 this._zoomout.ontouchend=function () {756 me.elementMouseDown['zoomout']=false;757 me.elementMouseOver['zoomout']=false;758 }759 this._zoomout.ggUpdatePosition=function () {760 }761 this._tt_zoomout=document.createElement('div');762 this._tt_zoomout__text=document.createElement('div');763 this._tt_zoomout.className='ggskin ggskin_textdiv';764 this._tt_zoomout.ggTextDiv=this._tt_zoomout__text;765 this._tt_zoomout.ggId="tt_zoomout";766 this._tt_zoomout.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };767 this._tt_zoomout.ggVisible=false;768 this._tt_zoomout.className='ggskin ggskin_text ';769 this._tt_zoomout.ggType='text';770 hs ='';771 hs+='height : 18px;';772 hs+='left : -55px;';773 hs+='position : absolute;';774 hs+='top : 36px;';775 hs+='visibility : hidden;';776 hs+='width : 148px;';777 this._tt_zoomout.setAttribute('style',hs);778 this._tt_zoomout.style[domTransform + 'Origin']='50% 50%';779 hs ='position:absolute;';780 hs+='left: 0px;';781 hs+='top: 0px;';782 hs+='width: 148px;';783 hs+='height: 18px;';784 hs+='border: 0px solid #000000;';785 hs+='color: rgba(0,0,0,1);';786 hs+='text-align: center;';787 hs+='white-space: nowrap;';788 hs+='padding: 0px 1px 0px 1px;';789 hs+='overflow: hidden;';790 this._tt_zoomout__text.setAttribute('style',hs);791 this._tt_zoomout__text.innerHTML="Zoom Out";792 this._tt_zoomout.appendChild(this._tt_zoomout__text);793 me._tt_zoomout.ggIsActive=function() {794 if ((this.parentNode) && (this.parentNode.ggIsActive)) {795 return this.parentNode.ggIsActive();796 }797 return false;798 }799 me._tt_zoomout.ggElementNodeId=function() {800 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {801 return this.parentNode.ggElementNodeId();802 }803 return me.player.getCurrentNode();804 }805 me._tt_zoomout.ggCurrentLogicStateVisible = -1;806 this._tt_zoomout.ggUpdateConditionTimer=function () {807 var newLogicStateVisible;808 if (809 (me.elementMouseOver['zoomout'] == true) && 810 (me.player.getIsMobile() == false)811 )812 {813 newLogicStateVisible = 0;814 }815 else {816 newLogicStateVisible = -1;817 }818 if (me._tt_zoomout.ggCurrentLogicStateVisible != newLogicStateVisible) {819 me._tt_zoomout.ggCurrentLogicStateVisible = newLogicStateVisible;820 me._tt_zoomout.style[domTransition]='';821 if (me._tt_zoomout.ggCurrentLogicStateVisible == 0) {822 me._tt_zoomout.style.visibility=(Number(me._tt_zoomout.style.opacity)>0||!me._tt_zoomout.style.opacity)?'inherit':'hidden';823 me._tt_zoomout.ggVisible=true;824 }825 else {826 me._tt_zoomout.style.visibility="hidden";827 me._tt_zoomout.ggVisible=false;828 }829 }830 }831 this._tt_zoomout.ggUpdatePosition=function () {832 }833 this._tt_zoomout_white=document.createElement('div');834 this._tt_zoomout_white__text=document.createElement('div');835 this._tt_zoomout_white.className='ggskin ggskin_textdiv';836 this._tt_zoomout_white.ggTextDiv=this._tt_zoomout_white__text;837 this._tt_zoomout_white.ggId="tt_zoomout_white";838 this._tt_zoomout_white.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };839 this._tt_zoomout_white.ggVisible=true;840 this._tt_zoomout_white.className='ggskin ggskin_text ';841 this._tt_zoomout_white.ggType='text';842 hs ='';843 hs+='height : 18px;';844 hs+='left : -1px;';845 hs+='position : absolute;';846 hs+='top : -1px;';847 hs+='visibility : inherit;';848 hs+='width : 148px;';849 this._tt_zoomout_white.setAttribute('style',hs);850 this._tt_zoomout_white.style[domTransform + 'Origin']='50% 50%';851 hs ='position:absolute;';852 hs+='left: 0px;';853 hs+='top: 0px;';854 hs+='width: 148px;';855 hs+='height: 18px;';856 hs+='border: 0px solid #000000;';857 hs+='color: rgba(255,255,255,1);';858 hs+='text-align: center;';859 hs+='white-space: nowrap;';860 hs+='padding: 0px 1px 0px 1px;';861 hs+='overflow: hidden;';862 this._tt_zoomout_white__text.setAttribute('style',hs);863 this._tt_zoomout_white__text.innerHTML="Zoom Out";864 this._tt_zoomout_white.appendChild(this._tt_zoomout_white__text);865 me._tt_zoomout_white.ggIsActive=function() {866 if ((this.parentNode) && (this.parentNode.ggIsActive)) {867 return this.parentNode.ggIsActive();868 }869 return false;870 }871 me._tt_zoomout_white.ggElementNodeId=function() {872 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {873 return this.parentNode.ggElementNodeId();874 }875 return me.player.getCurrentNode();876 }877 this._tt_zoomout_white.ggUpdatePosition=function () {878 }879 this._tt_zoomout.appendChild(this._tt_zoomout_white);880 this._zoomout.appendChild(this._tt_zoomout);881 this._controller.appendChild(this._zoomout);882 this._button_simplex_auto_rotate=document.createElement('div');883 this._button_simplex_auto_rotate.ggId="button_simplex_auto_rotate";884 this._button_simplex_auto_rotate.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };885 this._button_simplex_auto_rotate.ggVisible=true;886 this._button_simplex_auto_rotate.className='ggskin ggskin_container ';887 this._button_simplex_auto_rotate.ggType='container';888 hs ='';889 hs+='height : 32px;';890 hs+='left : 160px;';891 hs+='position : absolute;';892 hs+='top : 10px;';893 hs+='visibility : inherit;';894 hs+='width : 32px;';895 this._button_simplex_auto_rotate.setAttribute('style',hs);896 this._button_simplex_auto_rotate.style[domTransform + 'Origin']='50% 50%';897 me._button_simplex_auto_rotate.ggIsActive=function() {898 if ((this.parentNode) && (this.parentNode.ggIsActive)) {899 return this.parentNode.ggIsActive();900 }901 return false;902 }903 me._button_simplex_auto_rotate.ggElementNodeId=function() {904 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {905 return this.parentNode.ggElementNodeId();906 }907 return me.player.getCurrentNode();908 }909 this._button_simplex_auto_rotate.ggUpdatePosition=function () {910 }911 this._button_stop_auto_rotate=document.createElement('div');912 this._button_stop_auto_rotate__img=document.createElement('img');913 this._button_stop_auto_rotate__img.className='ggskin ggskin_svg';914 this._button_stop_auto_rotate__img.setAttribute('src',basePath + 'images/button_stop_auto_rotate.svg');915 this._button_stop_auto_rotate__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');916 this._button_stop_auto_rotate__img['ondragstart']=function() { return false; };917 this._button_stop_auto_rotate.appendChild(this._button_stop_auto_rotate__img);918 this._button_stop_auto_rotate__imgo=document.createElement('img');919 this._button_stop_auto_rotate__imgo.className='ggskin ggskin_svg';920 this._button_stop_auto_rotate__imgo.setAttribute('src',basePath + 'images/button_stop_auto_rotate__o.svg');921 this._button_stop_auto_rotate__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');922 this._button_stop_auto_rotate__imgo['ondragstart']=function() { return false; };923 this._button_stop_auto_rotate.appendChild(this._button_stop_auto_rotate__imgo);924 this._button_stop_auto_rotate.ggId="button stop auto rotate";925 this._button_stop_auto_rotate.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };926 this._button_stop_auto_rotate.ggVisible=false;927 this._button_stop_auto_rotate.className='ggskin ggskin_svg ';928 this._button_stop_auto_rotate.ggType='svg';929 hs ='';930 hs+='cursor : pointer;';931 hs+='height : 32px;';932 hs+='left : 0px;';933 hs+='position : absolute;';934 hs+='top : 0px;';935 hs+='visibility : hidden;';936 hs+='width : 32px;';937 this._button_stop_auto_rotate.setAttribute('style',hs);938 this._button_stop_auto_rotate.style[domTransform + 'Origin']='50% 50%';939 me._button_stop_auto_rotate.ggIsActive=function() {940 if ((this.parentNode) && (this.parentNode.ggIsActive)) {941 return this.parentNode.ggIsActive();942 }943 return false;944 }945 me._button_stop_auto_rotate.ggElementNodeId=function() {946 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {947 return this.parentNode.ggElementNodeId();948 }949 return me.player.getCurrentNode();950 }951 this._button_stop_auto_rotate.onclick=function () {952 me.player.stopAutorotate();953 me._button_stop_auto_rotate.style[domTransition]='none';954 me._button_stop_auto_rotate.style.visibility='hidden';955 me._button_stop_auto_rotate.ggVisible=false;956 me._button_start_auto_rotate.style[domTransition]='none';957 me._button_start_auto_rotate.style.visibility=(Number(me._button_start_auto_rotate.style.opacity)>0||!me._button_start_auto_rotate.style.opacity)?'inherit':'hidden';958 me._button_start_auto_rotate.ggVisible=true;959 }960 this._button_stop_auto_rotate.onmouseover=function () {961 me._button_stop_auto_rotate__img.style.visibility='hidden';962 me._button_stop_auto_rotate__imgo.style.visibility='inherit';963 me.elementMouseOver['button_stop_auto_rotate']=true;964 }965 this._button_stop_auto_rotate.onmouseout=function () {966 me._button_stop_auto_rotate__img.style.visibility='inherit';967 me._button_stop_auto_rotate__imgo.style.visibility='hidden';968 me.elementMouseOver['button_stop_auto_rotate']=false;969 }970 this._button_stop_auto_rotate.ontouchend=function () {971 me.elementMouseOver['button_stop_auto_rotate']=false;972 }973 this._button_stop_auto_rotate.ggUpdatePosition=function () {974 }975 this._tt_stop_auto_rotate=document.createElement('div');976 this._tt_stop_auto_rotate__text=document.createElement('div');977 this._tt_stop_auto_rotate.className='ggskin ggskin_textdiv';978 this._tt_stop_auto_rotate.ggTextDiv=this._tt_stop_auto_rotate__text;979 this._tt_stop_auto_rotate.ggId="tt_stop_auto_rotate";980 this._tt_stop_auto_rotate.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };981 this._tt_stop_auto_rotate.ggVisible=false;982 this._tt_stop_auto_rotate.className='ggskin ggskin_text ';983 this._tt_stop_auto_rotate.ggType='text';984 hs ='';985 hs+='height : 18px;';986 hs+='left : -59px;';987 hs+='position : absolute;';988 hs+='top : 36px;';989 hs+='visibility : hidden;';990 hs+='width : 148px;';991 this._tt_stop_auto_rotate.setAttribute('style',hs);992 this._tt_stop_auto_rotate.style[domTransform + 'Origin']='50% 50%';993 hs ='position:absolute;';994 hs+='left: 0px;';995 hs+='top: 0px;';996 hs+='width: 148px;';997 hs+='height: 18px;';998 hs+='border: 0px solid #000000;';999 hs+='color: rgba(0,0,0,1);';1000 hs+='text-align: center;';1001 hs+='white-space: nowrap;';1002 hs+='padding: 0px 1px 0px 1px;';1003 hs+='overflow: hidden;';1004 this._tt_stop_auto_rotate__text.setAttribute('style',hs);1005 this._tt_stop_auto_rotate__text.innerHTML="Stop Auto Rotate";1006 this._tt_stop_auto_rotate.appendChild(this._tt_stop_auto_rotate__text);1007 me._tt_stop_auto_rotate.ggIsActive=function() {1008 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1009 return this.parentNode.ggIsActive();1010 }1011 return false;1012 }1013 me._tt_stop_auto_rotate.ggElementNodeId=function() {1014 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1015 return this.parentNode.ggElementNodeId();1016 }1017 return me.player.getCurrentNode();1018 }1019 me._tt_stop_auto_rotate.ggCurrentLogicStateVisible = -1;1020 this._tt_stop_auto_rotate.ggUpdateConditionTimer=function () {1021 var newLogicStateVisible;1022 if (1023 (me.elementMouseOver['button_stop_auto_rotate'] == true) && 1024 (me.player.getIsMobile() == false)1025 )1026 {1027 newLogicStateVisible = 0;1028 }1029 else {1030 newLogicStateVisible = -1;1031 }1032 if (me._tt_stop_auto_rotate.ggCurrentLogicStateVisible != newLogicStateVisible) {1033 me._tt_stop_auto_rotate.ggCurrentLogicStateVisible = newLogicStateVisible;1034 me._tt_stop_auto_rotate.style[domTransition]='';1035 if (me._tt_stop_auto_rotate.ggCurrentLogicStateVisible == 0) {1036 me._tt_stop_auto_rotate.style.visibility=(Number(me._tt_stop_auto_rotate.style.opacity)>0||!me._tt_stop_auto_rotate.style.opacity)?'inherit':'hidden';1037 me._tt_stop_auto_rotate.ggVisible=true;1038 }1039 else {1040 me._tt_stop_auto_rotate.style.visibility="hidden";1041 me._tt_stop_auto_rotate.ggVisible=false;1042 }1043 }1044 }1045 this._tt_stop_auto_rotate.ggUpdatePosition=function () {1046 }1047 this._tt_stop_auto_rotate_white=document.createElement('div');1048 this._tt_stop_auto_rotate_white__text=document.createElement('div');1049 this._tt_stop_auto_rotate_white.className='ggskin ggskin_textdiv';1050 this._tt_stop_auto_rotate_white.ggTextDiv=this._tt_stop_auto_rotate_white__text;1051 this._tt_stop_auto_rotate_white.ggId="tt_stop_auto_rotate_white";1052 this._tt_stop_auto_rotate_white.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1053 this._tt_stop_auto_rotate_white.ggVisible=true;1054 this._tt_stop_auto_rotate_white.className='ggskin ggskin_text ';1055 this._tt_stop_auto_rotate_white.ggType='text';1056 hs ='';1057 hs+='height : 18px;';1058 hs+='left : -1px;';1059 hs+='position : absolute;';1060 hs+='top : -1px;';1061 hs+='visibility : inherit;';1062 hs+='width : 148px;';1063 this._tt_stop_auto_rotate_white.setAttribute('style',hs);1064 this._tt_stop_auto_rotate_white.style[domTransform + 'Origin']='50% 50%';1065 hs ='position:absolute;';1066 hs+='left: 0px;';1067 hs+='top: 0px;';1068 hs+='width: 148px;';1069 hs+='height: 18px;';1070 hs+='border: 0px solid #000000;';1071 hs+='color: rgba(255,255,255,1);';1072 hs+='text-align: center;';1073 hs+='white-space: nowrap;';1074 hs+='padding: 0px 1px 0px 1px;';1075 hs+='overflow: hidden;';1076 this._tt_stop_auto_rotate_white__text.setAttribute('style',hs);1077 this._tt_stop_auto_rotate_white__text.innerHTML="Stop Auto Rotate";1078 this._tt_stop_auto_rotate_white.appendChild(this._tt_stop_auto_rotate_white__text);1079 me._tt_stop_auto_rotate_white.ggIsActive=function() {1080 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1081 return this.parentNode.ggIsActive();1082 }1083 return false;1084 }1085 me._tt_stop_auto_rotate_white.ggElementNodeId=function() {1086 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1087 return this.parentNode.ggElementNodeId();1088 }1089 return me.player.getCurrentNode();1090 }1091 this._tt_stop_auto_rotate_white.ggUpdatePosition=function () {1092 }1093 this._tt_stop_auto_rotate.appendChild(this._tt_stop_auto_rotate_white);1094 this._button_stop_auto_rotate.appendChild(this._tt_stop_auto_rotate);1095 this._button_simplex_auto_rotate.appendChild(this._button_stop_auto_rotate);1096 this._button_start_auto_rotate=document.createElement('div');1097 this._button_start_auto_rotate__img=document.createElement('img');1098 this._button_start_auto_rotate__img.className='ggskin ggskin_svg';1099 this._button_start_auto_rotate__img.setAttribute('src',basePath + 'images/button_start_auto_rotate.svg');1100 this._button_start_auto_rotate__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1101 this._button_start_auto_rotate__img['ondragstart']=function() { return false; };1102 this._button_start_auto_rotate.appendChild(this._button_start_auto_rotate__img);1103 this._button_start_auto_rotate__imgo=document.createElement('img');1104 this._button_start_auto_rotate__imgo.className='ggskin ggskin_svg';1105 this._button_start_auto_rotate__imgo.setAttribute('src',basePath + 'images/button_start_auto_rotate__o.svg');1106 this._button_start_auto_rotate__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');1107 this._button_start_auto_rotate__imgo['ondragstart']=function() { return false; };1108 this._button_start_auto_rotate.appendChild(this._button_start_auto_rotate__imgo);1109 this._button_start_auto_rotate.ggId="button start auto rotate";1110 this._button_start_auto_rotate.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1111 this._button_start_auto_rotate.ggVisible=true;1112 this._button_start_auto_rotate.className='ggskin ggskin_svg ';1113 this._button_start_auto_rotate.ggType='svg';1114 hs ='';1115 hs+='cursor : pointer;';1116 hs+='height : 32px;';1117 hs+='left : 0px;';1118 hs+='position : absolute;';1119 hs+='top : 0px;';1120 hs+='visibility : inherit;';1121 hs+='width : 32px;';1122 this._button_start_auto_rotate.setAttribute('style',hs);1123 this._button_start_auto_rotate.style[domTransform + 'Origin']='50% 50%';1124 me._button_start_auto_rotate.ggIsActive=function() {1125 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1126 return this.parentNode.ggIsActive();1127 }1128 return false;1129 }1130 me._button_start_auto_rotate.ggElementNodeId=function() {1131 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1132 return this.parentNode.ggElementNodeId();1133 }1134 return me.player.getCurrentNode();1135 }1136 this._button_start_auto_rotate.onclick=function () {1137 me.player.startAutorotate("0.1","5","1");1138 me._button_start_auto_rotate.style[domTransition]='none';1139 me._button_start_auto_rotate.style.visibility='hidden';1140 me._button_start_auto_rotate.ggVisible=false;1141 me._button_stop_auto_rotate.style[domTransition]='none';1142 me._button_stop_auto_rotate.style.visibility=(Number(me._button_stop_auto_rotate.style.opacity)>0||!me._button_stop_auto_rotate.style.opacity)?'inherit':'hidden';1143 me._button_stop_auto_rotate.ggVisible=true;1144 }1145 this._button_start_auto_rotate.onmouseover=function () {1146 me._button_start_auto_rotate__img.style.visibility='hidden';1147 me._button_start_auto_rotate__imgo.style.visibility='inherit';1148 me.elementMouseOver['button_start_auto_rotate']=true;1149 }1150 this._button_start_auto_rotate.onmouseout=function () {1151 me._button_start_auto_rotate__img.style.visibility='inherit';1152 me._button_start_auto_rotate__imgo.style.visibility='hidden';1153 me.elementMouseOver['button_start_auto_rotate']=false;1154 }1155 this._button_start_auto_rotate.ontouchend=function () {1156 me.elementMouseOver['button_start_auto_rotate']=false;1157 }1158 this._button_start_auto_rotate.ggUpdatePosition=function () {1159 }1160 this._tt_start_auto_rotate=document.createElement('div');1161 this._tt_start_auto_rotate__text=document.createElement('div');1162 this._tt_start_auto_rotate.className='ggskin ggskin_textdiv';1163 this._tt_start_auto_rotate.ggTextDiv=this._tt_start_auto_rotate__text;1164 this._tt_start_auto_rotate.ggId="tt_start_auto_rotate";1165 this._tt_start_auto_rotate.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1166 this._tt_start_auto_rotate.ggVisible=false;1167 this._tt_start_auto_rotate.className='ggskin ggskin_text ';1168 this._tt_start_auto_rotate.ggType='text';1169 hs ='';1170 hs+='height : 18px;';1171 hs+='left : -59px;';1172 hs+='position : absolute;';1173 hs+='top : 36px;';1174 hs+='visibility : hidden;';1175 hs+='width : 148px;';1176 this._tt_start_auto_rotate.setAttribute('style',hs);1177 this._tt_start_auto_rotate.style[domTransform + 'Origin']='50% 50%';1178 hs ='position:absolute;';1179 hs+='left: 0px;';1180 hs+='top: 0px;';1181 hs+='width: 148px;';1182 hs+='height: 18px;';1183 hs+='border: 0px solid #000000;';1184 hs+='color: rgba(0,0,0,1);';1185 hs+='text-align: center;';1186 hs+='white-space: nowrap;';1187 hs+='padding: 0px 1px 0px 1px;';1188 hs+='overflow: hidden;';1189 this._tt_start_auto_rotate__text.setAttribute('style',hs);1190 this._tt_start_auto_rotate__text.innerHTML="Start Auto Rotate";1191 this._tt_start_auto_rotate.appendChild(this._tt_start_auto_rotate__text);1192 me._tt_start_auto_rotate.ggIsActive=function() {1193 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1194 return this.parentNode.ggIsActive();1195 }1196 return false;1197 }1198 me._tt_start_auto_rotate.ggElementNodeId=function() {1199 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1200 return this.parentNode.ggElementNodeId();1201 }1202 return me.player.getCurrentNode();1203 }1204 me._tt_start_auto_rotate.ggCurrentLogicStateVisible = -1;1205 this._tt_start_auto_rotate.ggUpdateConditionTimer=function () {1206 var newLogicStateVisible;1207 if (1208 (me.elementMouseOver['button_start_auto_rotate'] == true) && 1209 (me.player.getIsMobile() == false)1210 )1211 {1212 newLogicStateVisible = 0;1213 }1214 else {1215 newLogicStateVisible = -1;1216 }1217 if (me._tt_start_auto_rotate.ggCurrentLogicStateVisible != newLogicStateVisible) {1218 me._tt_start_auto_rotate.ggCurrentLogicStateVisible = newLogicStateVisible;1219 me._tt_start_auto_rotate.style[domTransition]='';1220 if (me._tt_start_auto_rotate.ggCurrentLogicStateVisible == 0) {1221 me._tt_start_auto_rotate.style.visibility=(Number(me._tt_start_auto_rotate.style.opacity)>0||!me._tt_start_auto_rotate.style.opacity)?'inherit':'hidden';1222 me._tt_start_auto_rotate.ggVisible=true;1223 }1224 else {1225 me._tt_start_auto_rotate.style.visibility="hidden";1226 me._tt_start_auto_rotate.ggVisible=false;1227 }1228 }1229 }1230 this._tt_start_auto_rotate.ggUpdatePosition=function () {1231 }1232 this._tt_start_auto_rotate_white=document.createElement('div');1233 this._tt_start_auto_rotate_white__text=document.createElement('div');1234 this._tt_start_auto_rotate_white.className='ggskin ggskin_textdiv';1235 this._tt_start_auto_rotate_white.ggTextDiv=this._tt_start_auto_rotate_white__text;1236 this._tt_start_auto_rotate_white.ggId="tt_start_auto_rotate_white";1237 this._tt_start_auto_rotate_white.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1238 this._tt_start_auto_rotate_white.ggVisible=true;1239 this._tt_start_auto_rotate_white.className='ggskin ggskin_text ';1240 this._tt_start_auto_rotate_white.ggType='text';1241 hs ='';1242 hs+='height : 18px;';1243 hs+='left : -1px;';1244 hs+='position : absolute;';1245 hs+='top : -1px;';1246 hs+='visibility : inherit;';1247 hs+='width : 148px;';1248 this._tt_start_auto_rotate_white.setAttribute('style',hs);1249 this._tt_start_auto_rotate_white.style[domTransform + 'Origin']='50% 50%';1250 hs ='position:absolute;';1251 hs+='left: 0px;';1252 hs+='top: 0px;';1253 hs+='width: 148px;';1254 hs+='height: 18px;';1255 hs+='border: 0px solid #000000;';1256 hs+='color: rgba(255,255,255,1);';1257 hs+='text-align: center;';1258 hs+='white-space: nowrap;';1259 hs+='padding: 0px 1px 0px 1px;';1260 hs+='overflow: hidden;';1261 this._tt_start_auto_rotate_white__text.setAttribute('style',hs);1262 this._tt_start_auto_rotate_white__text.innerHTML="Start Auto Rotate";1263 this._tt_start_auto_rotate_white.appendChild(this._tt_start_auto_rotate_white__text);1264 me._tt_start_auto_rotate_white.ggIsActive=function() {1265 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1266 return this.parentNode.ggIsActive();1267 }1268 return false;1269 }1270 me._tt_start_auto_rotate_white.ggElementNodeId=function() {1271 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1272 return this.parentNode.ggElementNodeId();1273 }1274 return me.player.getCurrentNode();1275 }1276 this._tt_start_auto_rotate_white.ggUpdatePosition=function () {1277 }1278 this._tt_start_auto_rotate.appendChild(this._tt_start_auto_rotate_white);1279 this._button_start_auto_rotate.appendChild(this._tt_start_auto_rotate);1280 this._button_simplex_auto_rotate.appendChild(this._button_start_auto_rotate);1281 this._controller.appendChild(this._button_simplex_auto_rotate);1282 this._info=document.createElement('div');1283 this._info__img=document.createElement('img');1284 this._info__img.className='ggskin ggskin_svg';1285 this._info__img.setAttribute('src',basePath + 'images/info.svg');1286 this._info__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1287 this._info__img['ondragstart']=function() { return false; };1288 this._info.appendChild(this._info__img);1289 this._info__imgo=document.createElement('img');1290 this._info__imgo.className='ggskin ggskin_svg';1291 this._info__imgo.setAttribute('src',basePath + 'images/info__o.svg');1292 this._info__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');1293 this._info__imgo['ondragstart']=function() { return false; };1294 this._info.appendChild(this._info__imgo);1295 this._info.ggId="info";1296 this._info.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1297 this._info.ggVisible=true;1298 this._info.className='ggskin ggskin_svg ';1299 this._info.ggType='svg';1300 hs ='';1301 hs+='cursor : pointer;';1302 hs+='height : 32px;';1303 hs+='left : 190px;';1304 hs+='position : absolute;';1305 hs+='top : 10px;';1306 hs+='visibility : inherit;';1307 hs+='width : 32px;';1308 this._info.setAttribute('style',hs);1309 this._info.style[domTransform + 'Origin']='50% 50%';1310 me._info.ggIsActive=function() {1311 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1312 return this.parentNode.ggIsActive();1313 }1314 return false;1315 }1316 me._info.ggElementNodeId=function() {1317 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1318 return this.parentNode.ggElementNodeId();1319 }1320 return me.player.getCurrentNode();1321 }1322 this._info.onclick=function () {1323 me._userdata.style[domTransition]='none';1324 me._userdata.style.visibility=(Number(me._userdata.style.opacity)>0||!me._userdata.style.opacity)?'inherit':'hidden';1325 me._userdata.ggVisible=true;1326 me._screentint.style[domTransition]='none';1327 me._screentint.style.visibility=(Number(me._screentint.style.opacity)>0||!me._screentint.style.opacity)?'inherit':'hidden';1328 me._screentint.ggVisible=true;1329 }1330 this._info.onmouseover=function () {1331 me._info__img.style.visibility='hidden';1332 me._info__imgo.style.visibility='inherit';1333 me.elementMouseOver['info']=true;1334 }1335 this._info.onmouseout=function () {1336 me._info__img.style.visibility='inherit';1337 me._info__imgo.style.visibility='hidden';1338 me.elementMouseOver['info']=false;1339 }1340 this._info.ontouchend=function () {1341 me.elementMouseOver['info']=false;1342 }1343 this._info.ggUpdatePosition=function () {1344 }1345 this._tt_info=document.createElement('div');1346 this._tt_info__text=document.createElement('div');1347 this._tt_info.className='ggskin ggskin_textdiv';1348 this._tt_info.ggTextDiv=this._tt_info__text;1349 this._tt_info.ggId="tt_info";1350 this._tt_info.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1351 this._tt_info.ggVisible=false;1352 this._tt_info.className='ggskin ggskin_text ';1353 this._tt_info.ggType='text';1354 hs ='';1355 hs+='height : 18px;';1356 hs+='left : -55px;';1357 hs+='position : absolute;';1358 hs+='top : 36px;';1359 hs+='visibility : hidden;';1360 hs+='width : 148px;';1361 this._tt_info.setAttribute('style',hs);1362 this._tt_info.style[domTransform + 'Origin']='50% 50%';1363 hs ='position:absolute;';1364 hs+='left: 0px;';1365 hs+='top: 0px;';1366 hs+='width: 148px;';1367 hs+='height: 18px;';1368 hs+='border: 0px solid #000000;';1369 hs+='color: rgba(0,0,0,1);';1370 hs+='text-align: center;';1371 hs+='white-space: nowrap;';1372 hs+='padding: 0px 1px 0px 1px;';1373 hs+='overflow: hidden;';1374 this._tt_info__text.setAttribute('style',hs);1375 this._tt_info__text.innerHTML="Show Information";1376 this._tt_info.appendChild(this._tt_info__text);1377 me._tt_info.ggIsActive=function() {1378 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1379 return this.parentNode.ggIsActive();1380 }1381 return false;1382 }1383 me._tt_info.ggElementNodeId=function() {1384 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1385 return this.parentNode.ggElementNodeId();1386 }1387 return me.player.getCurrentNode();1388 }1389 me._tt_info.ggCurrentLogicStateVisible = -1;1390 this._tt_info.ggUpdateConditionTimer=function () {1391 var newLogicStateVisible;1392 if (1393 (me.elementMouseOver['info'] == true) && 1394 (me.player.getIsMobile() == false)1395 )1396 {1397 newLogicStateVisible = 0;1398 }1399 else {1400 newLogicStateVisible = -1;1401 }1402 if (me._tt_info.ggCurrentLogicStateVisible != newLogicStateVisible) {1403 me._tt_info.ggCurrentLogicStateVisible = newLogicStateVisible;1404 me._tt_info.style[domTransition]='';1405 if (me._tt_info.ggCurrentLogicStateVisible == 0) {1406 me._tt_info.style.visibility=(Number(me._tt_info.style.opacity)>0||!me._tt_info.style.opacity)?'inherit':'hidden';1407 me._tt_info.ggVisible=true;1408 }1409 else {1410 me._tt_info.style.visibility="hidden";1411 me._tt_info.ggVisible=false;1412 }1413 }1414 }1415 this._tt_info.ggUpdatePosition=function () {1416 }1417 this._tt_info_white=document.createElement('div');1418 this._tt_info_white__text=document.createElement('div');1419 this._tt_info_white.className='ggskin ggskin_textdiv';1420 this._tt_info_white.ggTextDiv=this._tt_info_white__text;1421 this._tt_info_white.ggId="tt_info_white";1422 this._tt_info_white.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1423 this._tt_info_white.ggVisible=true;1424 this._tt_info_white.className='ggskin ggskin_text ';1425 this._tt_info_white.ggType='text';1426 hs ='';1427 hs+='height : 18px;';1428 hs+='left : -1px;';1429 hs+='position : absolute;';1430 hs+='top : -1px;';1431 hs+='visibility : inherit;';1432 hs+='width : 148px;';1433 this._tt_info_white.setAttribute('style',hs);1434 this._tt_info_white.style[domTransform + 'Origin']='50% 50%';1435 hs ='position:absolute;';1436 hs+='left: 0px;';1437 hs+='top: 0px;';1438 hs+='width: 148px;';1439 hs+='height: 18px;';1440 hs+='border: 0px solid #000000;';1441 hs+='color: rgba(255,255,255,1);';1442 hs+='text-align: center;';1443 hs+='white-space: nowrap;';1444 hs+='padding: 0px 1px 0px 1px;';1445 hs+='overflow: hidden;';1446 this._tt_info_white__text.setAttribute('style',hs);1447 this._tt_info_white__text.innerHTML="Show Information";1448 this._tt_info_white.appendChild(this._tt_info_white__text);1449 me._tt_info_white.ggIsActive=function() {1450 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1451 return this.parentNode.ggIsActive();1452 }1453 return false;1454 }1455 me._tt_info_white.ggElementNodeId=function() {1456 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1457 return this.parentNode.ggElementNodeId();1458 }1459 return me.player.getCurrentNode();1460 }1461 this._tt_info_white.ggUpdatePosition=function () {1462 }1463 this._tt_info.appendChild(this._tt_info_white);1464 this._info.appendChild(this._tt_info);1465 this._controller.appendChild(this._info);1466 this._button_simplex_movemode=document.createElement('div');1467 this._button_simplex_movemode.ggId="button_simplex_movemode";1468 this._button_simplex_movemode.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1469 this._button_simplex_movemode.ggVisible=true;1470 this._button_simplex_movemode.className='ggskin ggskin_container ';1471 this._button_simplex_movemode.ggType='container';1472 hs ='';1473 hs+='height : 32px;';1474 hs+='left : 220px;';1475 hs+='position : absolute;';1476 hs+='top : 10px;';1477 hs+='visibility : inherit;';1478 hs+='width : 32px;';1479 this._button_simplex_movemode.setAttribute('style',hs);1480 this._button_simplex_movemode.style[domTransform + 'Origin']='50% 50%';1481 me._button_simplex_movemode.ggIsActive=function() {1482 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1483 return this.parentNode.ggIsActive();1484 }1485 return false;1486 }1487 me._button_simplex_movemode.ggElementNodeId=function() {1488 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1489 return this.parentNode.ggElementNodeId();1490 }1491 return me.player.getCurrentNode();1492 }1493 this._button_simplex_movemode.ggUpdatePosition=function () {1494 }1495 this._movemode_drag=document.createElement('div');1496 this._movemode_drag__img=document.createElement('img');1497 this._movemode_drag__img.className='ggskin ggskin_svg';1498 this._movemode_drag__img.setAttribute('src',basePath + 'images/movemode_drag.svg');1499 this._movemode_drag__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1500 this._movemode_drag__img['ondragstart']=function() { return false; };1501 this._movemode_drag.appendChild(this._movemode_drag__img);1502 this._movemode_drag__imgo=document.createElement('img');1503 this._movemode_drag__imgo.className='ggskin ggskin_svg';1504 this._movemode_drag__imgo.setAttribute('src',basePath + 'images/movemode_drag__o.svg');1505 this._movemode_drag__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');1506 this._movemode_drag__imgo['ondragstart']=function() { return false; };1507 this._movemode_drag.appendChild(this._movemode_drag__imgo);1508 this._movemode_drag.ggId="movemode_drag";1509 this._movemode_drag.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1510 this._movemode_drag.ggVisible=false;1511 this._movemode_drag.className='ggskin ggskin_svg ';1512 this._movemode_drag.ggType='svg';1513 hs ='';1514 hs+='cursor : pointer;';1515 hs+='height : 32px;';1516 hs+='left : 0px;';1517 hs+='position : absolute;';1518 hs+='top : 0px;';1519 hs+='visibility : hidden;';1520 hs+='width : 32px;';1521 this._movemode_drag.setAttribute('style',hs);1522 this._movemode_drag.style[domTransform + 'Origin']='50% 50%';1523 me._movemode_drag.ggIsActive=function() {1524 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1525 return this.parentNode.ggIsActive();1526 }1527 return false;1528 }1529 me._movemode_drag.ggElementNodeId=function() {1530 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1531 return this.parentNode.ggElementNodeId();1532 }1533 return me.player.getCurrentNode();1534 }1535 this._movemode_drag.onclick=function () {1536 me.player.changeViewMode(1);1537 me._movemode_drag.style[domTransition]='none';1538 me._movemode_drag.style.visibility='hidden';1539 me._movemode_drag.ggVisible=false;1540 me._movemode_continuous.style[domTransition]='none';1541 me._movemode_continuous.style.visibility=(Number(me._movemode_continuous.style.opacity)>0||!me._movemode_continuous.style.opacity)?'inherit':'hidden';1542 me._movemode_continuous.ggVisible=true;1543 }1544 this._movemode_drag.onmouseover=function () {1545 me._movemode_drag__img.style.visibility='hidden';1546 me._movemode_drag__imgo.style.visibility='inherit';1547 me.elementMouseOver['movemode_drag']=true;1548 }1549 this._movemode_drag.onmouseout=function () {1550 me._movemode_drag__img.style.visibility='inherit';1551 me._movemode_drag__imgo.style.visibility='hidden';1552 me.elementMouseOver['movemode_drag']=false;1553 }1554 this._movemode_drag.ontouchend=function () {1555 me.elementMouseOver['movemode_drag']=false;1556 }1557 this._movemode_drag.ggUpdatePosition=function () {1558 }1559 this._tt_movemode0=document.createElement('div');1560 this._tt_movemode0__text=document.createElement('div');1561 this._tt_movemode0.className='ggskin ggskin_textdiv';1562 this._tt_movemode0.ggTextDiv=this._tt_movemode0__text;1563 this._tt_movemode0.ggId="tt_movemode";1564 this._tt_movemode0.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1565 this._tt_movemode0.ggVisible=false;1566 this._tt_movemode0.className='ggskin ggskin_text ';1567 this._tt_movemode0.ggType='text';1568 hs ='';1569 hs+='height : 18px;';1570 hs+='left : -65px;';1571 hs+='position : absolute;';1572 hs+='top : 36px;';1573 hs+='visibility : hidden;';1574 hs+='width : 168px;';1575 this._tt_movemode0.setAttribute('style',hs);1576 this._tt_movemode0.style[domTransform + 'Origin']='50% 50%';1577 hs ='position:absolute;';1578 hs+='left: 0px;';1579 hs+='top: 0px;';1580 hs+='width: 168px;';1581 hs+='height: 18px;';1582 hs+='border: 0px solid #000000;';1583 hs+='color: rgba(0,0,0,1);';1584 hs+='text-align: center;';1585 hs+='white-space: nowrap;';1586 hs+='padding: 0px 1px 0px 1px;';1587 hs+='overflow: hidden;';1588 this._tt_movemode0__text.setAttribute('style',hs);1589 this._tt_movemode0__text.innerHTML="Change Control Mode";1590 this._tt_movemode0.appendChild(this._tt_movemode0__text);1591 me._tt_movemode0.ggIsActive=function() {1592 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1593 return this.parentNode.ggIsActive();1594 }1595 return false;1596 }1597 me._tt_movemode0.ggElementNodeId=function() {1598 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1599 return this.parentNode.ggElementNodeId();1600 }1601 return me.player.getCurrentNode();1602 }1603 me._tt_movemode0.ggCurrentLogicStateVisible = -1;1604 this._tt_movemode0.ggUpdateConditionTimer=function () {1605 var newLogicStateVisible;1606 if (1607 (me.elementMouseOver['movemode_drag'] == true) && 1608 (me.player.getIsMobile() == false)1609 )1610 {1611 newLogicStateVisible = 0;1612 }1613 else {1614 newLogicStateVisible = -1;1615 }1616 if (me._tt_movemode0.ggCurrentLogicStateVisible != newLogicStateVisible) {1617 me._tt_movemode0.ggCurrentLogicStateVisible = newLogicStateVisible;1618 me._tt_movemode0.style[domTransition]='';1619 if (me._tt_movemode0.ggCurrentLogicStateVisible == 0) {1620 me._tt_movemode0.style.visibility=(Number(me._tt_movemode0.style.opacity)>0||!me._tt_movemode0.style.opacity)?'inherit':'hidden';1621 me._tt_movemode0.ggVisible=true;1622 }1623 else {1624 me._tt_movemode0.style.visibility="hidden";1625 me._tt_movemode0.ggVisible=false;1626 }1627 }1628 }1629 this._tt_movemode0.ggUpdatePosition=function () {1630 }1631 this._tt_movemode_white0=document.createElement('div');1632 this._tt_movemode_white0__text=document.createElement('div');1633 this._tt_movemode_white0.className='ggskin ggskin_textdiv';1634 this._tt_movemode_white0.ggTextDiv=this._tt_movemode_white0__text;1635 this._tt_movemode_white0.ggId="tt_movemode_white";1636 this._tt_movemode_white0.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1637 this._tt_movemode_white0.ggVisible=true;1638 this._tt_movemode_white0.className='ggskin ggskin_text ';1639 this._tt_movemode_white0.ggType='text';1640 hs ='';1641 hs+='height : 18px;';1642 hs+='left : -1px;';1643 hs+='position : absolute;';1644 hs+='top : -1px;';1645 hs+='visibility : inherit;';1646 hs+='width : 168px;';1647 this._tt_movemode_white0.setAttribute('style',hs);1648 this._tt_movemode_white0.style[domTransform + 'Origin']='50% 50%';1649 hs ='position:absolute;';1650 hs+='left: 0px;';1651 hs+='top: 0px;';1652 hs+='width: 168px;';1653 hs+='height: 18px;';1654 hs+='border: 0px solid #000000;';1655 hs+='color: rgba(255,255,255,1);';1656 hs+='text-align: center;';1657 hs+='white-space: nowrap;';1658 hs+='padding: 0px 1px 0px 1px;';1659 hs+='overflow: hidden;';1660 this._tt_movemode_white0__text.setAttribute('style',hs);1661 this._tt_movemode_white0__text.innerHTML="Change Control Mode";1662 this._tt_movemode_white0.appendChild(this._tt_movemode_white0__text);1663 me._tt_movemode_white0.ggIsActive=function() {1664 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1665 return this.parentNode.ggIsActive();1666 }1667 return false;1668 }1669 me._tt_movemode_white0.ggElementNodeId=function() {1670 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1671 return this.parentNode.ggElementNodeId();1672 }1673 return me.player.getCurrentNode();1674 }1675 this._tt_movemode_white0.ggUpdatePosition=function () {1676 }1677 this._tt_movemode0.appendChild(this._tt_movemode_white0);1678 this._movemode_drag.appendChild(this._tt_movemode0);1679 this._button_simplex_movemode.appendChild(this._movemode_drag);1680 this._movemode_continuous=document.createElement('div');1681 this._movemode_continuous__img=document.createElement('img');1682 this._movemode_continuous__img.className='ggskin ggskin_svg';1683 this._movemode_continuous__img.setAttribute('src',basePath + 'images/movemode_continuous.svg');1684 this._movemode_continuous__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1685 this._movemode_continuous__img['ondragstart']=function() { return false; };1686 this._movemode_continuous.appendChild(this._movemode_continuous__img);1687 this._movemode_continuous__imgo=document.createElement('img');1688 this._movemode_continuous__imgo.className='ggskin ggskin_svg';1689 this._movemode_continuous__imgo.setAttribute('src',basePath + 'images/movemode_continuous__o.svg');1690 this._movemode_continuous__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');1691 this._movemode_continuous__imgo['ondragstart']=function() { return false; };1692 this._movemode_continuous.appendChild(this._movemode_continuous__imgo);1693 this._movemode_continuous.ggId="movemode_continuous";1694 this._movemode_continuous.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1695 this._movemode_continuous.ggVisible=true;1696 this._movemode_continuous.className='ggskin ggskin_svg ';1697 this._movemode_continuous.ggType='svg';1698 hs ='';1699 hs+='cursor : pointer;';1700 hs+='height : 32px;';1701 hs+='left : 0px;';1702 hs+='position : absolute;';1703 hs+='top : 0px;';1704 hs+='visibility : inherit;';1705 hs+='width : 32px;';1706 this._movemode_continuous.setAttribute('style',hs);1707 this._movemode_continuous.style[domTransform + 'Origin']='50% 50%';1708 me._movemode_continuous.ggIsActive=function() {1709 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1710 return this.parentNode.ggIsActive();1711 }1712 return false;1713 }1714 me._movemode_continuous.ggElementNodeId=function() {1715 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1716 return this.parentNode.ggElementNodeId();1717 }1718 return me.player.getCurrentNode();1719 }1720 this._movemode_continuous.onclick=function () {1721 me.player.changeViewMode(0);1722 me._movemode_continuous.style[domTransition]='none';1723 me._movemode_continuous.style.visibility='hidden';1724 me._movemode_continuous.ggVisible=false;1725 me._movemode_drag.style[domTransition]='none';1726 me._movemode_drag.style.visibility=(Number(me._movemode_drag.style.opacity)>0||!me._movemode_drag.style.opacity)?'inherit':'hidden';1727 me._movemode_drag.ggVisible=true;1728 }1729 this._movemode_continuous.onmouseover=function () {1730 me._movemode_continuous__img.style.visibility='hidden';1731 me._movemode_continuous__imgo.style.visibility='inherit';1732 me.elementMouseOver['movemode_continuous']=true;1733 }1734 this._movemode_continuous.onmouseout=function () {1735 me._movemode_continuous__img.style.visibility='inherit';1736 me._movemode_continuous__imgo.style.visibility='hidden';1737 me.elementMouseOver['movemode_continuous']=false;1738 }1739 this._movemode_continuous.ontouchend=function () {1740 me.elementMouseOver['movemode_continuous']=false;1741 }1742 this._movemode_continuous.ggUpdatePosition=function () {1743 }1744 this._tt_movemode=document.createElement('div');1745 this._tt_movemode__text=document.createElement('div');1746 this._tt_movemode.className='ggskin ggskin_textdiv';1747 this._tt_movemode.ggTextDiv=this._tt_movemode__text;1748 this._tt_movemode.ggId="tt_movemode";1749 this._tt_movemode.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1750 this._tt_movemode.ggVisible=false;1751 this._tt_movemode.className='ggskin ggskin_text ';1752 this._tt_movemode.ggType='text';1753 hs ='';1754 hs+='height : 18px;';1755 hs+='left : -65px;';1756 hs+='position : absolute;';1757 hs+='top : 36px;';1758 hs+='visibility : hidden;';1759 hs+='width : 168px;';1760 this._tt_movemode.setAttribute('style',hs);1761 this._tt_movemode.style[domTransform + 'Origin']='50% 50%';1762 hs ='position:absolute;';1763 hs+='left: 0px;';1764 hs+='top: 0px;';1765 hs+='width: 168px;';1766 hs+='height: 18px;';1767 hs+='border: 0px solid #000000;';1768 hs+='color: rgba(0,0,0,1);';1769 hs+='text-align: center;';1770 hs+='white-space: nowrap;';1771 hs+='padding: 0px 1px 0px 1px;';1772 hs+='overflow: hidden;';1773 this._tt_movemode__text.setAttribute('style',hs);1774 this._tt_movemode__text.innerHTML="Change Control Mode";1775 this._tt_movemode.appendChild(this._tt_movemode__text);1776 me._tt_movemode.ggIsActive=function() {1777 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1778 return this.parentNode.ggIsActive();1779 }1780 return false;1781 }1782 me._tt_movemode.ggElementNodeId=function() {1783 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1784 return this.parentNode.ggElementNodeId();1785 }1786 return me.player.getCurrentNode();1787 }1788 me._tt_movemode.ggCurrentLogicStateVisible = -1;1789 this._tt_movemode.ggUpdateConditionTimer=function () {1790 var newLogicStateVisible;1791 if (1792 (me.elementMouseOver['movemode_continuous'] == true) && 1793 (me.player.getIsMobile() == false)1794 )1795 {1796 newLogicStateVisible = 0;1797 }1798 else {1799 newLogicStateVisible = -1;1800 }1801 if (me._tt_movemode.ggCurrentLogicStateVisible != newLogicStateVisible) {1802 me._tt_movemode.ggCurrentLogicStateVisible = newLogicStateVisible;1803 me._tt_movemode.style[domTransition]='';1804 if (me._tt_movemode.ggCurrentLogicStateVisible == 0) {1805 me._tt_movemode.style.visibility=(Number(me._tt_movemode.style.opacity)>0||!me._tt_movemode.style.opacity)?'inherit':'hidden';1806 me._tt_movemode.ggVisible=true;1807 }1808 else {1809 me._tt_movemode.style.visibility="hidden";1810 me._tt_movemode.ggVisible=false;1811 }1812 }1813 }1814 this._tt_movemode.ggUpdatePosition=function () {1815 }1816 this._tt_movemode_white=document.createElement('div');1817 this._tt_movemode_white__text=document.createElement('div');1818 this._tt_movemode_white.className='ggskin ggskin_textdiv';1819 this._tt_movemode_white.ggTextDiv=this._tt_movemode_white__text;1820 this._tt_movemode_white.ggId="tt_movemode_white";1821 this._tt_movemode_white.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1822 this._tt_movemode_white.ggVisible=true;1823 this._tt_movemode_white.className='ggskin ggskin_text ';1824 this._tt_movemode_white.ggType='text';1825 hs ='';1826 hs+='height : 18px;';1827 hs+='left : -1px;';1828 hs+='position : absolute;';1829 hs+='top : -1px;';1830 hs+='visibility : inherit;';1831 hs+='width : 168px;';1832 this._tt_movemode_white.setAttribute('style',hs);1833 this._tt_movemode_white.style[domTransform + 'Origin']='50% 50%';1834 hs ='position:absolute;';1835 hs+='left: 0px;';1836 hs+='top: 0px;';1837 hs+='width: 168px;';1838 hs+='height: 18px;';1839 hs+='border: 0px solid #000000;';1840 hs+='color: rgba(255,255,255,1);';1841 hs+='text-align: center;';1842 hs+='white-space: nowrap;';1843 hs+='padding: 0px 1px 0px 1px;';1844 hs+='overflow: hidden;';1845 this._tt_movemode_white__text.setAttribute('style',hs);1846 this._tt_movemode_white__text.innerHTML="Change Control Mode";1847 this._tt_movemode_white.appendChild(this._tt_movemode_white__text);1848 me._tt_movemode_white.ggIsActive=function() {1849 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1850 return this.parentNode.ggIsActive();1851 }1852 return false;1853 }1854 me._tt_movemode_white.ggElementNodeId=function() {1855 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1856 return this.parentNode.ggElementNodeId();1857 }1858 return me.player.getCurrentNode();1859 }1860 this._tt_movemode_white.ggUpdatePosition=function () {1861 }1862 this._tt_movemode.appendChild(this._tt_movemode_white);1863 this._movemode_continuous.appendChild(this._tt_movemode);1864 this._button_simplex_movemode.appendChild(this._movemode_continuous);1865 this._controller.appendChild(this._button_simplex_movemode);1866 this._button_simplex_fullscreen=document.createElement('div');1867 this._button_simplex_fullscreen.ggId="button_simplex_fullscreen";1868 this._button_simplex_fullscreen.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1869 this._button_simplex_fullscreen.ggVisible=true;1870 this._button_simplex_fullscreen.className='ggskin ggskin_container ';1871 this._button_simplex_fullscreen.ggType='container';1872 hs ='';1873 hs+='height : 32px;';1874 hs+='left : 250px;';1875 hs+='position : absolute;';1876 hs+='top : 10px;';1877 hs+='visibility : inherit;';1878 hs+='width : 32px;';1879 this._button_simplex_fullscreen.setAttribute('style',hs);1880 this._button_simplex_fullscreen.style[domTransform + 'Origin']='50% 50%';1881 me._button_simplex_fullscreen.ggIsActive=function() {1882 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1883 return this.parentNode.ggIsActive();1884 }1885 return false;1886 }1887 me._button_simplex_fullscreen.ggElementNodeId=function() {1888 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1889 return this.parentNode.ggElementNodeId();1890 }1891 return me.player.getCurrentNode();1892 }1893 me._button_simplex_fullscreen.ggCurrentLogicStateVisible = -1;1894 this._button_simplex_fullscreen.ggUpdateConditionNodeChange=function () {1895 var newLogicStateVisible;1896 if (1897 (me.player.getIsMobile() == true)1898 )1899 {1900 newLogicStateVisible = 0;1901 }1902 else {1903 newLogicStateVisible = -1;1904 }1905 if (me._button_simplex_fullscreen.ggCurrentLogicStateVisible != newLogicStateVisible) {1906 me._button_simplex_fullscreen.ggCurrentLogicStateVisible = newLogicStateVisible;1907 me._button_simplex_fullscreen.style[domTransition]='';1908 if (me._button_simplex_fullscreen.ggCurrentLogicStateVisible == 0) {1909 me._button_simplex_fullscreen.style.visibility="hidden";1910 me._button_simplex_fullscreen.ggVisible=false;1911 }1912 else {1913 me._button_simplex_fullscreen.style.visibility=(Number(me._button_simplex_fullscreen.style.opacity)>0||!me._button_simplex_fullscreen.style.opacity)?'inherit':'hidden';1914 me._button_simplex_fullscreen.ggVisible=true;1915 }1916 }1917 }1918 this._button_simplex_fullscreen.ggUpdatePosition=function () {1919 }1920 this._button_simplex_fullscreen.ggNodeChange=function () {1921 me._button_simplex_fullscreen.ggUpdateConditionNodeChange();1922 }1923 this._button_image_normalscreen=document.createElement('div');1924 this._button_image_normalscreen__img=document.createElement('img');1925 this._button_image_normalscreen__img.className='ggskin ggskin_svg';1926 this._button_image_normalscreen__img.setAttribute('src',basePath + 'images/button_image_normalscreen.svg');1927 this._button_image_normalscreen__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1928 this._button_image_normalscreen__img['ondragstart']=function() { return false; };1929 this._button_image_normalscreen.appendChild(this._button_image_normalscreen__img);1930 this._button_image_normalscreen__imgo=document.createElement('img');1931 this._button_image_normalscreen__imgo.className='ggskin ggskin_svg';1932 this._button_image_normalscreen__imgo.setAttribute('src',basePath + 'images/button_image_normalscreen__o.svg');1933 this._button_image_normalscreen__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');1934 this._button_image_normalscreen__imgo['ondragstart']=function() { return false; };1935 this._button_image_normalscreen.appendChild(this._button_image_normalscreen__imgo);1936 this._button_image_normalscreen.ggId="button_image_normalscreen";1937 this._button_image_normalscreen.ggLeft=-32;1938 this._button_image_normalscreen.ggTop=-32;1939 this._button_image_normalscreen.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1940 this._button_image_normalscreen.ggVisible=false;1941 this._button_image_normalscreen.className='ggskin ggskin_svg ';1942 this._button_image_normalscreen.ggType='svg';1943 hs ='';1944 hs+='cursor : pointer;';1945 hs+='height : 32px;';1946 hs+='left : -32px;';1947 hs+='position : absolute;';1948 hs+='top : -32px;';1949 hs+='visibility : hidden;';1950 hs+='width : 32px;';1951 this._button_image_normalscreen.setAttribute('style',hs);1952 this._button_image_normalscreen.style[domTransform + 'Origin']='50% 50%';1953 me._button_image_normalscreen.ggIsActive=function() {1954 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1955 return this.parentNode.ggIsActive();1956 }1957 return false;1958 }1959 me._button_image_normalscreen.ggElementNodeId=function() {1960 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1961 return this.parentNode.ggElementNodeId();1962 }1963 return me.player.getCurrentNode();1964 }1965 this._button_image_normalscreen.onclick=function () {1966 me.player.exitFullscreen();1967 }1968 this._button_image_normalscreen.onmouseover=function () {1969 me._button_image_normalscreen__img.style.visibility='hidden';1970 me._button_image_normalscreen__imgo.style.visibility='inherit';1971 me.elementMouseOver['button_image_normalscreen']=true;1972 }1973 this._button_image_normalscreen.onmouseout=function () {1974 me._button_image_normalscreen__img.style.visibility='inherit';1975 me._button_image_normalscreen__imgo.style.visibility='hidden';1976 me.elementMouseOver['button_image_normalscreen']=false;1977 }1978 this._button_image_normalscreen.ontouchend=function () {1979 me.elementMouseOver['button_image_normalscreen']=false;1980 }1981 me._button_image_normalscreen.ggCurrentLogicStateVisible = -1;1982 this._button_image_normalscreen.ggUpdateConditionResize=function () {1983 var newLogicStateVisible;1984 if (1985 (me.player.getIsFullscreen() == true)1986 )1987 {1988 newLogicStateVisible = 0;1989 }1990 else {1991 newLogicStateVisible = -1;1992 }1993 if (me._button_image_normalscreen.ggCurrentLogicStateVisible != newLogicStateVisible) {1994 me._button_image_normalscreen.ggCurrentLogicStateVisible = newLogicStateVisible;1995 me._button_image_normalscreen.style[domTransition]='';1996 if (me._button_image_normalscreen.ggCurrentLogicStateVisible == 0) {1997 me._button_image_normalscreen.style.visibility=(Number(me._button_image_normalscreen.style.opacity)>0||!me._button_image_normalscreen.style.opacity)?'inherit':'hidden';1998 me._button_image_normalscreen.ggVisible=true;1999 }2000 else {2001 me._button_image_normalscreen.style.visibility="hidden";2002 me._button_image_normalscreen.ggVisible=false;2003 }2004 }2005 }2006 this._button_image_normalscreen.ggUpdatePosition=function () {2007 this.style[domTransition]='none';2008 if (this.parentNode) {2009 var w=this.parentNode.offsetWidth;2010 this.style.left=(this.ggLeft - 0 + w) + 'px';2011 var h=this.parentNode.offsetHeight;2012 this.style.top=(this.ggTop - 0 + h) + 'px';2013 }2014 me._button_image_normalscreen.ggUpdateConditionResize();2015 }2016 this._tt_exit_fullscreen=document.createElement('div');2017 this._tt_exit_fullscreen__text=document.createElement('div');2018 this._tt_exit_fullscreen.className='ggskin ggskin_textdiv';2019 this._tt_exit_fullscreen.ggTextDiv=this._tt_exit_fullscreen__text;2020 this._tt_exit_fullscreen.ggId="tt_exit_fullscreen";2021 this._tt_exit_fullscreen.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2022 this._tt_exit_fullscreen.ggVisible=false;2023 this._tt_exit_fullscreen.className='ggskin ggskin_text ';2024 this._tt_exit_fullscreen.ggType='text';2025 hs ='';2026 hs+='height : 18px;';2027 hs+='left : -59px;';2028 hs+='position : absolute;';2029 hs+='top : 36px;';2030 hs+='visibility : hidden;';2031 hs+='width : 148px;';2032 this._tt_exit_fullscreen.setAttribute('style',hs);2033 this._tt_exit_fullscreen.style[domTransform + 'Origin']='50% 50%';2034 hs ='position:absolute;';2035 hs+='left: 0px;';2036 hs+='top: 0px;';2037 hs+='width: 148px;';2038 hs+='height: 18px;';2039 hs+='border: 0px solid #000000;';2040 hs+='color: rgba(0,0,0,1);';2041 hs+='text-align: center;';2042 hs+='white-space: nowrap;';2043 hs+='padding: 0px 1px 0px 1px;';2044 hs+='overflow: hidden;';2045 this._tt_exit_fullscreen__text.setAttribute('style',hs);2046 this._tt_exit_fullscreen__text.innerHTML="Exit Fullscreen";2047 this._tt_exit_fullscreen.appendChild(this._tt_exit_fullscreen__text);2048 me._tt_exit_fullscreen.ggIsActive=function() {2049 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2050 return this.parentNode.ggIsActive();2051 }2052 return false;2053 }2054 me._tt_exit_fullscreen.ggElementNodeId=function() {2055 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2056 return this.parentNode.ggElementNodeId();2057 }2058 return me.player.getCurrentNode();2059 }2060 me._tt_exit_fullscreen.ggCurrentLogicStateVisible = -1;2061 this._tt_exit_fullscreen.ggUpdateConditionTimer=function () {2062 var newLogicStateVisible;2063 if (2064 (me.elementMouseOver['button_image_normalscreen'] == true) && 2065 (me.player.getIsMobile() == false)2066 )2067 {2068 newLogicStateVisible = 0;2069 }2070 else {2071 newLogicStateVisible = -1;2072 }2073 if (me._tt_exit_fullscreen.ggCurrentLogicStateVisible != newLogicStateVisible) {2074 me._tt_exit_fullscreen.ggCurrentLogicStateVisible = newLogicStateVisible;2075 me._tt_exit_fullscreen.style[domTransition]='';2076 if (me._tt_exit_fullscreen.ggCurrentLogicStateVisible == 0) {2077 me._tt_exit_fullscreen.style.visibility=(Number(me._tt_exit_fullscreen.style.opacity)>0||!me._tt_exit_fullscreen.style.opacity)?'inherit':'hidden';2078 me._tt_exit_fullscreen.ggVisible=true;2079 }2080 else {2081 me._tt_exit_fullscreen.style.visibility="hidden";2082 me._tt_exit_fullscreen.ggVisible=false;2083 }2084 }2085 }2086 this._tt_exit_fullscreen.ggUpdatePosition=function () {2087 }2088 this._tt_exit_fullscreen_white=document.createElement('div');2089 this._tt_exit_fullscreen_white__text=document.createElement('div');2090 this._tt_exit_fullscreen_white.className='ggskin ggskin_textdiv';2091 this._tt_exit_fullscreen_white.ggTextDiv=this._tt_exit_fullscreen_white__text;2092 this._tt_exit_fullscreen_white.ggId="tt_exit_fullscreen_white";2093 this._tt_exit_fullscreen_white.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2094 this._tt_exit_fullscreen_white.ggVisible=true;2095 this._tt_exit_fullscreen_white.className='ggskin ggskin_text ';2096 this._tt_exit_fullscreen_white.ggType='text';2097 hs ='';2098 hs+='height : 18px;';2099 hs+='left : -1px;';2100 hs+='position : absolute;';2101 hs+='top : -1px;';2102 hs+='visibility : inherit;';2103 hs+='width : 148px;';2104 this._tt_exit_fullscreen_white.setAttribute('style',hs);2105 this._tt_exit_fullscreen_white.style[domTransform + 'Origin']='50% 50%';2106 hs ='position:absolute;';2107 hs+='left: 0px;';2108 hs+='top: 0px;';2109 hs+='width: 148px;';2110 hs+='height: 18px;';2111 hs+='border: 0px solid #000000;';2112 hs+='color: rgba(255,255,255,1);';2113 hs+='text-align: center;';2114 hs+='white-space: nowrap;';2115 hs+='padding: 0px 1px 0px 1px;';2116 hs+='overflow: hidden;';2117 this._tt_exit_fullscreen_white__text.setAttribute('style',hs);2118 this._tt_exit_fullscreen_white__text.innerHTML="Exit Fullscreen";2119 this._tt_exit_fullscreen_white.appendChild(this._tt_exit_fullscreen_white__text);2120 me._tt_exit_fullscreen_white.ggIsActive=function() {2121 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2122 return this.parentNode.ggIsActive();2123 }2124 return false;2125 }2126 me._tt_exit_fullscreen_white.ggElementNodeId=function() {2127 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2128 return this.parentNode.ggElementNodeId();2129 }2130 return me.player.getCurrentNode();2131 }2132 this._tt_exit_fullscreen_white.ggUpdatePosition=function () {2133 }2134 this._tt_exit_fullscreen.appendChild(this._tt_exit_fullscreen_white);2135 this._button_image_normalscreen.appendChild(this._tt_exit_fullscreen);2136 this._button_simplex_fullscreen.appendChild(this._button_image_normalscreen);2137 this._button_image_fullscreen=document.createElement('div');2138 this._button_image_fullscreen__img=document.createElement('img');2139 this._button_image_fullscreen__img.className='ggskin ggskin_svg';2140 this._button_image_fullscreen__img.setAttribute('src',basePath + 'images/button_image_fullscreen.svg');2141 this._button_image_fullscreen__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');2142 this._button_image_fullscreen__img['ondragstart']=function() { return false; };2143 this._button_image_fullscreen.appendChild(this._button_image_fullscreen__img);2144 this._button_image_fullscreen__imgo=document.createElement('img');2145 this._button_image_fullscreen__imgo.className='ggskin ggskin_svg';2146 this._button_image_fullscreen__imgo.setAttribute('src',basePath + 'images/button_image_fullscreen__o.svg');2147 this._button_image_fullscreen__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');2148 this._button_image_fullscreen__imgo['ondragstart']=function() { return false; };2149 this._button_image_fullscreen.appendChild(this._button_image_fullscreen__imgo);2150 this._button_image_fullscreen.ggId="button_image_fullscreen";2151 this._button_image_fullscreen.ggLeft=-32;2152 this._button_image_fullscreen.ggTop=-32;2153 this._button_image_fullscreen.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2154 this._button_image_fullscreen.ggVisible=true;2155 this._button_image_fullscreen.className='ggskin ggskin_svg ';2156 this._button_image_fullscreen.ggType='svg';2157 hs ='';2158 hs+='cursor : pointer;';2159 hs+='height : 32px;';2160 hs+='left : -32px;';2161 hs+='position : absolute;';2162 hs+='top : -32px;';2163 hs+='visibility : inherit;';2164 hs+='width : 32px;';2165 this._button_image_fullscreen.setAttribute('style',hs);2166 this._button_image_fullscreen.style[domTransform + 'Origin']='50% 50%';2167 me._button_image_fullscreen.ggIsActive=function() {2168 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2169 return this.parentNode.ggIsActive();2170 }2171 return false;2172 }2173 me._button_image_fullscreen.ggElementNodeId=function() {2174 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2175 return this.parentNode.ggElementNodeId();2176 }2177 return me.player.getCurrentNode();2178 }2179 this._button_image_fullscreen.onclick=function () {2180 me.player.enterFullscreen();2181 }2182 this._button_image_fullscreen.onmouseover=function () {2183 me._button_image_fullscreen__img.style.visibility='hidden';2184 me._button_image_fullscreen__imgo.style.visibility='inherit';2185 me.elementMouseOver['button_image_fullscreen']=true;2186 }2187 this._button_image_fullscreen.onmouseout=function () {2188 me._button_image_fullscreen__img.style.visibility='inherit';2189 me._button_image_fullscreen__imgo.style.visibility='hidden';2190 me.elementMouseOver['button_image_fullscreen']=false;2191 }2192 this._button_image_fullscreen.ontouchend=function () {2193 me.elementMouseOver['button_image_fullscreen']=false;2194 }2195 me._button_image_fullscreen.ggCurrentLogicStateVisible = -1;2196 this._button_image_fullscreen.ggUpdateConditionResize=function () {2197 var newLogicStateVisible;2198 if (2199 (me.player.getIsFullscreen() == true)2200 )2201 {2202 newLogicStateVisible = 0;2203 }2204 else {2205 newLogicStateVisible = -1;2206 }2207 if (me._button_image_fullscreen.ggCurrentLogicStateVisible != newLogicStateVisible) {2208 me._button_image_fullscreen.ggCurrentLogicStateVisible = newLogicStateVisible;2209 me._button_image_fullscreen.style[domTransition]='';2210 if (me._button_image_fullscreen.ggCurrentLogicStateVisible == 0) {2211 me._button_image_fullscreen.style.visibility="hidden";2212 me._button_image_fullscreen.ggVisible=false;2213 }2214 else {2215 me._button_image_fullscreen.style.visibility=(Number(me._button_image_fullscreen.style.opacity)>0||!me._button_image_fullscreen.style.opacity)?'inherit':'hidden';2216 me._button_image_fullscreen.ggVisible=true;2217 }2218 }2219 }2220 this._button_image_fullscreen.ggUpdatePosition=function () {2221 this.style[domTransition]='none';2222 if (this.parentNode) {2223 var w=this.parentNode.offsetWidth;2224 this.style.left=(this.ggLeft - 0 + w) + 'px';2225 var h=this.parentNode.offsetHeight;2226 this.style.top=(this.ggTop - 0 + h) + 'px';2227 }2228 me._button_image_fullscreen.ggUpdateConditionResize();2229 }2230 this._tt_enter_fullscreen=document.createElement('div');2231 this._tt_enter_fullscreen__text=document.createElement('div');2232 this._tt_enter_fullscreen.className='ggskin ggskin_textdiv';2233 this._tt_enter_fullscreen.ggTextDiv=this._tt_enter_fullscreen__text;2234 this._tt_enter_fullscreen.ggId="tt_enter_fullscreen";2235 this._tt_enter_fullscreen.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2236 this._tt_enter_fullscreen.ggVisible=false;2237 this._tt_enter_fullscreen.className='ggskin ggskin_text ';2238 this._tt_enter_fullscreen.ggType='text';2239 hs ='';2240 hs+='height : 18px;';2241 hs+='left : -59px;';2242 hs+='position : absolute;';2243 hs+='top : 36px;';2244 hs+='visibility : hidden;';2245 hs+='width : 148px;';2246 this._tt_enter_fullscreen.setAttribute('style',hs);2247 this._tt_enter_fullscreen.style[domTransform + 'Origin']='50% 50%';2248 hs ='position:absolute;';2249 hs+='left: 0px;';2250 hs+='top: 0px;';2251 hs+='width: 148px;';2252 hs+='height: 18px;';2253 hs+='border: 0px solid #000000;';2254 hs+='color: rgba(0,0,0,1);';2255 hs+='text-align: center;';2256 hs+='white-space: nowrap;';2257 hs+='padding: 0px 1px 0px 1px;';2258 hs+='overflow: hidden;';2259 this._tt_enter_fullscreen__text.setAttribute('style',hs);2260 this._tt_enter_fullscreen__text.innerHTML="Enter Fullscreen";2261 this._tt_enter_fullscreen.appendChild(this._tt_enter_fullscreen__text);2262 me._tt_enter_fullscreen.ggIsActive=function() {2263 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2264 return this.parentNode.ggIsActive();2265 }2266 return false;2267 }2268 me._tt_enter_fullscreen.ggElementNodeId=function() {2269 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2270 return this.parentNode.ggElementNodeId();2271 }2272 return me.player.getCurrentNode();2273 }2274 me._tt_enter_fullscreen.ggCurrentLogicStateVisible = -1;2275 this._tt_enter_fullscreen.ggUpdateConditionTimer=function () {2276 var newLogicStateVisible;2277 if (2278 (me.elementMouseOver['button_image_fullscreen'] == true) && 2279 (me.player.getIsMobile() == false)2280 )2281 {2282 newLogicStateVisible = 0;2283 }2284 else {2285 newLogicStateVisible = -1;2286 }2287 if (me._tt_enter_fullscreen.ggCurrentLogicStateVisible != newLogicStateVisible) {2288 me._tt_enter_fullscreen.ggCurrentLogicStateVisible = newLogicStateVisible;2289 me._tt_enter_fullscreen.style[domTransition]='';2290 if (me._tt_enter_fullscreen.ggCurrentLogicStateVisible == 0) {2291 me._tt_enter_fullscreen.style.visibility=(Number(me._tt_enter_fullscreen.style.opacity)>0||!me._tt_enter_fullscreen.style.opacity)?'inherit':'hidden';2292 me._tt_enter_fullscreen.ggVisible=true;2293 }2294 else {2295 me._tt_enter_fullscreen.style.visibility="hidden";2296 me._tt_enter_fullscreen.ggVisible=false;2297 }2298 }2299 }2300 this._tt_enter_fullscreen.ggUpdatePosition=function () {2301 }2302 this._tt_enter_fullscreen_white=document.createElement('div');2303 this._tt_enter_fullscreen_white__text=document.createElement('div');2304 this._tt_enter_fullscreen_white.className='ggskin ggskin_textdiv';2305 this._tt_enter_fullscreen_white.ggTextDiv=this._tt_enter_fullscreen_white__text;2306 this._tt_enter_fullscreen_white.ggId="tt_enter_fullscreen_white";2307 this._tt_enter_fullscreen_white.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2308 this._tt_enter_fullscreen_white.ggVisible=true;2309 this._tt_enter_fullscreen_white.className='ggskin ggskin_text ';2310 this._tt_enter_fullscreen_white.ggType='text';2311 hs ='';2312 hs+='height : 18px;';2313 hs+='left : -1px;';2314 hs+='position : absolute;';2315 hs+='top : -1px;';2316 hs+='visibility : inherit;';2317 hs+='width : 148px;';2318 this._tt_enter_fullscreen_white.setAttribute('style',hs);2319 this._tt_enter_fullscreen_white.style[domTransform + 'Origin']='50% 50%';2320 hs ='position:absolute;';2321 hs+='left: 0px;';2322 hs+='top: 0px;';2323 hs+='width: 148px;';2324 hs+='height: 18px;';2325 hs+='border: 0px solid #000000;';2326 hs+='color: rgba(255,255,255,1);';2327 hs+='text-align: center;';2328 hs+='white-space: nowrap;';2329 hs+='padding: 0px 1px 0px 1px;';2330 hs+='overflow: hidden;';2331 this._tt_enter_fullscreen_white__text.setAttribute('style',hs);2332 this._tt_enter_fullscreen_white__text.innerHTML="Enter Fullscreen";2333 this._tt_enter_fullscreen_white.appendChild(this._tt_enter_fullscreen_white__text);2334 me._tt_enter_fullscreen_white.ggIsActive=function() {2335 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2336 return this.parentNode.ggIsActive();2337 }2338 return false;2339 }2340 me._tt_enter_fullscreen_white.ggElementNodeId=function() {2341 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2342 return this.parentNode.ggElementNodeId();2343 }2344 return me.player.getCurrentNode();2345 }2346 this._tt_enter_fullscreen_white.ggUpdatePosition=function () {2347 }2348 this._tt_enter_fullscreen.appendChild(this._tt_enter_fullscreen_white);2349 this._button_image_fullscreen.appendChild(this._tt_enter_fullscreen);2350 this._button_simplex_fullscreen.appendChild(this._button_image_fullscreen);2351 this._controller.appendChild(this._button_simplex_fullscreen);2352 this.divSkin.appendChild(this._controller);2353 this._controller_show=document.createElement('div');2354 this._controller_show__img=document.createElement('img');2355 this._controller_show__img.className='ggskin ggskin_svg';2356 this._controller_show__img.setAttribute('src',basePath + 'images/controller_show.svg');2357 this._controller_show__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');2358 this._controller_show__img['ondragstart']=function() { return false; };2359 this._controller_show.appendChild(this._controller_show__img);2360 this._controller_show.ggId="controller_show";2361 this._controller_show.ggLeft=-16;2362 this._controller_show.ggTop=-42;2363 this._controller_show.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2364 this._controller_show.ggVisible=true;2365 this._controller_show.className='ggskin ggskin_svg ';2366 this._controller_show.ggType='svg';2367 hs ='';2368 hs+='cursor : pointer;';2369 hs+='height : 32px;';2370 hs+='left : -16px;';2371 hs+='opacity : 0;';2372 hs+='position : absolute;';2373 hs+='top : -42px;';2374 hs+='visibility : hidden;';2375 hs+='width : 32px;';2376 this._controller_show.setAttribute('style',hs);2377 this._controller_show.style[domTransform + 'Origin']='50% 50%';2378 me._controller_show.ggIsActive=function() {2379 return false;2380 }2381 me._controller_show.ggElementNodeId=function() {2382 return me.player.getCurrentNode();2383 }2384 this._controller_show.onclick=function () {2385 me._controller_hide_timer.ggTimeout=Number("5") * 1000.0;2386 me._controller_hide_timer.ggTimestamp=me.ggCurrentTime;2387 }2388 this._controller_show.onmouseover=function () {2389 me.elementMouseOver['controller_show']=true;2390 }2391 this._controller_show.onmouseout=function () {2392 me.elementMouseOver['controller_show']=false;2393 }2394 this._controller_show.ontouchend=function () {2395 me.elementMouseOver['controller_show']=false;2396 }2397 me._controller_show.ggCurrentLogicStateScaling = -1;2398 this._controller_show.ggUpdateConditionTimer=function () {2399 var newLogicStateScaling;2400 if (2401 (me.elementMouseOver['controller_show'] == true)2402 )2403 {2404 newLogicStateScaling = 0;2405 }2406 else {2407 newLogicStateScaling = -1;2408 }2409 if (me._controller_show.ggCurrentLogicStateScaling != newLogicStateScaling) {2410 me._controller_show.ggCurrentLogicStateScaling = newLogicStateScaling;2411 me._controller_show.style[domTransition]='' + cssPrefix + 'transform none';2412 if (me._controller_show.ggCurrentLogicStateScaling == 0) {2413 me._controller_show.ggParameter.sx = 1.2;2414 me._controller_show.ggParameter.sy = 1.2;2415 me._controller_show.style[domTransform]=parameterToTransform(me._controller_show.ggParameter);2416 }2417 else {2418 me._controller_show.ggParameter.sx = 1;2419 me._controller_show.ggParameter.sy = 1;2420 me._controller_show.style[domTransform]=parameterToTransform(me._controller_show.ggParameter);2421 }2422 }2423 }2424 this._controller_show.ggUpdatePosition=function () {2425 this.style[domTransition]='none';2426 if (this.parentNode) {2427 var w=this.parentNode.offsetWidth;2428 this.style.left=(this.ggLeft - 0 + w/2) + 'px';2429 var h=this.parentNode.offsetHeight;2430 this.style.top=(this.ggTop - 0 + h) + 'px';2431 }2432 }2433 this.divSkin.appendChild(this._controller_show);2434 this._hide_template_timers=document.createElement('div');2435 this._hide_template_timers.ggId="hide_template_timers";2436 this._hide_template_timers.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2437 this._hide_template_timers.ggVisible=false;2438 this._hide_template_timers.className='ggskin ggskin_container ';2439 this._hide_template_timers.ggType='container';2440 hs ='';2441 hs+='height : 59px;';2442 hs+='left : 0px;';2443 hs+='overflow : hidden;';2444 hs+='position : absolute;';2445 hs+='top : 0px;';2446 hs+='visibility : hidden;';2447 hs+='width : 171px;';2448 this._hide_template_timers.setAttribute('style',hs);2449 this._hide_template_timers.style[domTransform + 'Origin']='50% 50%';2450 me._hide_template_timers.ggIsActive=function() {2451 return false;2452 }2453 me._hide_template_timers.ggElementNodeId=function() {2454 return me.player.getCurrentNode();2455 }2456 this._hide_template_timers.ggUpdatePosition=function () {2457 }2458 this._markertemplate=document.createElement('div');2459 this._markertemplate.ggMarkerNodeId='';2460 nodeMarker.push(this._markertemplate);2461 this._markertemplate.ggId="markertemplate";2462 this._markertemplate.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2463 this._markertemplate.ggVisible=true;2464 this._markertemplate.className='ggskin ggskin_mark ';2465 this._markertemplate.ggType='mark';2466 hs ='';2467 hs+='height : 5px;';2468 hs+='left : 60px;';2469 hs+='position : absolute;';2470 hs+='top : 0px;';2471 hs+='visibility : inherit;';2472 hs+='width : 5px;';2473 this._markertemplate.setAttribute('style',hs);2474 this._markertemplate.style[domTransform + 'Origin']='50% 50%';2475 me._markertemplate.ggIsActive=function() {2476 return this.ggIsMarkerActive==true;2477 }2478 me._markertemplate.ggElementNodeId=function() {2479 var hs=String(this.ggMarkerNodeId);2480 if (hs.charAt(0)=='{') {2481 return hs.substr(1, hs.length - 2);2482 }2483 return '';2484 }2485 this._markertemplate.onmouseover=function () {2486 me._marker_title.style[domTransition]='none';2487 me._marker_title.style.visibility=(Number(me._marker_title.style.opacity)>0||!me._marker_title.style.opacity)?'inherit':'hidden';2488 me._marker_title.ggVisible=true;2489 }2490 this._markertemplate.onmouseout=function () {2491 me._marker_title.style[domTransition]='none';2492 me._marker_title.style.visibility='hidden';2493 me._marker_title.ggVisible=false;2494 }2495 this._markertemplate.ggUpdateConditionNodeChange=function () {2496 me._markertemplate__normal.ggNodeChangeMain();2497 me._markertemplate__active.ggNodeChangeMain();2498 }2499 this._markertemplate.ggUpdatePosition=function () {2500 }2501 this._markertemplate.ggNodeChange=function () {2502 me._markertemplate.ggUpdateConditionNodeChange();2503 }2504 this._marker_title=document.createElement('div');2505 this._marker_title__text=document.createElement('div');2506 this._marker_title.className='ggskin ggskin_textdiv';2507 this._marker_title.ggTextDiv=this._marker_title__text;2508 this._marker_title.ggId="marker_title";2509 this._marker_title.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2510 this._marker_title.ggVisible=false;2511 this._marker_title.className='ggskin ggskin_text ';2512 this._marker_title.ggType='text';2513 hs ='';2514 hs+='height : 17px;';2515 hs+='left : -60px;';2516 hs+='position : absolute;';2517 hs+='top : 35px;';2518 hs+='visibility : hidden;';2519 hs+='width : 145px;';2520 this._marker_title.setAttribute('style',hs);2521 this._marker_title.style[domTransform + 'Origin']='50% 50%';2522 hs ='position:absolute;';2523 hs+='left: 0px;';2524 hs+='top: 0px;';2525 hs+='width: auto;';2526 hs+='height: auto;';2527 hs+='background: #ffffff;';2528 hs+='background: rgba(255,255,255,0.705882);';2529 hs+='border: 1px solid #000000;';2530 hs+='border-radius: 5px;';2531 hs+=cssPrefix + 'border-radius: 5px;';2532 hs+='color: rgba(0,0,0,1);';2533 hs+='text-align: center;';2534 hs+='white-space: nowrap;';2535 hs+='padding: 1px 2px 1px 2px;';2536 hs+='overflow: hidden;';2537 this._marker_title__text.setAttribute('style',hs);2538 this._marker_title.ggUpdateText=function() {2539 var hs=me.ggUserdata.title;2540 if (hs!=this.ggText) {2541 this.ggText=hs;2542 this.ggTextDiv.innerHTML=hs;2543 if (this.ggUpdatePosition) this.ggUpdatePosition();2544 }2545 }2546 me._marker_title.ggUpdateText();2547 this._marker_title.appendChild(this._marker_title__text);2548 me._marker_title.ggIsActive=function() {2549 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2550 return this.parentNode.ggIsActive();2551 }2552 return false;2553 }2554 me._marker_title.ggElementNodeId=function() {2555 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2556 return this.parentNode.ggElementNodeId();2557 }2558 return me.player.getCurrentNode();2559 }2560 this._marker_title.ggUpdatePosition=function () {2561 this.style[domTransition]='none';2562 this.ggTextDiv.style.left=((149-this.ggTextDiv.offsetWidth)/2) + 'px';2563 }2564 this._markertemplate.appendChild(this._marker_title);2565 this._hide_template_timers.appendChild(this._markertemplate);2566 this._controller_hide_timer=document.createElement('div');2567 this._controller_hide_timer.ggTimestamp=this.ggCurrentTime;2568 this._controller_hide_timer.ggLastIsActive=true;2569 this._controller_hide_timer.ggTimeout=5000;2570 this._controller_hide_timer.ggId="controller_hide_timer";2571 this._controller_hide_timer.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2572 this._controller_hide_timer.ggVisible=true;2573 this._controller_hide_timer.className='ggskin ggskin_timer ';2574 this._controller_hide_timer.ggType='timer';2575 hs ='';2576 hs+='height : 43px;';2577 hs+='left : 0px;';2578 hs+='position : absolute;';2579 hs+='top : 0px;';2580 hs+='visibility : inherit;';2581 hs+='width : 76px;';2582 this._controller_hide_timer.setAttribute('style',hs);2583 this._controller_hide_timer.style[domTransform + 'Origin']='50% 50%';2584 me._controller_hide_timer.ggIsActive=function() {2585 return (me._controller_hide_timer.ggTimestamp + me._controller_hide_timer.ggTimeout) >= me.ggCurrentTime;2586 }2587 me._controller_hide_timer.ggElementNodeId=function() {2588 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2589 return this.parentNode.ggElementNodeId();2590 }2591 return me.player.getCurrentNode();2592 }2593 this._controller_hide_timer.ggActivate=function () {2594 me._controller_show.style[domTransition]='none';2595 me._controller_show.style.opacity='0';2596 me._controller_show.style.visibility='hidden';2597 if (me.player.transitionsDisabled) {2598 me._controller.style[domTransition]='none';2599 } else {2600 me._controller.style[domTransition]='all 500ms ease-out 0ms';2601 }2602 me._controller.style.opacity='1';2603 me._controller.style.visibility=me._controller.ggVisible?'inherit':'hidden';2604 }2605 this._controller_hide_timer.ggDeactivate=function () {2606 if (me.player.transitionsDisabled) {2607 me._controller.style[domTransition]='none';2608 } else {2609 me._controller.style[domTransition]='all 500ms ease-out 0ms';2610 }2611 me._controller.style.opacity='0';2612 me._controller.style.visibility='hidden';2613 if (me.player.transitionsDisabled) {2614 me._controller_show.style[domTransition]='none';2615 } else {2616 me._controller_show.style[domTransition]='all 500ms ease-out 0ms';2617 }2618 me._controller_show.style.opacity='1';2619 me._controller_show.style.visibility=me._controller_show.ggVisible?'inherit':'hidden';2620 }2621 this._controller_hide_timer.ggUpdatePosition=function () {2622 }2623 this._hide_template_timers.appendChild(this._controller_hide_timer);2624 this.divSkin.appendChild(this._hide_template_timers);2625 this._loading=document.createElement('div');2626 this._loading.ggId="loading";2627 this._loading.ggLeft=-105;2628 this._loading.ggTop=-30;2629 this._loading.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2630 this._loading.ggVisible=true;2631 this._loading.className='ggskin ggskin_container ';2632 this._loading.ggType='container';2633 hs ='';2634 hs+='height : 60px;';2635 hs+='left : -105px;';2636 hs+='position : absolute;';2637 hs+='top : -30px;';2638 hs+='visibility : inherit;';2639 hs+='width : 210px;';2640 this._loading.setAttribute('style',hs);2641 this._loading.style[domTransform + 'Origin']='50% 50%';2642 me._loading.ggIsActive=function() {2643 return false;2644 }2645 me._loading.ggElementNodeId=function() {2646 return me.player.getCurrentNode();2647 }2648 this._loading.onclick=function () {2649 me._loading.style[domTransition]='none';2650 me._loading.style.visibility='hidden';2651 me._loading.ggVisible=false;2652 }2653 this._loading.ggUpdatePosition=function () {2654 this.style[domTransition]='none';2655 if (this.parentNode) {2656 var w=this.parentNode.offsetWidth;2657 this.style.left=(this.ggLeft - 0 + w/2) + 'px';2658 var h=this.parentNode.offsetHeight;2659 this.style.top=(this.ggTop - 0 + h/2) + 'px';2660 }2661 }2662 this._loadingbg=document.createElement('div');2663 this._loadingbg.ggId="loadingbg";2664 this._loadingbg.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2665 this._loadingbg.ggVisible=true;2666 this._loadingbg.className='ggskin ggskin_rectangle ';2667 this._loadingbg.ggType='rectangle';2668 hs ='';2669 hs+=cssPrefix + 'border-radius : 10px;';2670 hs+='border-radius : 10px;';2671 hs+='background : rgba(0,0,0,0.509804);';2672 hs+='border : 2px solid #ffffff;';2673 hs+='height : 58px;';2674 hs+='left : -1px;';2675 hs+='position : absolute;';2676 hs+='top : -1px;';2677 hs+='visibility : inherit;';2678 hs+='width : 208px;';2679 this._loadingbg.setAttribute('style',hs);2680 this._loadingbg.style[domTransform + 'Origin']='50% 50%';2681 me._loadingbg.ggIsActive=function() {2682 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2683 return this.parentNode.ggIsActive();2684 }2685 return false;2686 }2687 me._loadingbg.ggElementNodeId=function() {2688 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2689 return this.parentNode.ggElementNodeId();2690 }2691 return me.player.getCurrentNode();2692 }2693 this._loadingbg.ggUpdatePosition=function () {2694 }2695 this._loading.appendChild(this._loadingbg);2696 this._loadingtext=document.createElement('div');2697 this._loadingtext__text=document.createElement('div');2698 this._loadingtext.className='ggskin ggskin_textdiv';2699 this._loadingtext.ggTextDiv=this._loadingtext__text;2700 this._loadingtext.ggId="loadingtext";2701 this._loadingtext.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2702 this._loadingtext.ggVisible=true;2703 this._loadingtext.className='ggskin ggskin_text ';2704 this._loadingtext.ggType='text';2705 hs ='';2706 hs+='height : 23px;';2707 hs+='left : 16px;';2708 hs+='position : absolute;';2709 hs+='top : 12px;';2710 hs+='visibility : inherit;';2711 hs+='width : 176px;';2712 this._loadingtext.setAttribute('style',hs);2713 this._loadingtext.style[domTransform + 'Origin']='0% 50%';2714 hs ='position:absolute;';2715 hs+='left: 0px;';2716 hs+='top: 0px;';2717 hs+='width: auto;';2718 hs+='height: auto;';2719 hs+='border: 0px solid #000000;';2720 hs+='color: rgba(255,255,255,1);';2721 hs+='text-align: left;';2722 hs+='white-space: nowrap;';2723 hs+='padding: 0px 1px 0px 1px;';2724 hs+='overflow: hidden;';2725 this._loadingtext__text.setAttribute('style',hs);2726 this._loadingtext.ggUpdateText=function() {2727 var hs="Loading... "+(me.player.getPercentLoaded()*100.0).toFixed(0)+"%";2728 if (hs!=this.ggText) {2729 this.ggText=hs;2730 this.ggTextDiv.innerHTML=hs;2731 if (this.ggUpdatePosition) this.ggUpdatePosition();2732 }2733 }2734 me._loadingtext.ggUpdateText();2735 this._loadingtext.appendChild(this._loadingtext__text);2736 me._loadingtext.ggIsActive=function() {2737 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2738 return this.parentNode.ggIsActive();2739 }2740 return false;2741 }2742 me._loadingtext.ggElementNodeId=function() {2743 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2744 return this.parentNode.ggElementNodeId();2745 }2746 return me.player.getCurrentNode();2747 }2748 this._loadingtext.ggUpdatePosition=function () {2749 }2750 this._loading.appendChild(this._loadingtext);2751 this._loadingbar=document.createElement('div');2752 this._loadingbar.ggId="loadingbar";2753 this._loadingbar.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2754 this._loadingbar.ggVisible=true;2755 this._loadingbar.className='ggskin ggskin_rectangle ';2756 this._loadingbar.ggType='rectangle';2757 hs ='';2758 hs+=cssPrefix + 'border-radius : 5px;';2759 hs+='border-radius : 5px;';2760 hs+='background : #ffffff;';2761 hs+='border : 1px solid #808080;';2762 hs+='height : 12px;';2763 hs+='left : 15px;';2764 hs+='position : absolute;';2765 hs+='top : 35px;';2766 hs+='visibility : inherit;';2767 hs+='width : 181px;';2768 this._loadingbar.setAttribute('style',hs);2769 this._loadingbar.style[domTransform + 'Origin']='0% 50%';2770 me._loadingbar.ggIsActive=function() {2771 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2772 return this.parentNode.ggIsActive();2773 }2774 return false;2775 }2776 me._loadingbar.ggElementNodeId=function() {2777 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2778 return this.parentNode.ggElementNodeId();2779 }2780 return me.player.getCurrentNode();2781 }2782 this._loadingbar.ggUpdatePosition=function () {2783 }2784 this._loading.appendChild(this._loadingbar);2785 this.divSkin.appendChild(this._loading);2786 this._screentint=document.createElement('div');2787 this._screentint.ggId="screentint";2788 this._screentint.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2789 this._screentint.ggVisible=false;2790 this._screentint.className='ggskin ggskin_rectangle ';2791 this._screentint.ggType='rectangle';2792 hs ='';2793 hs+='background : rgba(0,0,0,0.509804);';2794 hs+='border : 1px solid #000000;';2795 hs+='height : 100%;';2796 hs+='left : 0%;';2797 hs+='position : absolute;';2798 hs+='top : 0%;';2799 hs+='visibility : hidden;';2800 hs+='width : 100%;';2801 this._screentint.setAttribute('style',hs);2802 this._screentint.style[domTransform + 'Origin']='50% 50%';2803 me._screentint.ggIsActive=function() {2804 return false;2805 }2806 me._screentint.ggElementNodeId=function() {2807 return me.player.getCurrentNode();2808 }2809 this._screentint.ggUpdatePosition=function () {2810 }2811 this.divSkin.appendChild(this._screentint);2812 this._userdata=document.createElement('div');2813 this._userdata.ggId="userdata";2814 this._userdata.ggLeft=-120;2815 this._userdata.ggTop=-80;2816 this._userdata.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2817 this._userdata.ggVisible=false;2818 this._userdata.className='ggskin ggskin_container ';2819 this._userdata.ggType='container';2820 hs ='';2821 hs+='cursor : pointer;';2822 hs+='height : 140px;';2823 hs+='left : -120px;';2824 hs+='position : absolute;';2825 hs+='top : -80px;';2826 hs+='visibility : hidden;';2827 hs+='width : 240px;';2828 this._userdata.setAttribute('style',hs);2829 this._userdata.style[domTransform + 'Origin']='50% 50%';2830 me._userdata.ggIsActive=function() {2831 return false;2832 }2833 me._userdata.ggElementNodeId=function() {2834 return me.player.getCurrentNode();2835 }2836 this._userdata.ggUpdatePosition=function () {2837 this.style[domTransition]='none';2838 if (this.parentNode) {2839 var w=this.parentNode.offsetWidth;2840 this.style.left=(this.ggLeft - 0 + w/2) + 'px';2841 var h=this.parentNode.offsetHeight;2842 this.style.top=(this.ggTop - 0 + h/2) + 'px';2843 }2844 }2845 this._userdatabg=document.createElement('div');2846 this._userdatabg.ggId="userdatabg";2847 this._userdatabg.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2848 this._userdatabg.ggVisible=true;2849 this._userdatabg.className='ggskin ggskin_rectangle ';2850 this._userdatabg.ggType='rectangle';2851 hs ='';2852 hs+=cssPrefix + 'border-radius : 10px;';2853 hs+='border-radius : 10px;';2854 hs+='background : rgba(0,0,0,0.509804);';2855 hs+='border : 2px solid #ffffff;';2856 hs+='height : 138px;';2857 hs+='left : -1px;';2858 hs+='position : absolute;';2859 hs+='top : -1px;';2860 hs+='visibility : inherit;';2861 hs+='width : 238px;';2862 this._userdatabg.setAttribute('style',hs);2863 this._userdatabg.style[domTransform + 'Origin']='50% 50%';2864 me._userdatabg.ggIsActive=function() {2865 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2866 return this.parentNode.ggIsActive();2867 }2868 return false;2869 }2870 me._userdatabg.ggElementNodeId=function() {2871 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2872 return this.parentNode.ggElementNodeId();2873 }2874 return me.player.getCurrentNode();2875 }2876 this._userdatabg.ggUpdatePosition=function () {2877 }2878 this._userdata.appendChild(this._userdatabg);2879 this._title=document.createElement('div');2880 this._title__text=document.createElement('div');2881 this._title.className='ggskin ggskin_textdiv';2882 this._title.ggTextDiv=this._title__text;2883 this._title.ggId="title";2884 this._title.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2885 this._title.ggVisible=true;2886 this._title.className='ggskin ggskin_text ';2887 this._title.ggType='text';2888 hs ='';2889 hs+='height : 20px;';2890 hs+='left : 10px;';2891 hs+='position : absolute;';2892 hs+='top : 10px;';2893 hs+='visibility : inherit;';2894 hs+='width : 218px;';2895 this._title.setAttribute('style',hs);2896 this._title.style[domTransform + 'Origin']='50% 50%';2897 hs ='position:absolute;';2898 hs+='left: 0px;';2899 hs+='top: 0px;';2900 hs+='width: 218px;';2901 hs+='height: 20px;';2902 hs+='border: 0px solid #000000;';2903 hs+='color: rgba(255,255,255,1);';2904 hs+='text-align: left;';2905 hs+='white-space: nowrap;';2906 hs+='padding: 0px 1px 0px 1px;';2907 hs+='overflow: hidden;';2908 this._title__text.setAttribute('style',hs);2909 this._title.ggUpdateText=function() {2910 var hs="<b>"+me.ggUserdata.title+"<\/b>";2911 if (hs!=this.ggText) {2912 this.ggText=hs;2913 this.ggTextDiv.innerHTML=hs;2914 if (this.ggUpdatePosition) this.ggUpdatePosition();2915 }2916 }2917 me._title.ggUpdateText();2918 this._title.appendChild(this._title__text);2919 me._title.ggIsActive=function() {2920 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2921 return this.parentNode.ggIsActive();2922 }2923 return false;2924 }2925 me._title.ggElementNodeId=function() {2926 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2927 return this.parentNode.ggElementNodeId();2928 }2929 return me.player.getCurrentNode();2930 }2931 this._title.ggUpdatePosition=function () {2932 }2933 this._userdata.appendChild(this._title);2934 this._description=document.createElement('div');2935 this._description__text=document.createElement('div');2936 this._description.className='ggskin ggskin_textdiv';2937 this._description.ggTextDiv=this._description__text;2938 this._description.ggId="description";2939 this._description.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2940 this._description.ggVisible=true;2941 this._description.className='ggskin ggskin_text ';2942 this._description.ggType='text';2943 hs ='';2944 hs+='height : 20px;';2945 hs+='left : 10px;';2946 hs+='position : absolute;';2947 hs+='top : 30px;';2948 hs+='visibility : inherit;';2949 hs+='width : 218px;';2950 this._description.setAttribute('style',hs);2951 this._description.style[domTransform + 'Origin']='50% 50%';2952 hs ='position:absolute;';2953 hs+='left: 0px;';2954 hs+='top: 0px;';2955 hs+='width: 218px;';2956 hs+='height: 20px;';2957 hs+='border: 0px solid #000000;';2958 hs+='color: rgba(255,255,255,1);';2959 hs+='text-align: left;';2960 hs+='white-space: nowrap;';2961 hs+='padding: 0px 1px 0px 1px;';2962 hs+='overflow: hidden;';2963 this._description__text.setAttribute('style',hs);2964 this._description.ggUpdateText=function() {2965 var hs=me.ggUserdata.description;2966 if (hs!=this.ggText) {2967 this.ggText=hs;2968 this.ggTextDiv.innerHTML=hs;2969 if (this.ggUpdatePosition) this.ggUpdatePosition();2970 }2971 }2972 me._description.ggUpdateText();2973 this._description.appendChild(this._description__text);2974 me._description.ggIsActive=function() {2975 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2976 return this.parentNode.ggIsActive();2977 }2978 return false;2979 }2980 me._description.ggElementNodeId=function() {2981 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2982 return this.parentNode.ggElementNodeId();2983 }2984 return me.player.getCurrentNode();2985 }2986 this._description.ggUpdatePosition=function () {2987 }2988 this._userdata.appendChild(this._description);2989 this._author=document.createElement('div');2990 this._author__text=document.createElement('div');2991 this._author.className='ggskin ggskin_textdiv';2992 this._author.ggTextDiv=this._author__text;2993 this._author.ggId="author";2994 this._author.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2995 this._author.ggVisible=true;2996 this._author.className='ggskin ggskin_text ';2997 this._author.ggType='text';2998 hs ='';2999 hs+='height : 20px;';3000 hs+='left : 10px;';3001 hs+='position : absolute;';3002 hs+='top : 50px;';3003 hs+='visibility : inherit;';3004 hs+='width : 218px;';3005 this._author.setAttribute('style',hs);3006 this._author.style[domTransform + 'Origin']='50% 50%';3007 hs ='position:absolute;';3008 hs+='left: 0px;';3009 hs+='top: 0px;';3010 hs+='width: 218px;';3011 hs+='height: 20px;';3012 hs+='border: 0px solid #000000;';3013 hs+='color: rgba(255,255,255,1);';3014 hs+='text-align: left;';3015 hs+='white-space: nowrap;';3016 hs+='padding: 0px 1px 0px 1px;';3017 hs+='overflow: hidden;';3018 this._author__text.setAttribute('style',hs);3019 this._author.ggUpdateText=function() {3020 var hs=me.ggUserdata.author;3021 if (hs!=this.ggText) {3022 this.ggText=hs;3023 this.ggTextDiv.innerHTML=hs;3024 if (this.ggUpdatePosition) this.ggUpdatePosition();3025 }3026 }3027 me._author.ggUpdateText();3028 this._author.appendChild(this._author__text);3029 me._author.ggIsActive=function() {3030 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3031 return this.parentNode.ggIsActive();3032 }3033 return false;3034 }3035 me._author.ggElementNodeId=function() {3036 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3037 return this.parentNode.ggElementNodeId();3038 }3039 return me.player.getCurrentNode();3040 }3041 this._author.ggUpdatePosition=function () {3042 }3043 this._userdata.appendChild(this._author);3044 this._datetime=document.createElement('div');3045 this._datetime__text=document.createElement('div');3046 this._datetime.className='ggskin ggskin_textdiv';3047 this._datetime.ggTextDiv=this._datetime__text;3048 this._datetime.ggId="datetime";3049 this._datetime.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3050 this._datetime.ggVisible=true;3051 this._datetime.className='ggskin ggskin_text ';3052 this._datetime.ggType='text';3053 hs ='';3054 hs+='height : 23px;';3055 hs+='left : 10px;';3056 hs+='position : absolute;';3057 hs+='top : 70px;';3058 hs+='visibility : inherit;';3059 hs+='width : 218px;';3060 this._datetime.setAttribute('style',hs);3061 this._datetime.style[domTransform + 'Origin']='50% 50%';3062 hs ='position:absolute;';3063 hs+='left: 0px;';3064 hs+='top: 0px;';3065 hs+='width: auto;';3066 hs+='height: auto;';3067 hs+='border: 0px solid #000000;';3068 hs+='color: rgba(255,255,255,1);';3069 hs+='text-align: left;';3070 hs+='white-space: nowrap;';3071 hs+='padding: 0px 1px 0px 1px;';3072 hs+='overflow: hidden;';3073 this._datetime__text.setAttribute('style',hs);3074 this._datetime.ggUpdateText=function() {3075 var hs=me.ggUserdata.datetime;3076 if (hs!=this.ggText) {3077 this.ggText=hs;3078 this.ggTextDiv.innerHTML=hs;3079 if (this.ggUpdatePosition) this.ggUpdatePosition();3080 }3081 }3082 me._datetime.ggUpdateText();3083 this._datetime.appendChild(this._datetime__text);3084 me._datetime.ggIsActive=function() {3085 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3086 return this.parentNode.ggIsActive();3087 }3088 return false;3089 }3090 me._datetime.ggElementNodeId=function() {3091 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3092 return this.parentNode.ggElementNodeId();3093 }3094 return me.player.getCurrentNode();3095 }3096 this._datetime.ggUpdatePosition=function () {3097 }3098 this._userdata.appendChild(this._datetime);3099 this._copyright=document.createElement('div');3100 this._copyright__text=document.createElement('div');3101 this._copyright.className='ggskin ggskin_textdiv';3102 this._copyright.ggTextDiv=this._copyright__text;3103 this._copyright.ggId="copyright";3104 this._copyright.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3105 this._copyright.ggVisible=true;3106 this._copyright.className='ggskin ggskin_text ';3107 this._copyright.ggType='text';3108 hs ='';3109 hs+='height : 23px;';3110 hs+='left : 10px;';3111 hs+='position : absolute;';3112 hs+='top : 110px;';3113 hs+='visibility : inherit;';3114 hs+='width : 218px;';3115 this._copyright.setAttribute('style',hs);3116 this._copyright.style[domTransform + 'Origin']='50% 50%';3117 hs ='position:absolute;';3118 hs+='left: 0px;';3119 hs+='top: 0px;';3120 hs+='width: auto;';3121 hs+='height: auto;';3122 hs+='border: 0px solid #000000;';3123 hs+='color: rgba(255,255,255,1);';3124 hs+='text-align: left;';3125 hs+='white-space: nowrap;';3126 hs+='padding: 0px 1px 0px 1px;';3127 hs+='overflow: hidden;';3128 this._copyright__text.setAttribute('style',hs);3129 this._copyright.ggUpdateText=function() {3130 var hs="© "+me.ggUserdata.copyright;3131 if (hs!=this.ggText) {3132 this.ggText=hs;3133 this.ggTextDiv.innerHTML=hs;3134 if (this.ggUpdatePosition) this.ggUpdatePosition();3135 }3136 }3137 me._copyright.ggUpdateText();3138 this._copyright.appendChild(this._copyright__text);3139 me._copyright.ggIsActive=function() {3140 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3141 return this.parentNode.ggIsActive();3142 }3143 return false;3144 }3145 me._copyright.ggElementNodeId=function() {3146 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3147 return this.parentNode.ggElementNodeId();3148 }3149 return me.player.getCurrentNode();3150 }3151 this._copyright.ggUpdatePosition=function () {3152 }3153 this._userdata.appendChild(this._copyright);3154 this._userdata_close=document.createElement('div');3155 this._userdata_close__img=document.createElement('img');3156 this._userdata_close__img.className='ggskin ggskin_svg';3157 this._userdata_close__img.setAttribute('src',basePath + 'images/userdata_close.svg');3158 this._userdata_close__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');3159 this._userdata_close__img['ondragstart']=function() { return false; };3160 this._userdata_close.appendChild(this._userdata_close__img);3161 this._userdata_close__imgo=document.createElement('img');3162 this._userdata_close__imgo.className='ggskin ggskin_svg';3163 this._userdata_close__imgo.setAttribute('src',basePath + 'images/userdata_close__o.svg');3164 this._userdata_close__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');3165 this._userdata_close__imgo['ondragstart']=function() { return false; };3166 this._userdata_close.appendChild(this._userdata_close__imgo);3167 this._userdata_close.ggId="userdata_close";3168 this._userdata_close.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3169 this._userdata_close.ggVisible=true;3170 this._userdata_close.className='ggskin ggskin_svg ';3171 this._userdata_close.ggType='svg';3172 hs ='';3173 hs+='cursor : pointer;';3174 hs+='height : 32px;';3175 hs+='left : 207px;';3176 hs+='position : absolute;';3177 hs+='top : 1px;';3178 hs+='visibility : inherit;';3179 hs+='width : 32px;';3180 this._userdata_close.setAttribute('style',hs);3181 this._userdata_close.style[domTransform + 'Origin']='50% 50%';3182 me._userdata_close.ggIsActive=function() {3183 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3184 return this.parentNode.ggIsActive();3185 }3186 return false;3187 }3188 me._userdata_close.ggElementNodeId=function() {3189 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3190 return this.parentNode.ggElementNodeId();3191 }3192 return me.player.getCurrentNode();3193 }3194 this._userdata_close.onclick=function () {3195 me._userdata.style[domTransition]='none';3196 me._userdata.style.visibility='hidden';3197 me._userdata.ggVisible=false;3198 me._screentint.style[domTransition]='none';3199 me._screentint.style.visibility='hidden';3200 me._screentint.ggVisible=false;3201 }3202 this._userdata_close.onmouseover=function () {3203 me._userdata_close__img.style.visibility='hidden';3204 me._userdata_close__imgo.style.visibility='inherit';3205 }3206 this._userdata_close.onmouseout=function () {3207 me._userdata_close__img.style.visibility='inherit';3208 me._userdata_close__imgo.style.visibility='hidden';3209 }3210 this._userdata_close.ggUpdatePosition=function () {3211 }3212 this._userdata.appendChild(this._userdata_close);3213 this.divSkin.appendChild(this._userdata);3214 this._information=document.createElement('div');3215 this._information.ggId="information";3216 this._information.ggLeft=-148;3217 this._information.ggTop=-150;3218 this._information.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3219 this._information.ggVisible=false;3220 this._information.className='ggskin ggskin_container ';3221 this._information.ggType='container';3222 hs ='';3223 hs+='height : 250px;';3224 hs+='left : -148px;';3225 hs+='position : absolute;';3226 hs+='top : -150px;';3227 hs+='visibility : hidden;';3228 hs+='width : 300px;';3229 this._information.setAttribute('style',hs);3230 this._information.style[domTransform + 'Origin']='50% 50%';3231 me._information.ggIsActive=function() {3232 return false;3233 }3234 me._information.ggElementNodeId=function() {3235 return me.player.getCurrentNode();3236 }3237 this._information.ggUpdatePosition=function () {3238 this.style[domTransition]='none';3239 if (this.parentNode) {3240 var w=this.parentNode.offsetWidth;3241 this.style.left=(this.ggLeft - 0 + w/2) + 'px';3242 var h=this.parentNode.offsetHeight;3243 this.style.top=(this.ggTop - 0 + h/2) + 'px';3244 }3245 }3246 this._informationbg=document.createElement('div');3247 this._informationbg.ggId="informationbg";3248 this._informationbg.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3249 this._informationbg.ggVisible=true;3250 this._informationbg.className='ggskin ggskin_rectangle ';3251 this._informationbg.ggType='rectangle';3252 hs ='';3253 hs+=cssPrefix + 'border-radius : 10px;';3254 hs+='border-radius : 10px;';3255 hs+='background : rgba(0,0,0,0.784314);';3256 hs+='border : 2px solid #ffffff;';3257 hs+='height : 248px;';3258 hs+='left : -1px;';3259 hs+='position : absolute;';3260 hs+='top : -1px;';3261 hs+='visibility : inherit;';3262 hs+='width : 298px;';3263 this._informationbg.setAttribute('style',hs);3264 this._informationbg.style[domTransform + 'Origin']='50% 50%';3265 me._informationbg.ggIsActive=function() {3266 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3267 return this.parentNode.ggIsActive();3268 }3269 return false;3270 }3271 me._informationbg.ggElementNodeId=function() {3272 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3273 return this.parentNode.ggElementNodeId();3274 }3275 return me.player.getCurrentNode();3276 }3277 this._informationbg.ggUpdatePosition=function () {3278 }3279 this._information.appendChild(this._informationbg);3280 this._info_text_body=document.createElement('div');3281 this._info_text_body__text=document.createElement('div');3282 this._info_text_body.className='ggskin ggskin_textdiv';3283 this._info_text_body.ggTextDiv=this._info_text_body__text;3284 this._info_text_body.ggId="info_text_body";3285 this._info_text_body.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3286 this._info_text_body.ggVisible=true;3287 this._info_text_body.className='ggskin ggskin_text ';3288 this._info_text_body.ggType='text';3289 hs ='';3290 hs+='height : 193px;';3291 hs+='left : 12px;';3292 hs+='position : absolute;';3293 hs+='top : 45px;';3294 hs+='visibility : inherit;';3295 hs+='width : 274px;';3296 this._info_text_body.setAttribute('style',hs);3297 this._info_text_body.style[domTransform + 'Origin']='50% 50%';3298 hs ='position:absolute;';3299 hs+='left: 0px;';3300 hs+='top: 0px;';3301 hs+='width: 274px;';3302 hs+='height: 193px;';3303 hs+='border: 0px solid #000000;';3304 hs+='color: rgba(255,255,255,1);';3305 hs+='text-align: left;';3306 hs+='white-space: pre-wrap;';3307 hs+='padding: 0px 1px 0px 1px;';3308 hs+='overflow: hidden;';3309 hs+='overflow-y: auto;';3310 this._info_text_body__text.setAttribute('style',hs);3311 this._info_text_body__text.innerHTML="";3312 this._info_text_body.appendChild(this._info_text_body__text);3313 me._info_text_body.ggIsActive=function() {3314 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3315 return this.parentNode.ggIsActive();3316 }3317 return false;3318 }3319 me._info_text_body.ggElementNodeId=function() {3320 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3321 return this.parentNode.ggElementNodeId();3322 }3323 return me.player.getCurrentNode();3324 }3325 this._info_text_body.ggUpdatePosition=function () {3326 }3327 this._information.appendChild(this._info_text_body);3328 this._info_title=document.createElement('div');3329 this._info_title__text=document.createElement('div');3330 this._info_title.className='ggskin ggskin_textdiv';3331 this._info_title.ggTextDiv=this._info_title__text;3332 this._info_title.ggId="info_title";3333 this._info_title.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3334 this._info_title.ggVisible=true;3335 this._info_title.className='ggskin ggskin_text ';3336 this._info_title.ggType='text';3337 hs ='';3338 hs+='height : 18px;';3339 hs+='left : 103px;';3340 hs+='position : absolute;';3341 hs+='top : 15px;';3342 hs+='visibility : inherit;';3343 hs+='width : 99px;';3344 this._info_title.setAttribute('style',hs);3345 this._info_title.style[domTransform + 'Origin']='50% 50%';3346 hs ='position:absolute;';3347 hs+='left: 0px;';3348 hs+='top: 0px;';3349 hs+='width: 99px;';3350 hs+='height: 18px;';3351 hs+='border: 0px solid #000000;';3352 hs+='color: rgba(255,255,255,1);';3353 hs+='text-align: center;';3354 hs+='white-space: nowrap;';3355 hs+='padding: 0px 1px 0px 1px;';3356 hs+='overflow: hidden;';3357 this._info_title__text.setAttribute('style',hs);3358 this._info_title__text.innerHTML="";3359 this._info_title.appendChild(this._info_title__text);3360 me._info_title.ggIsActive=function() {3361 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3362 return this.parentNode.ggIsActive();3363 }3364 return false;3365 }3366 me._info_title.ggElementNodeId=function() {3367 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3368 return this.parentNode.ggElementNodeId();3369 }3370 return me.player.getCurrentNode();3371 }3372 this._info_title.ggUpdatePosition=function () {3373 }3374 this._information.appendChild(this._info_title);3375 this._ht_info_close=document.createElement('div');3376 this._ht_info_close__img=document.createElement('img');3377 this._ht_info_close__img.className='ggskin ggskin_svg';3378 this._ht_info_close__img.setAttribute('src',basePath + 'images/ht_info_close.svg');3379 this._ht_info_close__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');3380 this._ht_info_close__img['ondragstart']=function() { return false; };3381 this._ht_info_close.appendChild(this._ht_info_close__img);3382 this._ht_info_close__imgo=document.createElement('img');3383 this._ht_info_close__imgo.className='ggskin ggskin_svg';3384 this._ht_info_close__imgo.setAttribute('src',basePath + 'images/ht_info_close__o.svg');3385 this._ht_info_close__imgo.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;visibility:hidden;pointer-events:none;');3386 this._ht_info_close__imgo['ondragstart']=function() { return false; };3387 this._ht_info_close.appendChild(this._ht_info_close__imgo);3388 this._ht_info_close.ggId="ht_info_close";3389 this._ht_info_close.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3390 this._ht_info_close.ggVisible=true;3391 this._ht_info_close.className='ggskin ggskin_svg ';3392 this._ht_info_close.ggType='svg';3393 hs ='';3394 hs+='cursor : pointer;';3395 hs+='height : 32px;';3396 hs+='left : 263px;';3397 hs+='position : absolute;';3398 hs+='top : 4px;';3399 hs+='visibility : inherit;';3400 hs+='width : 32px;';3401 this._ht_info_close.setAttribute('style',hs);3402 this._ht_info_close.style[domTransform + 'Origin']='50% 50%';3403 me._ht_info_close.ggIsActive=function() {3404 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3405 return this.parentNode.ggIsActive();3406 }3407 return false;3408 }3409 me._ht_info_close.ggElementNodeId=function() {3410 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3411 return this.parentNode.ggElementNodeId();3412 }3413 return me.player.getCurrentNode();3414 }3415 this._ht_info_close.onclick=function () {3416 me._information.style[domTransition]='none';3417 me._information.style.visibility='hidden';3418 me._information.ggVisible=false;3419 me._screentint.style[domTransition]='none';3420 me._screentint.style.visibility='hidden';3421 me._screentint.ggVisible=false;3422 }3423 this._ht_info_close.onmouseover=function () {3424 me._ht_info_close__img.style.visibility='hidden';3425 me._ht_info_close__imgo.style.visibility='inherit';3426 }3427 this._ht_info_close.onmouseout=function () {3428 me._ht_info_close__img.style.visibility='inherit';3429 me._ht_info_close__imgo.style.visibility='hidden';3430 }3431 this._ht_info_close.ggUpdatePosition=function () {3432 }3433 this._information.appendChild(this._ht_info_close);3434 this.divSkin.appendChild(this._information);3435 this._image_popup=document.createElement('div');3436 this._image_popup.ggId="image_popup";3437 this._image_popup.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3438 this._image_popup.ggVisible=false;3439 this._image_popup.className='ggskin ggskin_container ';3440 this._image_popup.ggType='container';3441 hs ='';3442 hs+='height : 80%;';3443 hs+='left : 10%;';3444 hs+='position : absolute;';3445 hs+='top : 10%;';3446 hs+='visibility : hidden;';3447 hs+='width : 80%;';3448 this._image_popup.setAttribute('style',hs);3449 this._image_popup.style[domTransform + 'Origin']='50% 50%';3450 me._image_popup.ggIsActive=function() {3451 return false;3452 }3453 me._image_popup.ggElementNodeId=function() {3454 return me.player.getCurrentNode();3455 }3456 this._image_popup.onclick=function () {3457 me._image_popup.style[domTransition]='none';3458 me._image_popup.style.visibility='hidden';3459 me._image_popup.ggVisible=false;3460 me._popup_image.ggText="";3461 me._popup_image__img.src=me._popup_image.ggText;3462 me._screentint.style[domTransition]='none';3463 me._screentint.style.visibility='hidden';3464 me._screentint.ggVisible=false;3465 }3466 this._image_popup.ggUpdatePosition=function () {3467 }3468 this._loading_image=document.createElement('div');3469 this._loading_image__img=document.createElement('img');3470 this._loading_image__img.className='ggskin ggskin_svg';3471 this._loading_image__img.setAttribute('src',basePath + 'images/loading_image.svg');3472 this._loading_image__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');3473 this._loading_image__img['ondragstart']=function() { return false; };3474 this._loading_image.appendChild(this._loading_image__img);3475 this._loading_image.ggId="loading_image";3476 this._loading_image.ggLeft=-20;3477 this._loading_image.ggTop=-20;3478 this._loading_image.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3479 this._loading_image.ggVisible=true;3480 this._loading_image.className='ggskin ggskin_svg ';3481 this._loading_image.ggType='svg';3482 hs ='';3483 hs+='height : 40px;';3484 hs+='left : -20px;';3485 hs+='position : absolute;';3486 hs+='top : -20px;';3487 hs+='visibility : inherit;';3488 hs+='width : 40px;';3489 this._loading_image.setAttribute('style',hs);3490 this._loading_image.style[domTransform + 'Origin']='50% 50%';3491 me._loading_image.ggIsActive=function() {3492 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3493 return this.parentNode.ggIsActive();3494 }3495 return false;3496 }3497 me._loading_image.ggElementNodeId=function() {3498 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3499 return this.parentNode.ggElementNodeId();3500 }3501 return me.player.getCurrentNode();3502 }3503 this._loading_image.ggUpdatePosition=function () {3504 this.style[domTransition]='none';3505 if (this.parentNode) {3506 var w=this.parentNode.offsetWidth;3507 this.style.left=(this.ggLeft - 0 + w/2) + 'px';3508 var h=this.parentNode.offsetHeight;3509 this.style.top=(this.ggTop - 0 + h/2) + 'px';3510 }3511 }3512 this._image_popup.appendChild(this._loading_image);3513 this._popup_image=document.createElement('div');3514 this._popup_image__img=document.createElement('img');3515 this._popup_image__img.className='ggskin ggskin_external';3516 this._popup_image__img.onload=function() {me._popup_image.ggUpdatePosition();}3517 this._popup_image__img.setAttribute('src',basePath + '');3518 this._popup_image__img['ondragstart']=function() { return false; };3519 hs ='';3520 this._popup_image.appendChild(this._popup_image__img);3521 this._popup_image.ggId="popup_image";3522 this._popup_image.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3523 this._popup_image.ggVisible=true;3524 this._popup_image.className='ggskin ggskin_external ';3525 this._popup_image.ggType='external';3526 hs ='';3527 hs+='border : 0px solid #000000;';3528 hs+='cursor : pointer;';3529 hs+='height : 100%;';3530 hs+='left : 0%;';3531 hs+='position : absolute;';3532 hs+='top : 0%;';3533 hs+='visibility : inherit;';3534 hs+='width : 100%;';3535 this._popup_image.setAttribute('style',hs);3536 this._popup_image.style[domTransform + 'Origin']='50% 50%';3537 me._popup_image.ggIsActive=function() {3538 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3539 return this.parentNode.ggIsActive();3540 }3541 return false;3542 }3543 me._popup_image.ggElementNodeId=function() {3544 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3545 return this.parentNode.ggElementNodeId();3546 }3547 return me.player.getCurrentNode();3548 }3549 this._popup_image.ggUpdatePosition=function () {3550 var parentWidth = me._popup_image.clientWidth;3551 var parentHeight = me._popup_image.clientHeight;3552 var aspectRatioDiv = me._popup_image.clientWidth / me._popup_image.clientHeight;3553 var aspectRatioImg = me._popup_image__img.naturalWidth / me._popup_image__img.naturalHeight;3554 if (me._popup_image__img.naturalWidth < parentWidth) parentWidth = me._popup_image__img.naturalWidth;3555 if (me._popup_image__img.naturalHeight < parentHeight) parentHeight = me._popup_image__img.naturalHeight;3556 var currentWidth = me._popup_image__img.naturalWidth;3557 var currentHeight = me._popup_image__img.naturalHeight;3558 if (aspectRatioDiv > aspectRatioImg) {3559 currentHeight = parentHeight;3560 currentWidth = parentHeight * aspectRatioImg;3561 me._popup_image__img.setAttribute('style','position: absolute; left: 50%; margin-left: -' + currentWidth/2 + 'px; top: 50%; margin-top: -' + currentHeight/2 + 'px;height:' + parentHeight + 'px;-webkit-user-drag:none;pointer-events:none;');3562 } else {3563 currentWidth = parentWidth;3564 currentHeight = parentWidth / aspectRatioImg;3565 me._popup_image__img.setAttribute('style','position: absolute; left: 50%; margin-left: -' + currentWidth/2 + 'px; top: 50%; margin-top: -' + currentHeight/2 + 'px;width:' + parentWidth + 'px;-webkit-user-drag:none;pointer-events:none;');3566 };3567 }3568 this._image_popup.appendChild(this._popup_image);3569 this.divSkin.appendChild(this._image_popup);3570 this._markertemplate__normal=new SkinElement_marker_normal_Class(this,this._markertemplate);3571 this._markertemplate__normal.style.visibility='inherit';3572 this._markertemplate__normal.style.left='0px';3573 this._markertemplate__normal.style.top='0px';3574 this._markertemplate.ggMarkerNormal=this._markertemplate__normal;3575 this._markertemplate__active=new SkinElement_marker_active_Class(this,this._markertemplate);3576 this._markertemplate__active.style.visibility='hidden';3577 this._markertemplate__active.style.left='0px';3578 this._markertemplate__active.style.top='0px';3579 this._markertemplate.ggMarkerActive=this._markertemplate__active;3580 if (this._markertemplate.firstChild) {3581 this._markertemplate.insertBefore(this._markertemplate__active,this._markertemplate.firstChild);3582 } else {3583 this._markertemplate.appendChild(this._markertemplate__active);3584 }3585 if (this._markertemplate.firstChild) {3586 this._markertemplate.insertBefore(this._markertemplate__normal,this._markertemplate.firstChild);3587 } else {3588 this._markertemplate.appendChild(this._markertemplate__normal);3589 }3590 this.divSkin.ggUpdateSize=function(w,h) {3591 me.updateSize(me.divSkin);3592 }3593 this.divSkin.ggViewerInit=function() {3594 }3595 this.divSkin.ggLoaded=function() {3596 me._loading.style[domTransition]='none';3597 me._loading.style.visibility='hidden';3598 me._loading.ggVisible=false;3599 }3600 this.divSkin.ggReLoaded=function() {3601 me._loading.style[domTransition]='none';3602 me._loading.style.visibility=(Number(me._loading.style.opacity)>0||!me._loading.style.opacity)?'inherit':'hidden';3603 me._loading.ggVisible=true;3604 }3605 this.divSkin.ggLoadedLevels=function() {3606 }3607 this.divSkin.ggReLoadedLevels=function() {3608 }3609 this.divSkin.ggEnterFullscreen=function() {3610 }3611 this.divSkin.ggExitFullscreen=function() {3612 }3613 this.skinTimerEvent();3614 };3615 this.hotspotProxyClick=function(id) {3616 }3617 this.hotspotProxyOver=function(id) {3618 }3619 this.hotspotProxyOut=function(id) {3620 }3621 this.ggHotspotCallChildFunctions=function(functionname) {3622 var stack = me.player.getCurrentPointHotspots();3623 while (stack.length > 0) {3624 var e = stack.pop();3625 if (typeof e[functionname] == 'function') {3626 e[functionname]();3627 }3628 if(e.hasChildNodes()) {3629 for(var i=0; i<e.childNodes.length; i++) {3630 stack.push(e.childNodes[i]);3631 }3632 }3633 }3634 }3635 this.changeActiveNode=function(id) {3636 me.ggUserdata=me.player.userdata;3637 me._button_simplex_fullscreen.ggNodeChange();3638 me._markertemplate.ggNodeChange();3639 me.ggHotspotCallChildFunctions('ggNodeChange');3640 var newMarker=[];3641 var i,j;3642 var tags=me.ggUserdata.tags;3643 for (i=0;i<nodeMarker.length;i++) {3644 var match=false;3645 if ((nodeMarker[i].ggMarkerNodeId==id) && (id!='')) match=true;3646 for(j=0;j<tags.length;j++) {3647 if (nodeMarker[i].ggMarkerNodeId==tags[j]) match=true;3648 }3649 if (match) {3650 newMarker.push(nodeMarker[i]);3651 }3652 }3653 for(i=0;i<activeNodeMarker.length;i++) {3654 if (newMarker.indexOf(activeNodeMarker[i])<0) {3655 if (activeNodeMarker[i].ggMarkerNormal) {3656 activeNodeMarker[i].ggMarkerNormal.style.visibility='inherit';3657 }3658 if (activeNodeMarker[i].ggMarkerActive) {3659 activeNodeMarker[i].ggMarkerActive.style.visibility='hidden';3660 }3661 if (activeNodeMarker[i].ggDeactivate) {3662 activeNodeMarker[i].ggDeactivate();3663 }3664 activeNodeMarker[i].ggIsMarkerActive=false;3665 }3666 }3667 for(i=0;i<newMarker.length;i++) {3668 if (activeNodeMarker.indexOf(newMarker[i])<0) {3669 if (newMarker[i].ggMarkerNormal) {3670 newMarker[i].ggMarkerNormal.style.visibility='hidden';3671 }3672 if (newMarker[i].ggMarkerActive) {3673 newMarker[i].ggMarkerActive.style.visibility='inherit';3674 }3675 if (newMarker[i].ggActivate) {3676 newMarker[i].ggActivate();3677 }3678 newMarker[i].ggIsMarkerActive=true;3679 }3680 }3681 activeNodeMarker=newMarker;3682 }3683 this.skinTimerEvent=function() {3684 setTimeout(function() { me.skinTimerEvent(); }, 10);3685 me.ggCurrentTime=new Date().getTime();3686 if (me.elementMouseOver['controller']) {3687 me._controller_hide_timer.ggTimeout=Number("5") * 1000.0;3688 me._controller_hide_timer.ggTimestamp=me.ggCurrentTime;3689 }3690 me._controller.ggUpdateConditionTimer();3691 if (me.elementMouseDown['up']) {3692 me.player.changeTiltLog(1,true);3693 }3694 me._up.ggUpdateConditionTimer();3695 if (me.elementMouseDown['down']) {3696 me.player.changeTiltLog(-1,true);3697 }3698 me._down.ggUpdateConditionTimer();3699 if (me.elementMouseDown['left']) {3700 me.player.changePanLog(1,true);3701 }3702 me._left.ggUpdateConditionTimer();3703 if (me.elementMouseDown['right']) {3704 me.player.changePanLog(-1,true);3705 }3706 me._right.ggUpdateConditionTimer();3707 if (me.elementMouseDown['zoomin']) {3708 me.player.changeFovLog(-1,true);3709 }3710 if (me.elementMouseOver['zoomin']) {3711 }3712 me._tt_zoomin.ggUpdateConditionTimer();3713 if (me.elementMouseDown['zoomout']) {3714 me.player.changeFovLog(1,true);3715 }3716 if (me.elementMouseOver['zoomout']) {3717 }3718 me._tt_zoomout.ggUpdateConditionTimer();3719 if (me.elementMouseOver['button_stop_auto_rotate']) {3720 }3721 me._tt_stop_auto_rotate.ggUpdateConditionTimer();3722 if (me.elementMouseOver['button_start_auto_rotate']) {3723 }3724 me._tt_start_auto_rotate.ggUpdateConditionTimer();3725 if (me.elementMouseOver['info']) {3726 }3727 me._tt_info.ggUpdateConditionTimer();3728 if (me.elementMouseOver['movemode_drag']) {3729 }3730 me._tt_movemode0.ggUpdateConditionTimer();3731 if (me.elementMouseOver['movemode_continuous']) {3732 }3733 me._tt_movemode.ggUpdateConditionTimer();3734 if (me.elementMouseOver['button_image_normalscreen']) {3735 }3736 me._tt_exit_fullscreen.ggUpdateConditionTimer();3737 if (me.elementMouseOver['button_image_fullscreen']) {3738 }3739 me._tt_enter_fullscreen.ggUpdateConditionTimer();3740 if (me.elementMouseOver['controller_show']) {3741 }3742 me._controller_show.ggUpdateConditionTimer();3743 me._marker_title.ggUpdateText();3744 if (me._controller_hide_timer.ggLastIsActive!=me._controller_hide_timer.ggIsActive()) {3745 me._controller_hide_timer.ggLastIsActive=me._controller_hide_timer.ggIsActive();3746 if (me._controller_hide_timer.ggLastIsActive) {3747 me._controller_show.style[domTransition]='none';3748 me._controller_show.style.opacity='0';3749 me._controller_show.style.visibility='hidden';3750 if (me.player.transitionsDisabled) {3751 me._controller.style[domTransition]='none';3752 } else {3753 me._controller.style[domTransition]='all 500ms ease-out 0ms';3754 }3755 me._controller.style.opacity='1';3756 me._controller.style.visibility=me._controller.ggVisible?'inherit':'hidden';3757 } else {3758 if (me.player.transitionsDisabled) {3759 me._controller.style[domTransition]='none';3760 } else {3761 me._controller.style[domTransition]='all 500ms ease-out 0ms';3762 }3763 me._controller.style.opacity='0';3764 me._controller.style.visibility='hidden';3765 if (me.player.transitionsDisabled) {3766 me._controller_show.style[domTransition]='none';3767 } else {3768 me._controller_show.style[domTransition]='all 500ms ease-out 0ms';3769 }3770 me._controller_show.style.opacity='1';3771 me._controller_show.style.visibility=me._controller_show.ggVisible?'inherit':'hidden';3772 }3773 }3774 me._loadingtext.ggUpdateText();3775 var hs='';3776 if (me._loadingbar.ggParameter) {3777 hs+=parameterToTransform(me._loadingbar.ggParameter) + ' ';3778 }3779 hs+='scale(' + (1 * me.player.getPercentLoaded() + 0) + ',1.0) ';3780 me._loadingbar.style[domTransform]=hs;3781 me._title.ggUpdateText();3782 me._description.ggUpdateText();3783 me._author.ggUpdateText();3784 me._datetime.ggUpdateText();3785 me._copyright.ggUpdateText();3786 me.ggHotspotCallChildFunctions('ggUpdateConditionTimer');3787 };3788 function SkinHotspotClass(skinObj,hotspot) {3789 var me=this;3790 var flag=false;3791 this.player=skinObj.player;3792 this.skin=skinObj;3793 this.hotspot=hotspot;3794 var nodeId=String(hotspot.url);3795 nodeId=(nodeId.charAt(0)=='{')?nodeId.substr(1, nodeId.length - 2):'';3796 this.ggUserdata=this.skin.player.getNodeUserdata(nodeId);3797 this.elementMouseDown=[];3798 this.elementMouseOver=[];3799 3800 this.findElements=function(id,regex) {3801 return me.skin.findElements(id,regex);3802 }3803 3804 if (hotspot.skinid=='ht_node') {3805 this.__div=document.createElement('div');3806 this.__div.ggId="ht_node";3807 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3808 this.__div.ggVisible=true;3809 this.__div.className='ggskin ggskin_hotspot ';3810 this.__div.ggType='hotspot';3811 hs ='';3812 hs+='height : 5px;';3813 hs+='left : 100px;';3814 hs+='position : absolute;';3815 hs+='top : 140px;';3816 hs+='visibility : inherit;';3817 hs+='width : 5px;';3818 this.__div.setAttribute('style',hs);3819 this.__div.style[domTransform + 'Origin']='50% 50%';3820 me.__div.ggIsActive=function() {3821 return me.player.getCurrentNode()==this.ggElementNodeId();3822 }3823 me.__div.ggElementNodeId=function() {3824 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);3825 }3826 this.__div.onclick=function () {3827 me.player.openUrl(me.hotspot.url,me.hotspot.target);3828 me.skin.hotspotProxyClick(me.hotspot.id);3829 }3830 this.__div.onmouseover=function () {3831 me.player.setActiveHotspot(me.hotspot);3832 me.elementMouseOver['_div']=true;3833 me.skin.hotspotProxyOver(me.hotspot.id);3834 }3835 this.__div.onmouseout=function () {3836 me.player.setActiveHotspot(null);3837 me.elementMouseOver['_div']=false;3838 me.skin.hotspotProxyOut(me.hotspot.id);3839 }3840 this.__div.ontouchend=function () {3841 me.elementMouseOver['_div']=false;3842 }3843 this.__div.ggUpdatePosition=function () {3844 }3845 this._hsimage_node=document.createElement('div');3846 this._hsimage_node__img=document.createElement('img');3847 this._hsimage_node__img.className='ggskin ggskin_svg';3848 this._hsimage_node__img.setAttribute('src',basePath + 'images/hsimage_node.svg');3849 this._hsimage_node__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');3850 this._hsimage_node__img['ondragstart']=function() { return false; };3851 this._hsimage_node.appendChild(this._hsimage_node__img);3852 this._hsimage_node.ggId="hsimage_node";3853 this._hsimage_node.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3854 this._hsimage_node.ggVisible=true;3855 this._hsimage_node.className='ggskin ggskin_svg ';3856 this._hsimage_node.ggType='svg';3857 hs ='';3858 hs+='cursor : pointer;';3859 hs+='height : 32px;';3860 hs+='left : -16px;';3861 hs+='position : absolute;';3862 hs+='top : -16px;';3863 hs+='visibility : inherit;';3864 hs+='width : 32px;';3865 this._hsimage_node.setAttribute('style',hs);3866 this._hsimage_node.style[domTransform + 'Origin']='50% 50%';3867 me._hsimage_node.ggIsActive=function() {3868 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3869 return this.parentNode.ggIsActive();3870 }3871 return false;3872 }3873 me._hsimage_node.ggElementNodeId=function() {3874 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3875 return this.parentNode.ggElementNodeId();3876 }3877 return me.ggNodeId;3878 }3879 this._hsimage_node.ggUpdatePosition=function () {3880 }3881 this.__div.appendChild(this._hsimage_node);3882 this._hotspot_preview=document.createElement('div');3883 this._hotspot_preview.ggId="hotspot_preview";3884 this._hotspot_preview.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3885 this._hotspot_preview.ggVisible=false;3886 this._hotspot_preview.className='ggskin ggskin_container ';3887 this._hotspot_preview.ggType='container';3888 hs ='';3889 hs+='height : 103px;';3890 hs+='left : -73px;';3891 hs+='position : absolute;';3892 hs+='top : -128px;';3893 hs+='visibility : hidden;';3894 hs+='width : 153px;';3895 this._hotspot_preview.setAttribute('style',hs);3896 this._hotspot_preview.style[domTransform + 'Origin']='50% 50%';3897 me._hotspot_preview.ggIsActive=function() {3898 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3899 return this.parentNode.ggIsActive();3900 }3901 return false;3902 }3903 me._hotspot_preview.ggElementNodeId=function() {3904 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3905 return this.parentNode.ggElementNodeId();3906 }3907 return me.ggNodeId;3908 }3909 me._hotspot_preview.ggCurrentLogicStateVisible = -1;3910 this._hotspot_preview.ggUpdateConditionTimer=function () {3911 var newLogicStateVisible;3912 if (3913 (me.elementMouseOver['_div'] == true)3914 )3915 {3916 newLogicStateVisible = 0;3917 }3918 else {3919 newLogicStateVisible = -1;3920 }3921 if (me._hotspot_preview.ggCurrentLogicStateVisible != newLogicStateVisible) {3922 me._hotspot_preview.ggCurrentLogicStateVisible = newLogicStateVisible;3923 me._hotspot_preview.style[domTransition]='';3924 if (me._hotspot_preview.ggCurrentLogicStateVisible == 0) {3925 me._hotspot_preview.style.visibility=(Number(me._hotspot_preview.style.opacity)>0||!me._hotspot_preview.style.opacity)?'inherit':'hidden';3926 me._hotspot_preview.ggVisible=true;3927 }3928 else {3929 me._hotspot_preview.style.visibility="hidden";3930 me._hotspot_preview.ggVisible=false;3931 }3932 }3933 }3934 this._hotspot_preview.ggUpdatePosition=function () {3935 }3936 this._preview_picture_frame_=document.createElement('div');3937 this._preview_picture_frame_.ggId="preview_picture_frame ";3938 this._preview_picture_frame_.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3939 this._preview_picture_frame_.ggVisible=true;3940 this._preview_picture_frame_.className='ggskin ggskin_rectangle ';3941 this._preview_picture_frame_.ggType='rectangle';3942 hs ='';3943 hs+=cssPrefix + 'border-radius : 5px;';3944 hs+='border-radius : 5px;';3945 hs+='background : rgba(255,255,255,0.784314);';3946 hs+='border : 1px solid #000000;';3947 hs+='height : 99px;';3948 hs+='left : 0px;';3949 hs+='position : absolute;';3950 hs+='top : 0px;';3951 hs+='visibility : inherit;';3952 hs+='width : 149px;';3953 this._preview_picture_frame_.setAttribute('style',hs);3954 this._preview_picture_frame_.style[domTransform + 'Origin']='50% 50%';3955 me._preview_picture_frame_.ggIsActive=function() {3956 if ((this.parentNode) && (this.parentNode.ggIsActive)) {3957 return this.parentNode.ggIsActive();3958 }3959 return false;3960 }3961 me._preview_picture_frame_.ggElementNodeId=function() {3962 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {3963 return this.parentNode.ggElementNodeId();3964 }3965 return me.ggNodeId;3966 }3967 this._preview_picture_frame_.ggUpdatePosition=function () {3968 }3969 this._hotspot_preview.appendChild(this._preview_picture_frame_);3970 this._preview_nodeimage=document.createElement('div');3971 this._preview_nodeimage__img=document.createElement('img');3972 this._preview_nodeimage__img.className='ggskin ggskin_nodeimage';3973 this._preview_nodeimage__img.setAttribute('src',basePath + "images/preview_nodeimage_" + nodeId + ".png");3974 this._preview_nodeimage.ggNodeId=nodeId;3975 this._preview_nodeimage__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');3976 this._preview_nodeimage__img.className='ggskin ggskin_nodeimage';3977 this._preview_nodeimage__img['ondragstart']=function() { return false; };3978 this._preview_nodeimage.appendChild(this._preview_nodeimage__img);3979 this._preview_nodeimage.ggId="Preview NodeImage";3980 this._preview_nodeimage.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };3981 this._preview_nodeimage.ggVisible=true;3982 this._preview_nodeimage.className='ggskin ggskin_nodeimage ';3983 this._preview_nodeimage.ggType='nodeimage';3984 hs ='';3985 hs+='height : 90px;';3986 hs+='left : 5px;';3987 hs+='position : absolute;';3988 hs+='top : 5px;';3989 hs+='visibility : inherit;';3990 hs+='width : 140px;';3991 this._preview_nodeimage.setAttribute('style',hs);3992 this._preview_nodeimage.style[domTransform + 'Origin']='50% 50%';3993 me._preview_nodeimage.ggIsActive=function() {3994 return me.player.getCurrentNode()==this.ggElementNodeId();3995 }3996 me._preview_nodeimage.ggElementNodeId=function() {3997 return this.ggNodeId;3998 }3999 this._preview_nodeimage.ggUpdatePosition=function () {4000 }4001 this._hotspot_preview.appendChild(this._preview_nodeimage);4002 this._tooltip_bg=document.createElement('div');4003 this._tooltip_bg.ggId="tooltip_bg";4004 this._tooltip_bg.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4005 this._tooltip_bg.ggVisible=true;4006 this._tooltip_bg.className='ggskin ggskin_rectangle ';4007 this._tooltip_bg.ggType='rectangle';4008 hs ='';4009 hs+='background : rgba(0,0,0,0.392157);';4010 hs+='border : 0px solid #000000;';4011 hs+='height : 20px;';4012 hs+='left : 5px;';4013 hs+='position : absolute;';4014 hs+='top : 77px;';4015 hs+='visibility : inherit;';4016 hs+='width : 140px;';4017 this._tooltip_bg.setAttribute('style',hs);4018 this._tooltip_bg.style[domTransform + 'Origin']='50% 50%';4019 me._tooltip_bg.ggIsActive=function() {4020 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4021 return this.parentNode.ggIsActive();4022 }4023 return false;4024 }4025 me._tooltip_bg.ggElementNodeId=function() {4026 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4027 return this.parentNode.ggElementNodeId();4028 }4029 return me.ggNodeId;4030 }4031 this._tooltip_bg.ggUpdatePosition=function () {4032 }4033 this._hotspot_preview.appendChild(this._tooltip_bg);4034 this._tooltip_drop_shadow=document.createElement('div');4035 this._tooltip_drop_shadow__text=document.createElement('div');4036 this._tooltip_drop_shadow.className='ggskin ggskin_textdiv';4037 this._tooltip_drop_shadow.ggTextDiv=this._tooltip_drop_shadow__text;4038 this._tooltip_drop_shadow.ggId="tooltip_drop_shadow";4039 this._tooltip_drop_shadow.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4040 this._tooltip_drop_shadow.ggVisible=true;4041 this._tooltip_drop_shadow.className='ggskin ggskin_text ';4042 this._tooltip_drop_shadow.ggType='text';4043 hs ='';4044 hs+='height : 20px;';4045 hs+='left : 1px;';4046 hs+='position : absolute;';4047 hs+='top : 80px;';4048 hs+='visibility : inherit;';4049 hs+='width : 148px;';4050 this._tooltip_drop_shadow.setAttribute('style',hs);4051 this._tooltip_drop_shadow.style[domTransform + 'Origin']='50% 50%';4052 hs ='position:absolute;';4053 hs+='left: 0px;';4054 hs+='top: 0px;';4055 hs+='width: 148px;';4056 hs+='height: 20px;';4057 hs+='border: 0px solid #000000;';4058 hs+='color: rgba(0,0,0,1);';4059 hs+='text-align: center;';4060 hs+='white-space: nowrap;';4061 hs+='padding: 0px 1px 0px 1px;';4062 hs+='overflow: hidden;';4063 this._tooltip_drop_shadow__text.setAttribute('style',hs);4064 this._tooltip_drop_shadow__text.innerHTML=me.hotspot.title;4065 this._tooltip_drop_shadow.appendChild(this._tooltip_drop_shadow__text);4066 me._tooltip_drop_shadow.ggIsActive=function() {4067 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4068 return this.parentNode.ggIsActive();4069 }4070 return false;4071 }4072 me._tooltip_drop_shadow.ggElementNodeId=function() {4073 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4074 return this.parentNode.ggElementNodeId();4075 }4076 return me.ggNodeId;4077 }4078 this._tooltip_drop_shadow.ggUpdatePosition=function () {4079 }4080 this._hotspot_preview.appendChild(this._tooltip_drop_shadow);4081 this._tooltip=document.createElement('div');4082 this._tooltip__text=document.createElement('div');4083 this._tooltip.className='ggskin ggskin_textdiv';4084 this._tooltip.ggTextDiv=this._tooltip__text;4085 this._tooltip.ggId="tooltip";4086 this._tooltip.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4087 this._tooltip.ggVisible=true;4088 this._tooltip.className='ggskin ggskin_text ';4089 this._tooltip.ggType='text';4090 hs ='';4091 hs+='height : 20px;';4092 hs+='left : 0px;';4093 hs+='position : absolute;';4094 hs+='top : 79px;';4095 hs+='visibility : inherit;';4096 hs+='width : 148px;';4097 this._tooltip.setAttribute('style',hs);4098 this._tooltip.style[domTransform + 'Origin']='50% 50%';4099 hs ='position:absolute;';4100 hs+='left: 0px;';4101 hs+='top: 0px;';4102 hs+='width: 148px;';4103 hs+='height: 20px;';4104 hs+='border: 0px solid #000000;';4105 hs+='color: rgba(255,255,255,1);';4106 hs+='text-align: center;';4107 hs+='white-space: nowrap;';4108 hs+='padding: 0px 1px 0px 1px;';4109 hs+='overflow: hidden;';4110 this._tooltip__text.setAttribute('style',hs);4111 this._tooltip__text.innerHTML=me.hotspot.title;4112 this._tooltip.appendChild(this._tooltip__text);4113 me._tooltip.ggIsActive=function() {4114 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4115 return this.parentNode.ggIsActive();4116 }4117 return false;4118 }4119 me._tooltip.ggElementNodeId=function() {4120 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4121 return this.parentNode.ggElementNodeId();4122 }4123 return me.ggNodeId;4124 }4125 this._tooltip.ggUpdatePosition=function () {4126 }4127 this._hotspot_preview.appendChild(this._tooltip);4128 this._checkmark_tick=document.createElement('div');4129 this._checkmark_tick__img=document.createElement('img');4130 this._checkmark_tick__img.className='ggskin ggskin_svg';4131 this._checkmark_tick__img.setAttribute('src',basePath + 'images/checkmark_tick.svg');4132 this._checkmark_tick__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');4133 this._checkmark_tick__img['ondragstart']=function() { return false; };4134 this._checkmark_tick.appendChild(this._checkmark_tick__img);4135 this._checkmark_tick.ggId="checkmark_tick";4136 this._checkmark_tick.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4137 this._checkmark_tick.ggVisible=false;4138 this._checkmark_tick.className='ggskin ggskin_svg ';4139 this._checkmark_tick.ggType='svg';4140 hs ='';4141 hs+='height : 36px;';4142 hs+='left : 110px;';4143 hs+='position : absolute;';4144 hs+='top : 3px;';4145 hs+='visibility : hidden;';4146 hs+='width : 36px;';4147 this._checkmark_tick.setAttribute('style',hs);4148 this._checkmark_tick.style[domTransform + 'Origin']='50% 50%';4149 me._checkmark_tick.ggIsActive=function() {4150 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4151 return this.parentNode.ggIsActive();4152 }4153 return false;4154 }4155 me._checkmark_tick.ggElementNodeId=function() {4156 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4157 return this.parentNode.ggElementNodeId();4158 }4159 return me.ggNodeId;4160 }4161 me._checkmark_tick.ggCurrentLogicStateVisible = -1;4162 this._checkmark_tick.ggUpdateConditionNodeChange=function () {4163 var newLogicStateVisible;4164 if (4165 (me.player.nodeVisited(me._checkmark_tick.ggElementNodeId()) == true)4166 )4167 {4168 newLogicStateVisible = 0;4169 }4170 else {4171 newLogicStateVisible = -1;4172 }4173 if (me._checkmark_tick.ggCurrentLogicStateVisible != newLogicStateVisible) {4174 me._checkmark_tick.ggCurrentLogicStateVisible = newLogicStateVisible;4175 me._checkmark_tick.style[domTransition]='';4176 if (me._checkmark_tick.ggCurrentLogicStateVisible == 0) {4177 me._checkmark_tick.style.visibility=(Number(me._checkmark_tick.style.opacity)>0||!me._checkmark_tick.style.opacity)?'inherit':'hidden';4178 me._checkmark_tick.ggVisible=true;4179 }4180 else {4181 me._checkmark_tick.style.visibility="hidden";4182 me._checkmark_tick.ggVisible=false;4183 }4184 }4185 }4186 this._checkmark_tick.ggUpdatePosition=function () {4187 }4188 this._checkmark_tick.ggNodeChange=function () {4189 me._checkmark_tick.ggUpdateConditionNodeChange();4190 }4191 this._hotspot_preview.appendChild(this._checkmark_tick);4192 this.__div.appendChild(this._hotspot_preview);4193 this.hotspotTimerEvent=function() {4194 setTimeout(function() { me.hotspotTimerEvent(); }, 10);4195 if (me.elementMouseOver['_div']) {4196 }4197 me._hotspot_preview.ggUpdateConditionTimer();4198 }4199 this.hotspotTimerEvent();4200 } else4201 if (hotspot.skinid=='ht_info') {4202 this.__div=document.createElement('div');4203 this.__div.ggId="ht_info";4204 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4205 this.__div.ggVisible=true;4206 this.__div.className='ggskin ggskin_hotspot ';4207 this.__div.ggType='hotspot';4208 hs ='';4209 hs+='cursor : pointer;';4210 hs+='height : 5px;';4211 hs+='left : 330px;';4212 hs+='position : absolute;';4213 hs+='top : 28px;';4214 hs+='visibility : inherit;';4215 hs+='width : 5px;';4216 this.__div.setAttribute('style',hs);4217 this.__div.style[domTransform + 'Origin']='50% 50%';4218 me.__div.ggIsActive=function() {4219 return me.player.getCurrentNode()==this.ggElementNodeId();4220 }4221 me.__div.ggElementNodeId=function() {4222 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);4223 }4224 this.__div.onclick=function () {4225 me.skin._information.ggVisible = !me.skin._information.ggVisible;4226 me.skin._information.style[domTransition]='none';4227 me.skin._information.style.visibility=((me.skin._information.ggVisible)&&(Number(me.skin._information.style.opacity)>0||!me.skin._information.style.opacity))?'inherit':'hidden';4228 me.skin._info_title.ggText="<b>"+me.hotspot.title+"<\/b>";4229 me.skin._info_title__text.innerHTML=me.skin._info_title.ggText;4230 if (me.skin._info_title.ggUpdateText) {4231 me.skin._info_title.ggUpdateText=function() {4232 var hs="<b>"+me.hotspot.title+"<\/b>";4233 if (hs!=this.ggText) {4234 this.ggText=hs;4235 this.ggTextDiv.innerHTML=hs;4236 if (this.ggUpdatePosition) this.ggUpdatePosition();4237 }4238 }4239 }4240 me.skin._info_text_body.ggText=me.hotspot.description;4241 me.skin._info_text_body__text.innerHTML=me.skin._info_text_body.ggText;4242 if (me.skin._info_text_body.ggUpdateText) {4243 me.skin._info_text_body.ggUpdateText=function() {4244 var hs=me.hotspot.description;4245 if (hs!=this.ggText) {4246 this.ggText=hs;4247 this.ggTextDiv.innerHTML=hs;4248 if (this.ggUpdatePosition) this.ggUpdatePosition();4249 }4250 }4251 }4252 me.skin._screentint.style[domTransition]='none';4253 me.skin._screentint.style.visibility=(Number(me.skin._screentint.style.opacity)>0||!me.skin._screentint.style.opacity)?'inherit':'hidden';4254 me.skin._screentint.ggVisible=true;4255 me.skin.hotspotProxyClick(me.hotspot.id);4256 }4257 this.__div.onmouseover=function () {4258 me.player.setActiveHotspot(me.hotspot);4259 me.elementMouseOver['_div']=true;4260 me.skin.hotspotProxyOver(me.hotspot.id);4261 }4262 this.__div.onmouseout=function () {4263 me.player.setActiveHotspot(null);4264 me.elementMouseOver['_div']=false;4265 me.skin.hotspotProxyOut(me.hotspot.id);4266 }4267 this.__div.ontouchend=function () {4268 me.elementMouseOver['_div']=false;4269 }4270 this.__div.ggUpdatePosition=function () {4271 }4272 this._ht_info_image=document.createElement('div');4273 this._ht_info_image__img=document.createElement('img');4274 this._ht_info_image__img.className='ggskin ggskin_svg';4275 this._ht_info_image__img.setAttribute('src',basePath + 'images/ht_info_image.svg');4276 this._ht_info_image__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');4277 this._ht_info_image__img['ondragstart']=function() { return false; };4278 this._ht_info_image.appendChild(this._ht_info_image__img);4279 this._ht_info_image.ggId="ht_info_image";4280 this._ht_info_image.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4281 this._ht_info_image.ggVisible=true;4282 this._ht_info_image.className='ggskin ggskin_svg ';4283 this._ht_info_image.ggType='svg';4284 hs ='';4285 hs+='height : 32px;';4286 hs+='left : -16px;';4287 hs+='position : absolute;';4288 hs+='top : -17px;';4289 hs+='visibility : inherit;';4290 hs+='width : 32px;';4291 this._ht_info_image.setAttribute('style',hs);4292 this._ht_info_image.style[domTransform + 'Origin']='50% 50%';4293 me._ht_info_image.ggIsActive=function() {4294 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4295 return this.parentNode.ggIsActive();4296 }4297 return false;4298 }4299 me._ht_info_image.ggElementNodeId=function() {4300 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4301 return this.parentNode.ggElementNodeId();4302 }4303 return me.ggNodeId;4304 }4305 this._ht_info_image.ggUpdatePosition=function () {4306 }4307 this.__div.appendChild(this._ht_info_image);4308 this._tt_information=document.createElement('div');4309 this._tt_information__text=document.createElement('div');4310 this._tt_information.className='ggskin ggskin_textdiv';4311 this._tt_information.ggTextDiv=this._tt_information__text;4312 this._tt_information.ggId="tt_information";4313 this._tt_information.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4314 this._tt_information.ggVisible=false;4315 this._tt_information.className='ggskin ggskin_text ';4316 this._tt_information.ggType='text';4317 hs ='';4318 hs+='height : 17px;';4319 hs+='left : -50px;';4320 hs+='position : absolute;';4321 hs+='top : 20px;';4322 hs+='visibility : hidden;';4323 hs+='width : 95px;';4324 this._tt_information.setAttribute('style',hs);4325 this._tt_information.style[domTransform + 'Origin']='50% 50%';4326 hs ='position:absolute;';4327 hs+='left: 0px;';4328 hs+='top: 0px;';4329 hs+='width: 95px;';4330 hs+='height: auto;';4331 hs+='background: #ffffff;';4332 hs+='background: rgba(255,255,255,0.784314);';4333 hs+='border: 1px solid #000000;';4334 hs+='border-radius: 5px;';4335 hs+=cssPrefix + 'border-radius: 5px;';4336 hs+='color: #000000;';4337 hs+='text-align: center;';4338 hs+='white-space: pre-wrap;';4339 hs+='padding: 1px 2px 1px 2px;';4340 hs+='overflow: hidden;';4341 this._tt_information__text.setAttribute('style',hs);4342 this._tt_information__text.innerHTML=me.hotspot.title;4343 this._tt_information.appendChild(this._tt_information__text);4344 me._tt_information.ggIsActive=function() {4345 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4346 return this.parentNode.ggIsActive();4347 }4348 return false;4349 }4350 me._tt_information.ggElementNodeId=function() {4351 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4352 return this.parentNode.ggElementNodeId();4353 }4354 return me.ggNodeId;4355 }4356 me._tt_information.ggCurrentLogicStateVisible = -1;4357 this._tt_information.ggUpdateConditionTimer=function () {4358 var newLogicStateVisible;4359 if (4360 (me.elementMouseOver['_div'] == true)4361 )4362 {4363 newLogicStateVisible = 0;4364 }4365 else {4366 newLogicStateVisible = -1;4367 }4368 if (me._tt_information.ggCurrentLogicStateVisible != newLogicStateVisible) {4369 me._tt_information.ggCurrentLogicStateVisible = newLogicStateVisible;4370 me._tt_information.style[domTransition]='';4371 if (me._tt_information.ggCurrentLogicStateVisible == 0) {4372 me._tt_information.style.visibility=(Number(me._tt_information.style.opacity)>0||!me._tt_information.style.opacity)?'inherit':'hidden';4373 me._tt_information.ggVisible=true;4374 }4375 else {4376 me._tt_information.style.visibility="hidden";4377 me._tt_information.ggVisible=false;4378 }4379 }4380 }4381 this._tt_information.ggUpdatePosition=function () {4382 }4383 this.__div.appendChild(this._tt_information);4384 this.hotspotTimerEvent=function() {4385 setTimeout(function() { me.hotspotTimerEvent(); }, 10);4386 if (me.elementMouseOver['_div']) {4387 }4388 me._tt_information.ggUpdateConditionTimer();4389 }4390 this.hotspotTimerEvent();4391 } else4392 if (hotspot.skinid=='ht_image') {4393 this.__div=document.createElement('div');4394 this.__div.ggId="ht_image";4395 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4396 this.__div.ggVisible=true;4397 this.__div.className='ggskin ggskin_hotspot ';4398 this.__div.ggType='hotspot';4399 hs ='';4400 hs+='height : 5px;';4401 hs+='left : 435px;';4402 hs+='position : absolute;';4403 hs+='top : 28px;';4404 hs+='visibility : inherit;';4405 hs+='width : 5px;';4406 this.__div.setAttribute('style',hs);4407 this.__div.style[domTransform + 'Origin']='50% 50%';4408 me.__div.ggIsActive=function() {4409 return me.player.getCurrentNode()==this.ggElementNodeId();4410 }4411 me.__div.ggElementNodeId=function() {4412 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);4413 }4414 this.__div.onclick=function () {4415 me.skin._image_popup.style[domTransition]='none';4416 me.skin._image_popup.style.visibility=(Number(me.skin._image_popup.style.opacity)>0||!me.skin._image_popup.style.opacity)?'inherit':'hidden';4417 me.skin._image_popup.ggVisible=true;4418 me.skin._popup_image.ggText=me.player.getBasePath()+""+me.hotspot.url;4419 me.skin._popup_image__img.src=me.skin._popup_image.ggText;4420 me.skin._screentint.style[domTransition]='none';4421 me.skin._screentint.style.visibility=(Number(me.skin._screentint.style.opacity)>0||!me.skin._screentint.style.opacity)?'inherit':'hidden';4422 me.skin._screentint.ggVisible=true;4423 me.skin.hotspotProxyClick(me.hotspot.id);4424 }4425 this.__div.onmouseover=function () {4426 me.player.setActiveHotspot(me.hotspot);4427 me.elementMouseOver['_div']=true;4428 me.skin.hotspotProxyOver(me.hotspot.id);4429 }4430 this.__div.onmouseout=function () {4431 me.player.setActiveHotspot(null);4432 me.elementMouseOver['_div']=false;4433 me.skin.hotspotProxyOut(me.hotspot.id);4434 }4435 this.__div.ontouchend=function () {4436 me.elementMouseOver['_div']=false;4437 }4438 this.__div.ggUpdatePosition=function () {4439 }4440 this._hstext_image=document.createElement('div');4441 this._hstext_image__text=document.createElement('div');4442 this._hstext_image.className='ggskin ggskin_textdiv';4443 this._hstext_image.ggTextDiv=this._hstext_image__text;4444 this._hstext_image.ggId="hstext_image";4445 this._hstext_image.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4446 this._hstext_image.ggVisible=false;4447 this._hstext_image.className='ggskin ggskin_text ';4448 this._hstext_image.ggType='text';4449 hs ='';4450 hs+='height : 17px;';4451 hs+='left : -51px;';4452 hs+='position : absolute;';4453 hs+='top : 20px;';4454 hs+='visibility : hidden;';4455 hs+='width : 95px;';4456 this._hstext_image.setAttribute('style',hs);4457 this._hstext_image.style[domTransform + 'Origin']='50% 50%';4458 hs ='position:absolute;';4459 hs+='left: 0px;';4460 hs+='top: 0px;';4461 hs+='width: 95px;';4462 hs+='height: auto;';4463 hs+='background: #ffffff;';4464 hs+='background: rgba(255,255,255,0.705882);';4465 hs+='border: 1px solid #000000;';4466 hs+='border-radius: 5px;';4467 hs+=cssPrefix + 'border-radius: 5px;';4468 hs+='color: rgba(0,0,0,1);';4469 hs+='text-align: center;';4470 hs+='white-space: pre-wrap;';4471 hs+='padding: 1px 2px 1px 2px;';4472 hs+='overflow: hidden;';4473 this._hstext_image__text.setAttribute('style',hs);4474 this._hstext_image__text.innerHTML=me.hotspot.title;4475 this._hstext_image.appendChild(this._hstext_image__text);4476 me._hstext_image.ggIsActive=function() {4477 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4478 return this.parentNode.ggIsActive();4479 }4480 return false;4481 }4482 me._hstext_image.ggElementNodeId=function() {4483 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4484 return this.parentNode.ggElementNodeId();4485 }4486 return me.ggNodeId;4487 }4488 me._hstext_image.ggCurrentLogicStateVisible = -1;4489 this._hstext_image.ggUpdateConditionTimer=function () {4490 var newLogicStateVisible;4491 if (4492 (me.elementMouseOver['_div'] == true)4493 )4494 {4495 newLogicStateVisible = 0;4496 }4497 else {4498 newLogicStateVisible = -1;4499 }4500 if (me._hstext_image.ggCurrentLogicStateVisible != newLogicStateVisible) {4501 me._hstext_image.ggCurrentLogicStateVisible = newLogicStateVisible;4502 me._hstext_image.style[domTransition]='';4503 if (me._hstext_image.ggCurrentLogicStateVisible == 0) {4504 me._hstext_image.style.visibility=(Number(me._hstext_image.style.opacity)>0||!me._hstext_image.style.opacity)?'inherit':'hidden';4505 me._hstext_image.ggVisible=true;4506 }4507 else {4508 me._hstext_image.style.visibility="hidden";4509 me._hstext_image.ggVisible=false;4510 }4511 }4512 }4513 this._hstext_image.ggUpdatePosition=function () {4514 }4515 this.__div.appendChild(this._hstext_image);4516 this._hsimage_image=document.createElement('div');4517 this._hsimage_image__img=document.createElement('img');4518 this._hsimage_image__img.className='ggskin ggskin_svg';4519 this._hsimage_image__img.setAttribute('src',basePath + 'images/hsimage_image.svg');4520 this._hsimage_image__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');4521 this._hsimage_image__img['ondragstart']=function() { return false; };4522 this._hsimage_image.appendChild(this._hsimage_image__img);4523 this._hsimage_image.ggId="hsimage_image";4524 this._hsimage_image.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4525 this._hsimage_image.ggVisible=true;4526 this._hsimage_image.className='ggskin ggskin_svg ';4527 this._hsimage_image.ggType='svg';4528 hs ='';4529 hs+='cursor : pointer;';4530 hs+='height : 50px;';4531 hs+='left : -24px;';4532 hs+='position : absolute;';4533 hs+='top : -24px;';4534 hs+='visibility : inherit;';4535 hs+='width : 50px;';4536 this._hsimage_image.setAttribute('style',hs);4537 this._hsimage_image.style[domTransform + 'Origin']='50% 50%';4538 me._hsimage_image.ggIsActive=function() {4539 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4540 return this.parentNode.ggIsActive();4541 }4542 return false;4543 }4544 me._hsimage_image.ggElementNodeId=function() {4545 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4546 return this.parentNode.ggElementNodeId();4547 }4548 return me.ggNodeId;4549 }4550 this._hsimage_image.ggUpdatePosition=function () {4551 }4552 this.__div.appendChild(this._hsimage_image);4553 this.hotspotTimerEvent=function() {4554 setTimeout(function() { me.hotspotTimerEvent(); }, 10);4555 if (me.elementMouseOver['_div']) {4556 }4557 me._hstext_image.ggUpdateConditionTimer();4558 }4559 this.hotspotTimerEvent();4560 } else4561 {4562 this.__div=document.createElement('div');4563 this.__div.ggId="ht_url";4564 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4565 this.__div.ggVisible=true;4566 this.__div.className='ggskin ggskin_hotspot ';4567 this.__div.ggType='hotspot';4568 hs ='';4569 hs+='height : 5px;';4570 hs+='left : 538px;';4571 hs+='position : absolute;';4572 hs+='top : 27px;';4573 hs+='visibility : inherit;';4574 hs+='width : 5px;';4575 this.__div.setAttribute('style',hs);4576 this.__div.style[domTransform + 'Origin']='50% 50%';4577 me.__div.ggIsActive=function() {4578 return me.player.getCurrentNode()==this.ggElementNodeId();4579 }4580 me.__div.ggElementNodeId=function() {4581 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);4582 }4583 this.__div.onclick=function () {4584 me.player.openUrl(me.hotspot.url,me.hotspot.target);4585 me.skin.hotspotProxyClick(me.hotspot.id);4586 }4587 this.__div.onmouseover=function () {4588 me.player.setActiveHotspot(me.hotspot);4589 me.elementMouseOver['_div']=true;4590 me.skin.hotspotProxyOver(me.hotspot.id);4591 }4592 this.__div.onmouseout=function () {4593 me.player.setActiveHotspot(null);4594 me.elementMouseOver['_div']=false;4595 me.skin.hotspotProxyOut(me.hotspot.id);4596 }4597 this.__div.ontouchend=function () {4598 me.elementMouseOver['_div']=false;4599 }4600 this.__div.ggUpdatePosition=function () {4601 }4602 this._hsimage_url=document.createElement('div');4603 this._hsimage_url__img=document.createElement('img');4604 this._hsimage_url__img.className='ggskin ggskin_svg';4605 this._hsimage_url__img.setAttribute('src',basePath + 'images/hsimage_url.svg');4606 this._hsimage_url__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');4607 this._hsimage_url__img['ondragstart']=function() { return false; };4608 this._hsimage_url.appendChild(this._hsimage_url__img);4609 this._hsimage_url.ggId="hsimage_url";4610 this._hsimage_url.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4611 this._hsimage_url.ggVisible=true;4612 this._hsimage_url.className='ggskin ggskin_svg ';4613 this._hsimage_url.ggType='svg';4614 hs ='';4615 hs+='cursor : pointer;';4616 hs+='height : 32px;';4617 hs+='left : -16px;';4618 hs+='position : absolute;';4619 hs+='top : -16px;';4620 hs+='visibility : inherit;';4621 hs+='width : 32px;';4622 this._hsimage_url.setAttribute('style',hs);4623 this._hsimage_url.style[domTransform + 'Origin']='50% 50%';4624 me._hsimage_url.ggIsActive=function() {4625 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4626 return this.parentNode.ggIsActive();4627 }4628 return false;4629 }4630 me._hsimage_url.ggElementNodeId=function() {4631 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4632 return this.parentNode.ggElementNodeId();4633 }4634 return me.ggNodeId;4635 }4636 this._hsimage_url.ggUpdatePosition=function () {4637 }4638 this.__div.appendChild(this._hsimage_url);4639 this._hstext_url=document.createElement('div');4640 this._hstext_url__text=document.createElement('div');4641 this._hstext_url.className='ggskin ggskin_textdiv';4642 this._hstext_url.ggTextDiv=this._hstext_url__text;4643 this._hstext_url.ggId="hstext_url";4644 this._hstext_url.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4645 this._hstext_url.ggVisible=true;4646 this._hstext_url.className='ggskin ggskin_text ';4647 this._hstext_url.ggType='text';4648 hs ='';4649 hs+='height : 17px;';4650 hs+='left : -50px;';4651 hs+='opacity : 0;';4652 hs+='position : absolute;';4653 hs+='top : 21px;';4654 hs+='visibility : hidden;';4655 hs+='width : 95px;';4656 this._hstext_url.setAttribute('style',hs);4657 this._hstext_url.style[domTransform + 'Origin']='50% 50%';4658 hs ='position:absolute;';4659 hs+='left: 0px;';4660 hs+='top: 0px;';4661 hs+='width: auto;';4662 hs+='height: auto;';4663 hs+='background: #ffffff;';4664 hs+='background: rgba(255,255,255,0.705882);';4665 hs+='border: 1px solid #000000;';4666 hs+='border-radius: 5px;';4667 hs+=cssPrefix + 'border-radius: 5px;';4668 hs+='color: rgba(0,0,0,1);';4669 hs+='text-align: center;';4670 hs+='white-space: nowrap;';4671 hs+='padding: 1px 2px 1px 2px;';4672 hs+='overflow: hidden;';4673 this._hstext_url__text.setAttribute('style',hs);4674 this._hstext_url__text.innerHTML=me.hotspot.title;4675 this._hstext_url.appendChild(this._hstext_url__text);4676 me._hstext_url.ggIsActive=function() {4677 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4678 return this.parentNode.ggIsActive();4679 }4680 return false;4681 }4682 me._hstext_url.ggElementNodeId=function() {4683 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4684 return this.parentNode.ggElementNodeId();4685 }4686 return me.ggNodeId;4687 }4688 me._hstext_url.ggCurrentLogicStateAlpha = -1;4689 this._hstext_url.ggUpdateConditionTimer=function () {4690 var newLogicStateAlpha;4691 if (4692 (me.elementMouseOver['_div'] == true)4693 )4694 {4695 newLogicStateAlpha = 0;4696 }4697 else {4698 newLogicStateAlpha = -1;4699 }4700 if (me._hstext_url.ggCurrentLogicStateAlpha != newLogicStateAlpha) {4701 me._hstext_url.ggCurrentLogicStateAlpha = newLogicStateAlpha;4702 me._hstext_url.style[domTransition]='opacity 500ms ease 0ms, visibility 500ms ease 0ms';4703 if (me._hstext_url.ggCurrentLogicStateAlpha == 0) {4704 me._hstext_url.style.visibility=me._hstext_url.ggVisible?'inherit':'hidden';4705 me._hstext_url.style.opacity=1;4706 }4707 else {4708 me._hstext_url.style.visibility="hidden";4709 me._hstext_url.style.opacity=0;4710 }4711 }4712 }4713 this._hstext_url.ggUpdatePosition=function () {4714 this.style[domTransition]='none';4715 this.ggTextDiv.style.left=((99-this.ggTextDiv.offsetWidth)/2) + 'px';4716 }4717 this.__div.appendChild(this._hstext_url);4718 this.hotspotTimerEvent=function() {4719 setTimeout(function() { me.hotspotTimerEvent(); }, 10);4720 if (me.elementMouseOver['_div']) {4721 }4722 me._hstext_url.ggUpdateConditionTimer();4723 }4724 this.hotspotTimerEvent();4725 }4726 };4727 this.addSkinHotspot=function(hotspot) {4728 return new SkinHotspotClass(me,hotspot);4729 }4730 function SkinElement_marker_normal_Class(skinObj,ggParent) {4731 var me=this;4732 var flag=false;4733 this.player=skinObj.player;4734 this.skin=skinObj;4735 this.ggParent=ggParent;4736 var nodeId=ggParent.ggElementNodeId();4737 this.ggNodeId=nodeId;4738 this.ggUserdata=this.skin.player.getNodeUserdata(nodeId);4739 this.elementMouseDown=[];4740 this.elementMouseOver=[];4741 4742 this.findElements=function(id,regex) {4743 return me.skin.findElements(id,regex);4744 }4745 4746 this._marker_normal=document.createElement('div');4747 this._marker_normal__img=document.createElement('img');4748 this._marker_normal__img.className='ggskin ggskin_svg';4749 this._marker_normal__img.setAttribute('src',basePath + 'images/marker_normal.svg');4750 this._marker_normal__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');4751 this._marker_normal__img['ondragstart']=function() { return false; };4752 this._marker_normal.appendChild(this._marker_normal__img);4753 this._marker_normal.ggId="marker_normal";4754 this._marker_normal.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4755 this._marker_normal.ggVisible=true;4756 this._marker_normal.className='ggskin ggskin_svg ';4757 this._marker_normal.ggType='svg';4758 hs ='';4759 hs+='height : 32px;';4760 hs+='left : 140px;';4761 hs+='position : absolute;';4762 hs+='top : 0px;';4763 hs+='visibility : inherit;';4764 hs+='width : 31px;';4765 this._marker_normal.setAttribute('style',hs);4766 this._marker_normal.style[domTransform + 'Origin']='50% 50%';4767 me._marker_normal.ggIsActive=function() {4768 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4769 return this.parentNode.ggIsActive();4770 }4771 return false;4772 }4773 me._marker_normal.ggElementNodeId=function() {4774 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4775 return this.parentNode.ggElementNodeId();4776 }4777 return me.ggNodeId;4778 }4779 this._marker_normal.ggUpdatePosition=function () {4780 }4781 this._marker_normal.ggNodeChangeMain=function() {4782 }4783 return this._marker_normal;4784 };4785 function SkinElement_marker_active_Class(skinObj,ggParent) {4786 var me=this;4787 var flag=false;4788 this.player=skinObj.player;4789 this.skin=skinObj;4790 this.ggParent=ggParent;4791 var nodeId=ggParent.ggElementNodeId();4792 this.ggNodeId=nodeId;4793 this.ggUserdata=this.skin.player.getNodeUserdata(nodeId);4794 this.elementMouseDown=[];4795 this.elementMouseOver=[];4796 4797 this.findElements=function(id,regex) {4798 return me.skin.findElements(id,regex);4799 }4800 4801 this._marker_active=document.createElement('div');4802 this._marker_active__img=document.createElement('img');4803 this._marker_active__img.className='ggskin ggskin_svg';4804 this._marker_active__img.setAttribute('src',basePath + 'images/marker_active.svg');4805 this._marker_active__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');4806 this._marker_active__img['ondragstart']=function() { return false; };4807 this._marker_active.appendChild(this._marker_active__img);4808 this._marker_active.ggId="marker_active";4809 this._marker_active.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };4810 this._marker_active.ggVisible=true;4811 this._marker_active.className='ggskin ggskin_svg ';4812 this._marker_active.ggType='svg';4813 hs ='';4814 hs+='height : 31px;';4815 hs+='left : 105px;';4816 hs+='position : absolute;';4817 hs+='top : 0px;';4818 hs+='visibility : inherit;';4819 hs+='width : 31px;';4820 this._marker_active.setAttribute('style',hs);4821 this._marker_active.style[domTransform + 'Origin']='50% 50%';4822 me._marker_active.ggIsActive=function() {4823 if ((this.parentNode) && (this.parentNode.ggIsActive)) {4824 return this.parentNode.ggIsActive();4825 }4826 return false;4827 }4828 me._marker_active.ggElementNodeId=function() {4829 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {4830 return this.parentNode.ggElementNodeId();4831 }4832 return me.ggNodeId;4833 }4834 this._marker_active.ggUpdatePosition=function () {4835 }4836 this._marker_active.ggNodeChangeMain=function() {4837 }4838 return this._marker_active;4839 };4840 this.addSkin();...
skin_ycbwg_withoutvr01.js
Source:skin_ycbwg_withoutvr01.js
1// Garden Gnome Software - Skin2// Pano2VR 5.2.4/159963// Filename: skin_user01.ggsk4// Generated å¨ä¸ 7æ 29 16:12:32 20195function pano2vrSkin(player,base) {6 var ggSkinVars = [];7 ggSkinVars['var_ht'] = false;8 var me=this;9 var flag=false;10 var nodeMarker=[];11 var activeNodeMarker=[];12 this.player=player;13 this.player.skinObj=this;14 this.divSkin=player.divSkin;15 this.ggUserdata=me.player.userdata;16 this.lastSize={ w: -1,h: -1 };17 var basePath="";18 // auto detect base path19 if (base=='?') {20 var scripts = document.getElementsByTagName('script');21 for(var i=0;i<scripts.length;i++) {22 var src=scripts[i].src;23 if (src.indexOf('skin.js')>=0) {24 var p=src.lastIndexOf('/');25 if (p>=0) {26 basePath=src.substr(0,p+1);27 }28 }29 }30 } else31 if (base) {32 basePath=base;33 }34 this.elementMouseDown=[];35 this.elementMouseOver=[];36 var cssPrefix='';37 var domTransition='transition';38 var domTransform='transform';39 var prefixes='Webkit,Moz,O,ms,Ms'.split(',');40 var i;41 if (typeof document.body.style['transform'] == 'undefined') {42 for(var i=0;i<prefixes.length;i++) {43 if (typeof document.body.style[prefixes[i] + 'Transform'] !== 'undefined') {44 cssPrefix='-' + prefixes[i].toLowerCase() + '-';45 domTransition=prefixes[i] + 'Transition';46 domTransform=prefixes[i] + 'Transform';47 }48 }49 }50 51 this.player.setMargins(0,0,0,0);52 53 this.updateSize=function(startElement) {54 var stack=[];55 stack.push(startElement);56 while(stack.length>0) {57 var e=stack.pop();58 if (e.ggUpdatePosition) {59 e.ggUpdatePosition();60 }61 if (e.hasChildNodes()) {62 for(var i=0;i<e.childNodes.length;i++) {63 stack.push(e.childNodes[i]);64 }65 }66 }67 }68 69 parameterToTransform=function(p) {70 var hs='translate(' + p.rx + 'px,' + p.ry + 'px) rotate(' + p.a + 'deg) scale(' + p.sx + ',' + p.sy + ')';71 return hs;72 }73 74 this.findElements=function(id,regex) {75 var r=[];76 var stack=[];77 var pat=new RegExp(id,'');78 stack.push(me.divSkin);79 while(stack.length>0) {80 var e=stack.pop();81 if (regex) {82 if (pat.test(e.ggId)) r.push(e);83 } else {84 if (e.ggId==id) r.push(e);85 }86 if (e.hasChildNodes()) {87 for(var i=0;i<e.childNodes.length;i++) {88 stack.push(e.childNodes[i]);89 }90 }91 }92 return r;93 }94 95 this.addSkin=function() {96 var hs='';97 this.ggCurrentTime=new Date().getTime();98 this._container_base=document.createElement('div');99 this._container_base.ggId="Container base";100 this._container_base.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };101 this._container_base.ggVisible=true;102 this._container_base.className='ggskin ggskin_container ';103 this._container_base.ggType='container';104 hs ='';105 hs+='cursor : pointer;';106 hs+='height : 94px;';107 hs+='left : 87px;';108 hs+='position : absolute;';109 hs+='top : 75.21%;';110 hs+='visibility : inherit;';111 hs+='width : 391px;';112 hs+='pointer-events:none;';113 this._container_base.setAttribute('style',hs);114 this._container_base.style[domTransform + 'Origin']='50% 50%';115 me._container_base.ggIsActive=function() {116 return false;117 }118 me._container_base.ggElementNodeId=function() {119 return me.player.getCurrentNode();120 }121 this._container_base.ggUpdatePosition=function (useTransition) {122 }123 this._image_4=document.createElement('div');124 this._image_4__img=document.createElement('img');125 this._image_4__img.className='ggskin ggskin_image';126 this._image_4__img.setAttribute('src',basePath + 'images/image_4.png');127 this._image_4__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');128 this._image_4__img.className='ggskin ggskin_image';129 this._image_4__img['ondragstart']=function() { return false; };130 me.player.checkLoaded.push(this._image_4__img);131 this._image_4.appendChild(this._image_4__img);132 this._image_4.ggId="Image 4";133 this._image_4.ggTop=-56;134 this._image_4.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };135 this._image_4.ggVisible=true;136 this._image_4.className='ggskin ggskin_image ';137 this._image_4.ggType='image';138 hs ='';139 hs+='cursor : pointer;';140 hs+='height : 40px;';141 hs+='left : 74.93%;';142 hs+='position : absolute;';143 hs+='top : -56px;';144 hs+='visibility : inherit;';145 hs+='width : 40px;';146 hs+='pointer-events:auto;';147 this._image_4.setAttribute('style',hs);148 this._image_4.style[domTransform + 'Origin']='50% 50%';149 me._image_4.ggIsActive=function() {150 if ((this.parentNode) && (this.parentNode.ggIsActive)) {151 return this.parentNode.ggIsActive();152 }153 return false;154 }155 me._image_4.ggElementNodeId=function() {156 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {157 return this.parentNode.ggElementNodeId();158 }159 return me.player.getCurrentNode();160 }161 this._image_4.onclick=function (e) {162 me.player.enterFullscreen();163 me._image_5.style[domTransition]='none';164 me._image_5.style.visibility=(Number(me._image_5.style.opacity)>0||!me._image_5.style.opacity)?'inherit':'hidden';165 me._image_5.ggVisible=true;166 me._image_4.style[domTransition]='none';167 me._image_4.style.visibility='hidden';168 me._image_4.ggVisible=false;169 }170 this._image_4.onmouseover=function (e) {171 me._image_4.style[domTransition]='none';172 me._image_4.ggParameter.sx=1.1;me._image_4.ggParameter.sy=1.1;173 me._image_4.style[domTransform]=parameterToTransform(me._image_4.ggParameter);174 }175 this._image_4.onmouseout=function (e) {176 me._image_4.style[domTransition]='none';177 me._image_4.ggParameter.sx=1;me._image_4.ggParameter.sy=1;178 me._image_4.style[domTransform]=parameterToTransform(me._image_4.ggParameter);179 }180 this._image_4.ggUpdatePosition=function (useTransition) {181 if (useTransition==='undefined') {182 useTransition = false;183 }184 if (!useTransition) {185 this.style[domTransition]='none';186 }187 if (this.parentNode) {188 var h=this.parentNode.offsetHeight;189 this.style.top=(this.ggTop - 0 + h) + 'px';190 }191 }192 this._container_base.appendChild(this._image_4);193 this._image_5=document.createElement('div');194 this._image_5__img=document.createElement('img');195 this._image_5__img.className='ggskin ggskin_image';196 this._image_5__img.setAttribute('src',basePath + 'images/image_5.png');197 this._image_5__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');198 this._image_5__img.className='ggskin ggskin_image';199 this._image_5__img['ondragstart']=function() { return false; };200 me.player.checkLoaded.push(this._image_5__img);201 this._image_5.appendChild(this._image_5__img);202 this._image_5.ggId="Image 5";203 this._image_5.ggTop=-56;204 this._image_5.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };205 this._image_5.ggVisible=true;206 this._image_5.className='ggskin ggskin_image ';207 this._image_5.ggType='image';208 hs ='';209 hs+='cursor : pointer;';210 hs+='height : 40px;';211 hs+='left : 74.93%;';212 hs+='position : absolute;';213 hs+='top : -56px;';214 hs+='visibility : inherit;';215 hs+='width : 40px;';216 hs+='pointer-events:auto;';217 this._image_5.setAttribute('style',hs);218 this._image_5.style[domTransform + 'Origin']='50% 50%';219 me._image_5.ggIsActive=function() {220 if ((this.parentNode) && (this.parentNode.ggIsActive)) {221 return this.parentNode.ggIsActive();222 }223 return false;224 }225 me._image_5.ggElementNodeId=function() {226 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {227 return this.parentNode.ggElementNodeId();228 }229 return me.player.getCurrentNode();230 }231 this._image_5.onclick=function (e) {232 me.player.exitFullscreen();233 me._image_4.style[domTransition]='none';234 me._image_4.style.visibility=(Number(me._image_4.style.opacity)>0||!me._image_4.style.opacity)?'inherit':'hidden';235 me._image_4.ggVisible=true;236 me._image_5.style[domTransition]='none';237 me._image_5.style.visibility='hidden';238 me._image_5.ggVisible=false;239 }240 this._image_5.onmouseover=function (e) {241 me._image_5.style[domTransition]='none';242 me._image_5.ggParameter.sx=1.1;me._image_5.ggParameter.sy=1.1;243 me._image_5.style[domTransform]=parameterToTransform(me._image_5.ggParameter);244 }245 this._image_5.onmouseout=function (e) {246 me._image_5.style[domTransition]='none';247 me._image_5.ggParameter.sx=1;me._image_5.ggParameter.sy=1;248 me._image_5.style[domTransform]=parameterToTransform(me._image_5.ggParameter);249 }250 this._image_5.ggUpdatePosition=function (useTransition) {251 if (useTransition==='undefined') {252 useTransition = false;253 }254 if (!useTransition) {255 this.style[domTransition]='none';256 }257 if (this.parentNode) {258 var h=this.parentNode.offsetHeight;259 this.style.top=(this.ggTop - 0 + h) + 'px';260 }261 }262 this._container_base.appendChild(this._image_5);263 this._image_131=document.createElement('div');264 this._image_131__img=document.createElement('img');265 this._image_131__img.className='ggskin ggskin_image';266 this._image_131__img.setAttribute('src',basePath + 'images/image_131.png');267 this._image_131__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');268 this._image_131__img.className='ggskin ggskin_image';269 this._image_131__img['ondragstart']=function() { return false; };270 me.player.checkLoaded.push(this._image_131__img);271 this._image_131.appendChild(this._image_131__img);272 this._image_131.ggId="Image 13";273 this._image_131.ggTop=-56;274 this._image_131.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };275 this._image_131.ggVisible=true;276 this._image_131.className='ggskin ggskin_image ';277 this._image_131.ggType='image';278 hs ='';279 hs+='cursor : pointer;';280 hs+='height : 40px;';281 hs+='left : 87.72%;';282 hs+='position : absolute;';283 hs+='top : -56px;';284 hs+='visibility : inherit;';285 hs+='width : 40px;';286 hs+='pointer-events:auto;';287 this._image_131.setAttribute('style',hs);288 this._image_131.style[domTransform + 'Origin']='50% 50%';289 me._image_131.ggIsActive=function() {290 if ((this.parentNode) && (this.parentNode.ggIsActive)) {291 return this.parentNode.ggIsActive();292 }293 return false;294 }295 me._image_131.ggElementNodeId=function() {296 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {297 return this.parentNode.ggElementNodeId();298 }299 return me.player.getCurrentNode();300 }301 this._image_131.onclick=function (e) {302 me.player.startAutorotate("0.05");303 me._image_14.style[domTransition]='none';304 me._image_14.style.visibility=(Number(me._image_14.style.opacity)>0||!me._image_14.style.opacity)?'inherit':'hidden';305 me._image_14.ggVisible=true;306 me._image_131.style[domTransition]='none';307 me._image_131.style.visibility='hidden';308 me._image_131.ggVisible=false;309 }310 this._image_131.onmouseover=function (e) {311 me._image_131.style[domTransition]='none';312 me._image_131.ggParameter.sx=1.1;me._image_131.ggParameter.sy=1.1;313 me._image_131.style[domTransform]=parameterToTransform(me._image_131.ggParameter);314 }315 this._image_131.onmouseout=function (e) {316 me._image_131.style[domTransition]='none';317 me._image_131.ggParameter.sx=1;me._image_131.ggParameter.sy=1;318 me._image_131.style[domTransform]=parameterToTransform(me._image_131.ggParameter);319 }320 this._image_131.ggUpdatePosition=function (useTransition) {321 if (useTransition==='undefined') {322 useTransition = false;323 }324 if (!useTransition) {325 this.style[domTransition]='none';326 }327 if (this.parentNode) {328 var h=this.parentNode.offsetHeight;329 this.style.top=(this.ggTop - 0 + h) + 'px';330 }331 }332 this._container_base.appendChild(this._image_131);333 this._image_14=document.createElement('div');334 this._image_14__img=document.createElement('img');335 this._image_14__img.className='ggskin ggskin_image';336 this._image_14__img.setAttribute('src',basePath + 'images/image_14.png');337 this._image_14__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');338 this._image_14__img.className='ggskin ggskin_image';339 this._image_14__img['ondragstart']=function() { return false; };340 me.player.checkLoaded.push(this._image_14__img);341 this._image_14.appendChild(this._image_14__img);342 this._image_14.ggId="Image 14";343 this._image_14.ggTop=-56;344 this._image_14.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };345 this._image_14.ggVisible=true;346 this._image_14.className='ggskin ggskin_image ';347 this._image_14.ggType='image';348 hs ='';349 hs+='cursor : pointer;';350 hs+='height : 40px;';351 hs+='left : 87.47%;';352 hs+='position : absolute;';353 hs+='top : -56px;';354 hs+='visibility : inherit;';355 hs+='width : 40px;';356 hs+='pointer-events:auto;';357 this._image_14.setAttribute('style',hs);358 this._image_14.style[domTransform + 'Origin']='50% 50%';359 me._image_14.ggIsActive=function() {360 if ((this.parentNode) && (this.parentNode.ggIsActive)) {361 return this.parentNode.ggIsActive();362 }363 return false;364 }365 me._image_14.ggElementNodeId=function() {366 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {367 return this.parentNode.ggElementNodeId();368 }369 return me.player.getCurrentNode();370 }371 this._image_14.onclick=function (e) {372 me.player.stopAutorotate();373 me._image_131.style[domTransition]='none';374 me._image_131.style.visibility=(Number(me._image_131.style.opacity)>0||!me._image_131.style.opacity)?'inherit':'hidden';375 me._image_131.ggVisible=true;376 me._image_14.style[domTransition]='none';377 me._image_14.style.visibility='hidden';378 me._image_14.ggVisible=false;379 }380 this._image_14.onmouseover=function (e) {381 me._image_14.style[domTransition]='none';382 me._image_14.ggParameter.sx=1.1;me._image_14.ggParameter.sy=1.1;383 me._image_14.style[domTransform]=parameterToTransform(me._image_14.ggParameter);384 }385 this._image_14.onmouseout=function (e) {386 me._image_14.style[domTransition]='none';387 me._image_14.ggParameter.sx=1;me._image_14.ggParameter.sy=1;388 me._image_14.style[domTransform]=parameterToTransform(me._image_14.ggParameter);389 }390 this._image_14.ggUpdatePosition=function (useTransition) {391 if (useTransition==='undefined') {392 useTransition = false;393 }394 if (!useTransition) {395 this.style[domTransition]='none';396 }397 if (this.parentNode) {398 var h=this.parentNode.offsetHeight;399 this.style.top=(this.ggTop - 0 + h) + 'px';400 }401 }402 this._container_base.appendChild(this._image_14);403 this._image_2=document.createElement('div');404 this._image_2__img=document.createElement('img');405 this._image_2__img.className='ggskin ggskin_image';406 this._image_2__img.setAttribute('src',basePath + 'images/image_2.png');407 this._image_2__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');408 this._image_2__img.className='ggskin ggskin_image';409 this._image_2__img['ondragstart']=function() { return false; };410 me.player.checkLoaded.push(this._image_2__img);411 this._image_2.appendChild(this._image_2__img);412 this._image_2.ggId="Image 2";413 this._image_2.ggTop=-30;414 this._image_2.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };415 this._image_2.ggVisible=true;416 this._image_2.className='ggskin ggskin_image ';417 this._image_2.ggType='image';418 hs ='';419 hs+='cursor : pointer;';420 hs+='height : 40px;';421 hs+='left : 22.76%;';422 hs+='position : absolute;';423 hs+='top : -30px;';424 hs+='visibility : inherit;';425 hs+='width : 40px;';426 hs+='pointer-events:auto;';427 this._image_2.setAttribute('style',hs);428 this._image_2.style[domTransform + 'Origin']='50% 50%';429 me._image_2.ggIsActive=function() {430 if ((this.parentNode) && (this.parentNode.ggIsActive)) {431 return this.parentNode.ggIsActive();432 }433 return false;434 }435 me._image_2.ggElementNodeId=function() {436 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {437 return this.parentNode.ggElementNodeId();438 }439 return me.player.getCurrentNode();440 }441 this._image_2.onmouseover=function (e) {442 me._image_2.style[domTransition]='none';443 me._image_2.ggParameter.sx=1.1;me._image_2.ggParameter.sy=1.1;444 me._image_2.style[domTransform]=parameterToTransform(me._image_2.ggParameter);445 }446 this._image_2.onmouseout=function (e) {447 me._image_2.style[domTransition]='none';448 me._image_2.ggParameter.sx=1;me._image_2.ggParameter.sy=1;449 me._image_2.style[domTransform]=parameterToTransform(me._image_2.ggParameter);450 me.elementMouseDown['image_2']=false;451 }452 this._image_2.onmousedown=function (e) {453 me.elementMouseDown['image_2']=true;454 }455 this._image_2.onmouseup=function (e) {456 me.elementMouseDown['image_2']=false;457 }458 this._image_2.ontouchend=function (e) {459 me.elementMouseDown['image_2']=false;460 }461 this._image_2.ggUpdatePosition=function (useTransition) {462 if (useTransition==='undefined') {463 useTransition = false;464 }465 if (!useTransition) {466 this.style[domTransition]='none';467 }468 if (this.parentNode) {469 var h=this.parentNode.offsetHeight;470 this.style.top=(this.ggTop - 0 + h) + 'px';471 }472 }473 this._container_base.appendChild(this._image_2);474 this._image_9=document.createElement('div');475 this._image_9__img=document.createElement('img');476 this._image_9__img.className='ggskin ggskin_image';477 this._image_9__img.setAttribute('src',basePath + 'images/image_9.png');478 this._image_9__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');479 this._image_9__img.className='ggskin ggskin_image';480 this._image_9__img['ondragstart']=function() { return false; };481 me.player.checkLoaded.push(this._image_9__img);482 this._image_9.appendChild(this._image_9__img);483 this._image_9.ggId="Image 9";484 this._image_9.ggTop=-56;485 this._image_9.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };486 this._image_9.ggVisible=true;487 this._image_9.className='ggskin ggskin_image ';488 this._image_9.ggType='image';489 hs ='';490 hs+='cursor : pointer;';491 hs+='height : 40px;';492 hs+='left : 11.47%;';493 hs+='position : absolute;';494 hs+='top : -56px;';495 hs+='visibility : inherit;';496 hs+='width : 40px;';497 hs+='pointer-events:auto;';498 this._image_9.setAttribute('style',hs);499 this._image_9.style[domTransform + 'Origin']='50% 50%';500 me._image_9.ggIsActive=function() {501 if ((this.parentNode) && (this.parentNode.ggIsActive)) {502 return this.parentNode.ggIsActive();503 }504 return false;505 }506 me._image_9.ggElementNodeId=function() {507 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {508 return this.parentNode.ggElementNodeId();509 }510 return me.player.getCurrentNode();511 }512 this._image_9.onmouseover=function (e) {513 me._image_9.style[domTransition]='none';514 me._image_9.ggParameter.sx=1.1;me._image_9.ggParameter.sy=1.1;515 me._image_9.style[domTransform]=parameterToTransform(me._image_9.ggParameter);516 }517 this._image_9.onmouseout=function (e) {518 me._image_9.style[domTransition]='none';519 me._image_9.ggParameter.sx=1;me._image_9.ggParameter.sy=1;520 me._image_9.style[domTransform]=parameterToTransform(me._image_9.ggParameter);521 me.elementMouseDown['image_9']=false;522 }523 this._image_9.onmousedown=function (e) {524 me.elementMouseDown['image_9']=true;525 }526 this._image_9.onmouseup=function (e) {527 me.elementMouseDown['image_9']=false;528 }529 this._image_9.ontouchend=function (e) {530 me.elementMouseDown['image_9']=false;531 }532 this._image_9.ggUpdatePosition=function (useTransition) {533 if (useTransition==='undefined') {534 useTransition = false;535 }536 if (!useTransition) {537 this.style[domTransition]='none';538 }539 if (this.parentNode) {540 var h=this.parentNode.offsetHeight;541 this.style.top=(this.ggTop - 0 + h) + 'px';542 }543 }544 this._container_base.appendChild(this._image_9);545 this._image_12=document.createElement('div');546 this._image_12__img=document.createElement('img');547 this._image_12__img.className='ggskin ggskin_image';548 this._image_12__img.setAttribute('src',basePath + 'images/image_12.png');549 this._image_12__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');550 this._image_12__img.className='ggskin ggskin_image';551 this._image_12__img['ondragstart']=function() { return false; };552 me.player.checkLoaded.push(this._image_12__img);553 this._image_12.appendChild(this._image_12__img);554 this._image_12.ggId="Image 12";555 this._image_12.ggTop=-56;556 this._image_12.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };557 this._image_12.ggVisible=true;558 this._image_12.className='ggskin ggskin_image ';559 this._image_12.ggType='image';560 hs ='';561 hs+='cursor : pointer;';562 hs+='height : 40px;';563 hs+='left : 35.04%;';564 hs+='position : absolute;';565 hs+='top : -56px;';566 hs+='visibility : inherit;';567 hs+='width : 40px;';568 hs+='pointer-events:auto;';569 this._image_12.setAttribute('style',hs);570 this._image_12.style[domTransform + 'Origin']='50% 50%';571 me._image_12.ggIsActive=function() {572 if ((this.parentNode) && (this.parentNode.ggIsActive)) {573 return this.parentNode.ggIsActive();574 }575 return false;576 }577 me._image_12.ggElementNodeId=function() {578 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {579 return this.parentNode.ggElementNodeId();580 }581 return me.player.getCurrentNode();582 }583 this._image_12.onmouseover=function (e) {584 me._image_12.style[domTransition]='none';585 me._image_12.ggParameter.sx=1.1;me._image_12.ggParameter.sy=1.1;586 me._image_12.style[domTransform]=parameterToTransform(me._image_12.ggParameter);587 }588 this._image_12.onmouseout=function (e) {589 me._image_12.style[domTransition]='none';590 me._image_12.ggParameter.sx=1;me._image_12.ggParameter.sy=1;591 me._image_12.style[domTransform]=parameterToTransform(me._image_12.ggParameter);592 me.elementMouseDown['image_12']=false;593 }594 this._image_12.onmousedown=function (e) {595 me.elementMouseDown['image_12']=true;596 }597 this._image_12.onmouseup=function (e) {598 me.elementMouseDown['image_12']=false;599 }600 this._image_12.ontouchend=function (e) {601 me.elementMouseDown['image_12']=false;602 }603 this._image_12.ggUpdatePosition=function (useTransition) {604 if (useTransition==='undefined') {605 useTransition = false;606 }607 if (!useTransition) {608 this.style[domTransition]='none';609 }610 if (this.parentNode) {611 var h=this.parentNode.offsetHeight;612 this.style.top=(this.ggTop - 0 + h) + 'px';613 }614 }615 this._container_base.appendChild(this._image_12);616 this._image_1=document.createElement('div');617 this._image_1__img=document.createElement('img');618 this._image_1__img.className='ggskin ggskin_image';619 this._image_1__img.setAttribute('src',basePath + 'images/image_1.png');620 this._image_1__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');621 this._image_1__img.className='ggskin ggskin_image';622 this._image_1__img['ondragstart']=function() { return false; };623 me.player.checkLoaded.push(this._image_1__img);624 this._image_1.appendChild(this._image_1__img);625 this._image_1.ggId="Image 1";626 this._image_1.ggTop=-56;627 this._image_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };628 this._image_1.ggVisible=true;629 this._image_1.className='ggskin ggskin_image ';630 this._image_1.ggType='image';631 hs ='';632 hs+='cursor : pointer;';633 hs+='height : 40px;';634 hs+='left : 49.1%;';635 hs+='position : absolute;';636 hs+='top : -56px;';637 hs+='visibility : inherit;';638 hs+='width : 40px;';639 hs+='pointer-events:auto;';640 this._image_1.setAttribute('style',hs);641 this._image_1.style[domTransform + 'Origin']='50% 50%';642 me._image_1.ggIsActive=function() {643 if ((this.parentNode) && (this.parentNode.ggIsActive)) {644 return this.parentNode.ggIsActive();645 }646 return false;647 }648 me._image_1.ggElementNodeId=function() {649 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {650 return this.parentNode.ggElementNodeId();651 }652 return me.player.getCurrentNode();653 }654 this._image_1.onmouseover=function (e) {655 me._image_1.style[domTransition]='none';656 me._image_1.ggParameter.sx=1.1;me._image_1.ggParameter.sy=1.1;657 me._image_1.style[domTransform]=parameterToTransform(me._image_1.ggParameter);658 }659 this._image_1.onmouseout=function (e) {660 me._image_1.style[domTransition]='none';661 me._image_1.ggParameter.sx=1;me._image_1.ggParameter.sy=1;662 me._image_1.style[domTransform]=parameterToTransform(me._image_1.ggParameter);663 me.elementMouseDown['image_1']=false;664 }665 this._image_1.onmousedown=function (e) {666 me.elementMouseDown['image_1']=true;667 }668 this._image_1.onmouseup=function (e) {669 me.elementMouseDown['image_1']=false;670 }671 this._image_1.ontouchend=function (e) {672 me.elementMouseDown['image_1']=false;673 }674 this._image_1.ggUpdatePosition=function (useTransition) {675 if (useTransition==='undefined') {676 useTransition = false;677 }678 if (!useTransition) {679 this.style[domTransition]='none';680 }681 if (this.parentNode) {682 var h=this.parentNode.offsetHeight;683 this.style.top=(this.ggTop - 0 + h) + 'px';684 }685 }686 this._container_base.appendChild(this._image_1);687 this._image_15=document.createElement('div');688 this._image_15__img=document.createElement('img');689 this._image_15__img.className='ggskin ggskin_image';690 this._image_15__img.setAttribute('src',basePath + 'images/image_15.png');691 this._image_15__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');692 this._image_15__img.className='ggskin ggskin_image';693 this._image_15__img['ondragstart']=function() { return false; };694 me.player.checkLoaded.push(this._image_15__img);695 this._image_15.appendChild(this._image_15__img);696 this._image_15.ggId="Image 15";697 this._image_15.ggTop=-56;698 this._image_15.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };699 this._image_15.ggVisible=true;700 this._image_15.className='ggskin ggskin_image ';701 this._image_15.ggType='image';702 hs ='';703 hs+='cursor : pointer;';704 hs+='height : 40px;';705 hs+='left : 62.15%;';706 hs+='position : absolute;';707 hs+='top : -56px;';708 hs+='visibility : inherit;';709 hs+='width : 40px;';710 hs+='pointer-events:auto;';711 this._image_15.setAttribute('style',hs);712 this._image_15.style[domTransform + 'Origin']='50% 50%';713 me._image_15.ggIsActive=function() {714 if ((this.parentNode) && (this.parentNode.ggIsActive)) {715 return this.parentNode.ggIsActive();716 }717 return false;718 }719 me._image_15.ggElementNodeId=function() {720 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {721 return this.parentNode.ggElementNodeId();722 }723 return me.player.getCurrentNode();724 }725 this._image_15.onmouseover=function (e) {726 me._image_15.style[domTransition]='none';727 me._image_15.ggParameter.sx=1.1;me._image_15.ggParameter.sy=1.1;728 me._image_15.style[domTransform]=parameterToTransform(me._image_15.ggParameter);729 }730 this._image_15.onmouseout=function (e) {731 me._image_15.style[domTransition]='none';732 me._image_15.ggParameter.sx=1;me._image_15.ggParameter.sy=1;733 me._image_15.style[domTransform]=parameterToTransform(me._image_15.ggParameter);734 me.elementMouseDown['image_15']=false;735 }736 this._image_15.onmousedown=function (e) {737 me.elementMouseDown['image_15']=true;738 }739 this._image_15.onmouseup=function (e) {740 me.elementMouseDown['image_15']=false;741 }742 this._image_15.ontouchend=function (e) {743 me.elementMouseDown['image_15']=false;744 }745 this._image_15.ggUpdatePosition=function (useTransition) {746 if (useTransition==='undefined') {747 useTransition = false;748 }749 if (!useTransition) {750 this.style[domTransition]='none';751 }752 if (this.parentNode) {753 var h=this.parentNode.offsetHeight;754 this.style.top=(this.ggTop - 0 + h) + 'px';755 }756 }757 this._container_base.appendChild(this._image_15);758 this._image_10=document.createElement('div');759 this._image_10__img=document.createElement('img');760 this._image_10__img.className='ggskin ggskin_image';761 this._image_10__img.setAttribute('src',basePath + 'images/image_10.png');762 this._image_10__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');763 this._image_10__img.className='ggskin ggskin_image';764 this._image_10__img['ondragstart']=function() { return false; };765 me.player.checkLoaded.push(this._image_10__img);766 this._image_10.appendChild(this._image_10__img);767 this._image_10.ggId="Image 10";768 this._image_10.ggTop=-56;769 this._image_10.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };770 this._image_10.ggVisible=true;771 this._image_10.className='ggskin ggskin_image ';772 this._image_10.ggType='image';773 hs ='';774 hs+='cursor : pointer;';775 hs+='height : 40px;';776 hs+='left : 100.26%;';777 hs+='position : absolute;';778 hs+='top : -56px;';779 hs+='visibility : inherit;';780 hs+='width : 40px;';781 hs+='pointer-events:auto;';782 this._image_10.setAttribute('style',hs);783 this._image_10.style[domTransform + 'Origin']='50% 50%';784 me._image_10.ggIsActive=function() {785 if ((this.parentNode) && (this.parentNode.ggIsActive)) {786 return this.parentNode.ggIsActive();787 }788 return false;789 }790 me._image_10.ggElementNodeId=function() {791 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {792 return this.parentNode.ggElementNodeId();793 }794 return me.player.getCurrentNode();795 }796 this._image_10.onclick=function (e) {797 me.player.pauseSound("Element01");798 me._image_11.style[domTransition]='none';799 me._image_11.style.visibility=(Number(me._image_11.style.opacity)>0||!me._image_11.style.opacity)?'inherit':'hidden';800 me._image_11.ggVisible=true;801 me._image_10.style[domTransition]='none';802 me._image_10.style.visibility='hidden';803 me._image_10.ggVisible=false;804 }805 this._image_10.onmouseover=function (e) {806 me._image_10.style[domTransition]='none';807 me._image_10.ggParameter.sx=1.1;me._image_10.ggParameter.sy=1.1;808 me._image_10.style[domTransform]=parameterToTransform(me._image_10.ggParameter);809 }810 this._image_10.onmouseout=function (e) {811 me._image_10.style[domTransition]='none';812 me._image_10.ggParameter.sx=1;me._image_10.ggParameter.sy=1;813 me._image_10.style[domTransform]=parameterToTransform(me._image_10.ggParameter);814 }815 this._image_10.ggUpdatePosition=function (useTransition) {816 if (useTransition==='undefined') {817 useTransition = false;818 }819 if (!useTransition) {820 this.style[domTransition]='none';821 }822 if (this.parentNode) {823 var h=this.parentNode.offsetHeight;824 this.style.top=(this.ggTop - 0 + h) + 'px';825 }826 }827 this._container_base.appendChild(this._image_10);828 this._image_11=document.createElement('div');829 this._image_11__img=document.createElement('img');830 this._image_11__img.className='ggskin ggskin_image';831 this._image_11__img.setAttribute('src',basePath + 'images/image_11.png');832 this._image_11__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');833 this._image_11__img.className='ggskin ggskin_image';834 this._image_11__img['ondragstart']=function() { return false; };835 me.player.checkLoaded.push(this._image_11__img);836 this._image_11.appendChild(this._image_11__img);837 this._image_11.ggId="Image 11";838 this._image_11.ggTop=-56;839 this._image_11.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };840 this._image_11.ggVisible=true;841 this._image_11.className='ggskin ggskin_image ';842 this._image_11.ggType='image';843 hs ='';844 hs+='cursor : pointer;';845 hs+='height : 40px;';846 hs+='left : 100.25%;';847 hs+='position : absolute;';848 hs+='top : -56px;';849 hs+='visibility : inherit;';850 hs+='width : 40px;';851 hs+='pointer-events:auto;';852 this._image_11.setAttribute('style',hs);853 this._image_11.style[domTransform + 'Origin']='50% 50%';854 me._image_11.ggIsActive=function() {855 if ((this.parentNode) && (this.parentNode.ggIsActive)) {856 return this.parentNode.ggIsActive();857 }858 return false;859 }860 me._image_11.ggElementNodeId=function() {861 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {862 return this.parentNode.ggElementNodeId();863 }864 return me.player.getCurrentNode();865 }866 this._image_11.onclick=function (e) {867 me.player.playSound("Element01","1");868 me._image_10.style[domTransition]='none';869 me._image_10.style.visibility=(Number(me._image_10.style.opacity)>0||!me._image_10.style.opacity)?'inherit':'hidden';870 me._image_10.ggVisible=true;871 me._image_11.style[domTransition]='none';872 me._image_11.style.visibility='hidden';873 me._image_11.ggVisible=false;874 }875 this._image_11.onmouseover=function (e) {876 me._image_11.style[domTransition]='none';877 me._image_11.ggParameter.sx=1.1;me._image_11.ggParameter.sy=1.1;878 me._image_11.style[domTransform]=parameterToTransform(me._image_11.ggParameter);879 }880 this._image_11.onmouseout=function (e) {881 me._image_11.style[domTransition]='none';882 me._image_11.ggParameter.sx=1;me._image_11.ggParameter.sy=1;883 me._image_11.style[domTransform]=parameterToTransform(me._image_11.ggParameter);884 }885 this._image_11.ggUpdatePosition=function (useTransition) {886 if (useTransition==='undefined') {887 useTransition = false;888 }889 if (!useTransition) {890 this.style[domTransition]='none';891 }892 if (this.parentNode) {893 var h=this.parentNode.offsetHeight;894 this.style.top=(this.ggTop - 0 + h) + 'px';895 }896 }897 this._container_base.appendChild(this._image_11);898 this._image_16=document.createElement('div');899 this._image_16__img=document.createElement('img');900 this._image_16__img.className='ggskin ggskin_image';901 this._image_16__img.setAttribute('src',basePath + 'images/image_16.png');902 this._image_16__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');903 this._image_16__img.className='ggskin ggskin_image';904 this._image_16__img['ondragstart']=function() { return false; };905 me.player.checkLoaded.push(this._image_16__img);906 this._image_16.appendChild(this._image_16__img);907 this._image_16.ggId="Image 16";908 this._image_16.ggTop=-84;909 this._image_16.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };910 this._image_16.ggVisible=true;911 this._image_16.className='ggskin ggskin_image ';912 this._image_16.ggType='image';913 hs ='';914 hs+='cursor : pointer;';915 hs+='height : 40px;';916 hs+='left : 22.76%;';917 hs+='position : absolute;';918 hs+='top : -84px;';919 hs+='visibility : inherit;';920 hs+='width : 40px;';921 hs+='pointer-events:auto;';922 this._image_16.setAttribute('style',hs);923 this._image_16.style[domTransform + 'Origin']='50% 50%';924 me._image_16.ggIsActive=function() {925 if ((this.parentNode) && (this.parentNode.ggIsActive)) {926 return this.parentNode.ggIsActive();927 }928 return false;929 }930 me._image_16.ggElementNodeId=function() {931 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {932 return this.parentNode.ggElementNodeId();933 }934 return me.player.getCurrentNode();935 }936 this._image_16.onmouseover=function (e) {937 me._image_16.style[domTransition]='none';938 me._image_16.ggParameter.sx=1.1;me._image_16.ggParameter.sy=1.1;939 me._image_16.style[domTransform]=parameterToTransform(me._image_16.ggParameter);940 }941 this._image_16.onmouseout=function (e) {942 me._image_16.style[domTransition]='none';943 me._image_16.ggParameter.sx=1;me._image_16.ggParameter.sy=1;944 me._image_16.style[domTransform]=parameterToTransform(me._image_16.ggParameter);945 me.elementMouseDown['image_16']=false;946 }947 this._image_16.onmousedown=function (e) {948 me.elementMouseDown['image_16']=true;949 }950 this._image_16.onmouseup=function (e) {951 me.elementMouseDown['image_16']=false;952 }953 this._image_16.ontouchend=function (e) {954 me.elementMouseDown['image_16']=false;955 }956 this._image_16.ggUpdatePosition=function (useTransition) {957 if (useTransition==='undefined') {958 useTransition = false;959 }960 if (!useTransition) {961 this.style[domTransition]='none';962 }963 if (this.parentNode) {964 var h=this.parentNode.offsetHeight;965 this.style.top=(this.ggTop - 0 + h) + 'px';966 }967 }968 this._container_base.appendChild(this._image_16);969 this._image_3=document.createElement('div');970 this._image_3__img=document.createElement('img');971 this._image_3__img.className='ggskin ggskin_image';972 this._image_3__img.setAttribute('src',basePath + 'images/image_3.png');973 this._image_3__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');974 this._image_3__img.className='ggskin ggskin_image';975 this._image_3__img['ondragstart']=function() { return false; };976 me.player.checkLoaded.push(this._image_3__img);977 this._image_3.appendChild(this._image_3__img);978 this._image_3.ggId="Image 3";979 this._image_3.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };980 this._image_3.ggVisible=true;981 this._image_3.className='ggskin ggskin_image ';982 this._image_3.ggType='image';983 hs ='';984 hs+='height : 40px;';985 hs+='left : 440px;';986 hs+='position : absolute;';987 hs+='top : 38px;';988 hs+='visibility : inherit;';989 hs+='width : 40px;';990 hs+='pointer-events:auto;';991 this._image_3.setAttribute('style',hs);992 this._image_3.style[domTransform + 'Origin']='50% 50%';993 me._image_3.ggIsActive=function() {994 if ((this.parentNode) && (this.parentNode.ggIsActive)) {995 return this.parentNode.ggIsActive();996 }997 return false;998 }999 me._image_3.ggElementNodeId=function() {1000 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1001 return this.parentNode.ggElementNodeId();1002 }1003 return me.player.getCurrentNode();1004 }1005 this._image_3.onclick=function (e) {1006 me.player.openUrl("ycbwg_vr01#"+me.ggUserdata.customnodeid+".html","_self");1007 }1008 this._image_3.ggUpdatePosition=function (useTransition) {1009 }1010 this._container_base.appendChild(this._image_3);1011 this.divSkin.appendChild(this._container_base);1012 this._timer_1=document.createElement('div');1013 this._timer_1.ggTimestamp=this.ggCurrentTime;1014 this._timer_1.ggLastIsActive=true;1015 this._timer_1.ggTimeout=750;1016 this._timer_1.ggId="Timer 1";1017 this._timer_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1018 this._timer_1.ggVisible=false;1019 this._timer_1.className='ggskin ggskin_timer ';1020 this._timer_1.ggType='timer';1021 hs ='';1022 hs+='height : 20px;';1023 hs+='left : -105px;';1024 hs+='position : absolute;';1025 hs+='top : 0px;';1026 hs+='visibility : hidden;';1027 hs+='width : 100px;';1028 hs+='pointer-events:none;';1029 this._timer_1.setAttribute('style',hs);1030 this._timer_1.style[domTransform + 'Origin']='50% 50%';1031 me._timer_1.ggIsActive=function() {1032 return (me._timer_1.ggTimestamp==0 ? false : (Math.floor((me.ggCurrentTime - me._timer_1.ggTimestamp) / me._timer_1.ggTimeout) % 2 == 0));1033 }1034 me._timer_1.ggElementNodeId=function() {1035 return me.player.getCurrentNode();1036 }1037 this._timer_1.ggActivate=function () {1038 ggSkinVars['var_ht'] = true;1039 }1040 this._timer_1.ggDeactivate=function () {1041 ggSkinVars['var_ht'] = false;1042 }1043 this._timer_1.ggUpdatePosition=function (useTransition) {1044 }1045 this.divSkin.appendChild(this._timer_1);1046 this._container_dtht=document.createElement('div');1047 this._container_dtht.ggId="Container dtht";1048 this._container_dtht.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1049 this._container_dtht.ggVisible=true;1050 this._container_dtht.className='ggskin ggskin_container ';1051 this._container_dtht.ggType='container';1052 hs ='';1053 hs+='height : 429px;';1054 hs+='left : 36px;';1055 hs+='position : absolute;';1056 hs+='top : 26px;';1057 hs+='visibility : inherit;';1058 hs+='width : 540px;';1059 hs+='pointer-events:none;';1060 this._container_dtht.setAttribute('style',hs);1061 this._container_dtht.style[domTransform + 'Origin']='50% 50%';1062 me._container_dtht.ggIsActive=function() {1063 return false;1064 }1065 me._container_dtht.ggElementNodeId=function() {1066 return me.player.getCurrentNode();1067 }1068 this._container_dtht.ggUpdatePosition=function (useTransition) {1069 }1070 this.divSkin.appendChild(this._container_dtht);1071 this._container_ad=document.createElement('div');1072 this._container_ad.ggId="Container ad";1073 this._container_ad.ggLeft=-373;1074 this._container_ad.ggTop=-340;1075 this._container_ad.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1076 this._container_ad.ggVisible=true;1077 this._container_ad.className='ggskin ggskin_container ';1078 this._container_ad.ggType='container';1079 hs ='';1080 hs+='height : 151px;';1081 hs+='left : -373px;';1082 hs+='position : absolute;';1083 hs+='top : -340px;';1084 hs+='visibility : inherit;';1085 hs+='width : 247px;';1086 hs+='pointer-events:none;';1087 this._container_ad.setAttribute('style',hs);1088 this._container_ad.style[domTransform + 'Origin']='100% 100%';1089 me._container_ad.ggIsActive=function() {1090 return false;1091 }1092 me._container_ad.ggElementNodeId=function() {1093 return me.player.getCurrentNode();1094 }1095 this._container_ad.ggUpdatePosition=function (useTransition) {1096 if (useTransition==='undefined') {1097 useTransition = false;1098 }1099 if (!useTransition) {1100 this.style[domTransition]='none';1101 }1102 if (this.parentNode) {1103 var w=this.parentNode.offsetWidth;1104 this.style.left=(this.ggLeft - 0 + w) + 'px';1105 var h=this.parentNode.offsetHeight;1106 this.style.top=(this.ggTop - 0 + h) + 'px';1107 }1108 }1109 this._image_8=document.createElement('div');1110 this._image_8__img=document.createElement('img');1111 this._image_8__img.className='ggskin ggskin_image';1112 this._image_8__img.setAttribute('src',basePath + 'images/image_8.png');1113 this._image_8__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1114 this._image_8__img.className='ggskin ggskin_image';1115 this._image_8__img['ondragstart']=function() { return false; };1116 me.player.checkLoaded.push(this._image_8__img);1117 this._image_8.appendChild(this._image_8__img);1118 this._image_8.ggId="Image 8";1119 this._image_8.ggLeft=-315;1120 this._image_8.ggTop=-147;1121 this._image_8.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1122 this._image_8.ggVisible=true;1123 this._image_8.className='ggskin ggskin_image ';1124 this._image_8.ggType='image';1125 hs ='';1126 hs+='height : 321px;';1127 hs+='left : -315px;';1128 hs+='position : absolute;';1129 hs+='top : -147px;';1130 hs+='visibility : inherit;';1131 hs+='width : 409px;';1132 hs+='pointer-events:auto;';1133 this._image_8.setAttribute('style',hs);1134 this._image_8.style[domTransform + 'Origin']='100% 100%';1135 me._image_8.ggIsActive=function() {1136 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1137 return this.parentNode.ggIsActive();1138 }1139 return false;1140 }1141 me._image_8.ggElementNodeId=function() {1142 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1143 return this.parentNode.ggElementNodeId();1144 }1145 return me.player.getCurrentNode();1146 }1147 this._image_8.ggUpdatePosition=function (useTransition) {1148 if (useTransition==='undefined') {1149 useTransition = false;1150 }1151 if (!useTransition) {1152 this.style[domTransition]='none';1153 }1154 if (this.parentNode) {1155 var w=this.parentNode.offsetWidth;1156 this.style.left=(this.ggLeft - 0 + w) + 'px';1157 var h=this.parentNode.offsetHeight;1158 this.style.top=(this.ggTop - 0 + h) + 'px';1159 }1160 }1161 this._marker_10=document.createElement('div');1162 this._marker_10.ggMarkerNodeId='{node2}';1163 nodeMarker.push(this._marker_10);1164 this._marker_10.ggId="Marker 1";1165 this._marker_10.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1166 this._marker_10.ggVisible=true;1167 this._marker_10.className='ggskin ggskin_mark ';1168 this._marker_10.ggType='mark';1169 hs ='';1170 hs+='cursor : pointer;';1171 hs+='height : 5px;';1172 hs+='left : 54px;';1173 hs+='position : absolute;';1174 hs+='top : 88px;';1175 hs+='visibility : inherit;';1176 hs+='width : 5px;';1177 hs+='pointer-events:auto;';1178 this._marker_10.setAttribute('style',hs);1179 this._marker_10.style[domTransform + 'Origin']='50% 50%';1180 me._marker_10.ggIsActive=function() {1181 return this.ggIsMarkerActive==true;1182 }1183 me._marker_10.ggElementNodeId=function() {1184 var hs=String(this.ggMarkerNodeId);1185 if (hs.charAt(0)=='{') {1186 return hs.substr(1, hs.length - 2);1187 }1188 return '';1189 }1190 this._marker_10.onclick=function (e) {1191 me.player.openNext('{node2}');1192 }1193 this._marker_10.ggActivate=function () {1194 me._image_130.style[domTransition]='none';1195 me._image_130.style.visibility=(Number(me._image_130.style.opacity)>0||!me._image_130.style.opacity)?'inherit':'hidden';1196 me._image_130.ggVisible=true;1197 }1198 this._marker_10.ggDeactivate=function () {1199 me._image_130.style[domTransition]='none';1200 me._image_130.style.visibility='hidden';1201 me._image_130.ggVisible=false;1202 }1203 this._marker_10.ggUpdateConditionNodeChange=function () {1204 me._marker_10__normal.ggNodeChangeMain();1205 me._marker_10__active.ggNodeChangeMain();1206 }1207 this._marker_10.ggUpdatePosition=function (useTransition) {1208 }1209 this._marker_10.ggNodeChange=function () {1210 me._marker_10.ggUpdateConditionNodeChange();1211 }1212 this._image_130=document.createElement('div');1213 this._image_130__img=document.createElement('img');1214 this._image_130__img.className='ggskin ggskin_image';1215 this._image_130__img.setAttribute('src',basePath + 'images/image_130.png');1216 this._image_130__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1217 this._image_130__img.className='ggskin ggskin_image';1218 this._image_130__img['ondragstart']=function() { return false; };1219 me.player.checkLoaded.push(this._image_130__img);1220 this._image_130.appendChild(this._image_130__img);1221 this._image_130.ggId="Image 13";1222 this._image_130.ggLeft=-39;1223 this._image_130.ggTop=-52;1224 this._image_130.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1225 this._image_130.ggVisible=false;1226 this._image_130.className='ggskin ggskin_image ';1227 this._image_130.ggType='image';1228 hs ='';1229 hs+='height : 48px;';1230 hs+='left : -39px;';1231 hs+='position : absolute;';1232 hs+='top : -52px;';1233 hs+='visibility : hidden;';1234 hs+='width : 81px;';1235 hs+='pointer-events:auto;';1236 this._image_130.setAttribute('style',hs);1237 this._image_130.style[domTransform + 'Origin']='50% 100%';1238 me._image_130.ggIsActive=function() {1239 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1240 return this.parentNode.ggIsActive();1241 }1242 return false;1243 }1244 me._image_130.ggElementNodeId=function() {1245 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1246 return this.parentNode.ggElementNodeId();1247 }1248 return me.player.getCurrentNode();1249 }1250 this._image_130.ggDeactivate=function () {1251 me._image_130.style[domTransition]='none';1252 me._image_130.style.visibility='hidden';1253 me._image_130.ggVisible=false;1254 }1255 this._image_130.ggUpdatePosition=function (useTransition) {1256 if (useTransition==='undefined') {1257 useTransition = false;1258 }1259 if (!useTransition) {1260 this.style[domTransition]='none';1261 }1262 if (this.parentNode) {1263 var w=this.parentNode.offsetWidth;1264 this.style.left=(this.ggLeft - 0 + w) + 'px';1265 var h=this.parentNode.offsetHeight;1266 this.style.top=(this.ggTop - 0 + h) + 'px';1267 }1268 }1269 this._marker_10.appendChild(this._image_130);1270 this._image_8.appendChild(this._marker_10);1271 this._marker_1=document.createElement('div');1272 this._marker_1.ggMarkerNodeId='{node1}';1273 nodeMarker.push(this._marker_1);1274 this._marker_1.ggId="Marker 1";1275 this._marker_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1276 this._marker_1.ggVisible=true;1277 this._marker_1.className='ggskin ggskin_mark ';1278 this._marker_1.ggType='mark';1279 hs ='';1280 hs+='cursor : pointer;';1281 hs+='height : 5px;';1282 hs+='left : 174px;';1283 hs+='position : absolute;';1284 hs+='top : 127px;';1285 hs+='visibility : inherit;';1286 hs+='width : 5px;';1287 hs+='pointer-events:auto;';1288 this._marker_1.setAttribute('style',hs);1289 this._marker_1.style[domTransform + 'Origin']='50% 50%';1290 me._marker_1.ggIsActive=function() {1291 return this.ggIsMarkerActive==true;1292 }1293 me._marker_1.ggElementNodeId=function() {1294 var hs=String(this.ggMarkerNodeId);1295 if (hs.charAt(0)=='{') {1296 return hs.substr(1, hs.length - 2);1297 }1298 return '';1299 }1300 this._marker_1.onclick=function (e) {1301 me.player.openNext('{node1}');1302 }1303 this._marker_1.ggActivate=function () {1304 me._image_13.style[domTransition]='none';1305 me._image_13.style.visibility=(Number(me._image_13.style.opacity)>0||!me._image_13.style.opacity)?'inherit':'hidden';1306 me._image_13.ggVisible=true;1307 }1308 this._marker_1.ggDeactivate=function () {1309 me._image_13.style[domTransition]='none';1310 me._image_13.style.visibility='hidden';1311 me._image_13.ggVisible=false;1312 }1313 this._marker_1.ggUpdateConditionNodeChange=function () {1314 me._marker_1__normal.ggNodeChangeMain();1315 me._marker_1__active.ggNodeChangeMain();1316 }1317 this._marker_1.ggUpdatePosition=function (useTransition) {1318 }1319 this._marker_1.ggNodeChange=function () {1320 me._marker_1.ggUpdateConditionNodeChange();1321 }1322 this._image_13=document.createElement('div');1323 this._image_13__img=document.createElement('img');1324 this._image_13__img.className='ggskin ggskin_image';1325 this._image_13__img.setAttribute('src',basePath + 'images/image_13.png');1326 this._image_13__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1327 this._image_13__img.className='ggskin ggskin_image';1328 this._image_13__img['ondragstart']=function() { return false; };1329 me.player.checkLoaded.push(this._image_13__img);1330 this._image_13.appendChild(this._image_13__img);1331 this._image_13.ggId="Image 13";1332 this._image_13.ggLeft=-39;1333 this._image_13.ggTop=-52;1334 this._image_13.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1335 this._image_13.ggVisible=false;1336 this._image_13.className='ggskin ggskin_image ';1337 this._image_13.ggType='image';1338 hs ='';1339 hs+='height : 48px;';1340 hs+='left : -39px;';1341 hs+='position : absolute;';1342 hs+='top : -52px;';1343 hs+='visibility : hidden;';1344 hs+='width : 81px;';1345 hs+='pointer-events:auto;';1346 this._image_13.setAttribute('style',hs);1347 this._image_13.style[domTransform + 'Origin']='50% 100%';1348 me._image_13.ggIsActive=function() {1349 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1350 return this.parentNode.ggIsActive();1351 }1352 return false;1353 }1354 me._image_13.ggElementNodeId=function() {1355 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1356 return this.parentNode.ggElementNodeId();1357 }1358 return me.player.getCurrentNode();1359 }1360 this._image_13.ggDeactivate=function () {1361 me._image_13.style[domTransition]='none';1362 me._image_13.style.visibility='hidden';1363 me._image_13.ggVisible=false;1364 }1365 this._image_13.ggUpdatePosition=function (useTransition) {1366 if (useTransition==='undefined') {1367 useTransition = false;1368 }1369 if (!useTransition) {1370 this.style[domTransition]='none';1371 }1372 if (this.parentNode) {1373 var w=this.parentNode.offsetWidth;1374 this.style.left=(this.ggLeft - 0 + w) + 'px';1375 var h=this.parentNode.offsetHeight;1376 this.style.top=(this.ggTop - 0 + h) + 'px';1377 }1378 }1379 this._marker_1.appendChild(this._image_13);1380 this._image_8.appendChild(this._marker_1);1381 this._container_ad.appendChild(this._image_8);1382 this.divSkin.appendChild(this._container_ad);1383 this._container_1=document.createElement('div');1384 this._container_1.ggId="Container 1";1385 this._container_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1386 this._container_1.ggVisible=true;1387 this._container_1.className='ggskin ggskin_container ';1388 this._container_1.ggType='container';1389 hs ='';1390 hs+='height : 100%;';1391 hs+='left : 0px;';1392 hs+='position : absolute;';1393 hs+='top : 0px;';1394 hs+='visibility : inherit;';1395 hs+='width : 100%;';1396 hs+='pointer-events:none;';1397 this._container_1.setAttribute('style',hs);1398 this._container_1.style[domTransform + 'Origin']='50% 50%';1399 me._container_1.ggIsActive=function() {1400 return false;1401 }1402 me._container_1.ggElementNodeId=function() {1403 return me.player.getCurrentNode();1404 }1405 this._container_1.ggUpdatePosition=function (useTransition) {1406 }1407 this._rectangle_pic_inf_bg=document.createElement('div');1408 this._rectangle_pic_inf_bg.ggId="Rectangle_pic_inf_bg";1409 this._rectangle_pic_inf_bg.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1410 this._rectangle_pic_inf_bg.ggVisible=false;1411 this._rectangle_pic_inf_bg.className='ggskin ggskin_rectangle ';1412 this._rectangle_pic_inf_bg.ggType='rectangle';1413 hs ='';1414 hs+='background : #000000;';1415 hs+='border : 0px solid #000000;';1416 hs+='cursor : default;';1417 hs+='height : 100%;';1418 hs+='left : 0%;';1419 hs+='opacity : 0.5;';1420 hs+='position : absolute;';1421 hs+='top : 0%;';1422 hs+='visibility : hidden;';1423 hs+='width : 100%;';1424 hs+='pointer-events:auto;';1425 this._rectangle_pic_inf_bg.setAttribute('style',hs);1426 this._rectangle_pic_inf_bg.style[domTransform + 'Origin']='50% 50%';1427 me._rectangle_pic_inf_bg.ggIsActive=function() {1428 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1429 return this.parentNode.ggIsActive();1430 }1431 return false;1432 }1433 me._rectangle_pic_inf_bg.ggElementNodeId=function() {1434 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1435 return this.parentNode.ggElementNodeId();1436 }1437 return me.player.getCurrentNode();1438 }1439 this._rectangle_pic_inf_bg.onclick=function (e) {1440 me._rectangle_pic_inf_bg.style[domTransition]='none';1441 me._rectangle_pic_inf_bg.style.visibility='hidden';1442 me._rectangle_pic_inf_bg.ggVisible=false;1443 me._external_picture_inf.style[domTransition]='none';1444 me._external_picture_inf.style.visibility='hidden';1445 me._external_picture_inf.ggVisible=false;1446 }1447 this._rectangle_pic_inf_bg.ggUpdatePosition=function (useTransition) {1448 }1449 this._container_1.appendChild(this._rectangle_pic_inf_bg);1450 this._external_picture_inf=document.createElement('div');1451 this._external_picture_inf__img=document.createElement('img');1452 this._external_picture_inf__img.className='ggskin ggskin_external';1453 this._external_picture_inf__img.onload=function() {me._external_picture_inf.ggUpdatePosition();}1454 this._external_picture_inf__img.setAttribute('src',basePath + '');1455 this._external_picture_inf__img['ondragstart']=function() { return false; };1456 hs ='';1457 this._external_picture_inf.appendChild(this._external_picture_inf__img);1458 this._external_picture_inf.ggId="External picture_inf";1459 this._external_picture_inf.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1460 this._external_picture_inf.ggVisible=false;1461 this._external_picture_inf.className='ggskin ggskin_external ';1462 this._external_picture_inf.ggType='external';1463 hs ='';1464 hs+='border : 0px solid #000000;';1465 hs+='cursor : default;';1466 hs+='height : 80%;';1467 hs+='left : 10%;';1468 hs+='position : absolute;';1469 hs+='top : 10%;';1470 hs+='visibility : hidden;';1471 hs+='width : 80%;';1472 hs+='pointer-events:auto;';1473 this._external_picture_inf.setAttribute('style',hs);1474 this._external_picture_inf.style[domTransform + 'Origin']='50% 50%';1475 me._external_picture_inf.ggIsActive=function() {1476 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1477 return this.parentNode.ggIsActive();1478 }1479 return false;1480 }1481 me._external_picture_inf.ggElementNodeId=function() {1482 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1483 return this.parentNode.ggElementNodeId();1484 }1485 return me.player.getCurrentNode();1486 }1487 this._external_picture_inf.ggUpdatePosition=function (useTransition) {1488 var parentWidth = me._external_picture_inf.clientWidth;1489 var parentHeight = me._external_picture_inf.clientHeight;1490 var aspectRatioDiv = me._external_picture_inf.clientWidth / me._external_picture_inf.clientHeight;1491 var aspectRatioImg = me._external_picture_inf__img.naturalWidth / me._external_picture_inf__img.naturalHeight;1492 if (me._external_picture_inf__img.naturalWidth < parentWidth) parentWidth = me._external_picture_inf__img.naturalWidth;1493 if (me._external_picture_inf__img.naturalHeight < parentHeight) parentHeight = me._external_picture_inf__img.naturalHeight;1494 var currentWidth = me._external_picture_inf__img.naturalWidth;1495 var currentHeight = me._external_picture_inf__img.naturalHeight;1496 if (aspectRatioDiv > aspectRatioImg) {1497 currentHeight = parentHeight;1498 currentWidth = parentHeight * aspectRatioImg;1499 me._external_picture_inf__img.setAttribute('style','position: absolute; left: 50%; margin-left: -' + currentWidth/2 + 'px; top: 50%; margin-top: -' + currentHeight/2 + 'px;height:' + parentHeight + 'px;-webkit-user-drag:none;pointer-events:none;border-radius:0px;');1500 } else {1501 currentWidth = parentWidth;1502 currentHeight = parentWidth / aspectRatioImg;1503 me._external_picture_inf__img.setAttribute('style','position: absolute; left: 50%; margin-left: -' + currentWidth/2 + 'px; top: 50%; margin-top: -' + currentHeight/2 + 'px;width:' + parentWidth + 'px;-webkit-user-drag:none;pointer-events:none;border-radius:0px;');1504 };1505 }1506 this._container_1.appendChild(this._external_picture_inf);1507 this.divSkin.appendChild(this._container_1);1508 me._image_4.style[domTransition]='none';1509 me._image_4.style.visibility=(Number(me._image_4.style.opacity)>0||!me._image_4.style.opacity)?'inherit':'hidden';1510 me._image_4.ggVisible=true;1511 me._image_5.style[domTransition]='none';1512 me._image_5.style.visibility='hidden';1513 me._image_5.ggVisible=false;1514 me._image_131.style[domTransition]='none';1515 me._image_131.style.visibility=(Number(me._image_131.style.opacity)>0||!me._image_131.style.opacity)?'inherit':'hidden';1516 me._image_131.ggVisible=true;1517 me._image_14.style[domTransition]='none';1518 me._image_14.style.visibility='hidden';1519 me._image_14.ggVisible=false;1520 me._image_10.style[domTransition]='none';1521 me._image_10.style.visibility=(Number(me._image_10.style.opacity)>0||!me._image_10.style.opacity)?'inherit':'hidden';1522 me._image_10.ggVisible=true;1523 me._image_11.style[domTransition]='none';1524 me._image_11.style.visibility='hidden';1525 me._image_11.ggVisible=false;1526 this._marker_10__normal=new SkinElement_image_ad_1_Class(this,this._marker_10);1527 this._marker_10__normal.style.visibility='inherit';1528 this._marker_10__normal.style.left='0px';1529 this._marker_10__normal.style.top='0px';1530 this._marker_10.ggMarkerNormal=this._marker_10__normal;1531 this._marker_10__active=new SkinElement_image_ad_2_Class(this,this._marker_10);1532 this._marker_10__active.style.visibility='hidden';1533 this._marker_10__active.style.left='0px';1534 this._marker_10__active.style.top='0px';1535 this._marker_10.ggMarkerActive=this._marker_10__active;1536 if (this._marker_10.firstChild) {1537 this._marker_10.insertBefore(this._marker_10__active,this._marker_10.firstChild);1538 } else {1539 this._marker_10.appendChild(this._marker_10__active);1540 }1541 if (this._marker_10.firstChild) {1542 this._marker_10.insertBefore(this._marker_10__normal,this._marker_10.firstChild);1543 } else {1544 this._marker_10.appendChild(this._marker_10__normal);1545 }1546 this._marker_1__normal=new SkinElement_image_ad_1_Class(this,this._marker_1);1547 this._marker_1__normal.style.visibility='inherit';1548 this._marker_1__normal.style.left='0px';1549 this._marker_1__normal.style.top='0px';1550 this._marker_1.ggMarkerNormal=this._marker_1__normal;1551 this._marker_1__active=new SkinElement_image_ad_2_Class(this,this._marker_1);1552 this._marker_1__active.style.visibility='hidden';1553 this._marker_1__active.style.left='0px';1554 this._marker_1__active.style.top='0px';1555 this._marker_1.ggMarkerActive=this._marker_1__active;1556 if (this._marker_1.firstChild) {1557 this._marker_1.insertBefore(this._marker_1__active,this._marker_1.firstChild);1558 } else {1559 this._marker_1.appendChild(this._marker_1__active);1560 }1561 if (this._marker_1.firstChild) {1562 this._marker_1.insertBefore(this._marker_1__normal,this._marker_1.firstChild);1563 } else {1564 this._marker_1.appendChild(this._marker_1__normal);1565 }1566 this.divSkin.ggUpdateSize=function(w,h) {1567 me.updateSize(me.divSkin);1568 }1569 this.divSkin.ggViewerInit=function() {1570 }1571 this.divSkin.ggLoaded=function() {1572 }1573 this.divSkin.ggReLoaded=function() {1574 }1575 this.divSkin.ggLoadedLevels=function() {1576 }1577 this.divSkin.ggReLoadedLevels=function() {1578 }1579 this.divSkin.ggEnterFullscreen=function() {1580 }1581 this.divSkin.ggExitFullscreen=function() {1582 }1583 this.skinTimerEvent();1584 };1585 this.hotspotProxyClick=function(id) {1586 }1587 this.hotspotProxyOver=function(id) {1588 }1589 this.hotspotProxyOut=function(id) {1590 }1591 this.ggHotspotCallChildFunctions=function(functionname) {1592 var stack = me.player.getCurrentPointHotspots();1593 while (stack.length > 0) {1594 var e = stack.pop();1595 if (typeof e[functionname] == 'function') {1596 e[functionname]();1597 }1598 if(e.hasChildNodes()) {1599 for(var i=0; i<e.childNodes.length; i++) {1600 stack.push(e.childNodes[i]);1601 }1602 }1603 }1604 }1605 this.changeActiveNode=function(id) {1606 me.ggUserdata=me.player.userdata;1607 me._marker_10.ggNodeChange();1608 me._marker_1.ggNodeChange();1609 var newMarker=[];1610 var i,j;1611 var tags=me.ggUserdata.tags;1612 for (i=0;i<nodeMarker.length;i++) {1613 var match=false;1614 if ((nodeMarker[i].ggMarkerNodeId==id) && (id!='')) match=true;1615 for(j=0;j<tags.length;j++) {1616 if (nodeMarker[i].ggMarkerNodeId==tags[j]) match=true;1617 }1618 if (match) {1619 newMarker.push(nodeMarker[i]);1620 }1621 }1622 for(i=0;i<activeNodeMarker.length;i++) {1623 if (newMarker.indexOf(activeNodeMarker[i])<0) {1624 if (activeNodeMarker[i].ggMarkerNormal) {1625 activeNodeMarker[i].ggMarkerNormal.style.visibility='inherit';1626 }1627 if (activeNodeMarker[i].ggMarkerActive) {1628 activeNodeMarker[i].ggMarkerActive.style.visibility='hidden';1629 }1630 if (activeNodeMarker[i].ggDeactivate) {1631 activeNodeMarker[i].ggDeactivate();1632 }1633 activeNodeMarker[i].ggIsMarkerActive=false;1634 }1635 }1636 for(i=0;i<newMarker.length;i++) {1637 if (activeNodeMarker.indexOf(newMarker[i])<0) {1638 if (newMarker[i].ggMarkerNormal) {1639 newMarker[i].ggMarkerNormal.style.visibility='hidden';1640 }1641 if (newMarker[i].ggMarkerActive) {1642 newMarker[i].ggMarkerActive.style.visibility='inherit';1643 }1644 if (newMarker[i].ggActivate) {1645 newMarker[i].ggActivate();1646 }1647 newMarker[i].ggIsMarkerActive=true;1648 }1649 }1650 activeNodeMarker=newMarker;1651 }1652 this.skinTimerEvent=function() {1653 setTimeout(function() { me.skinTimerEvent(); }, 10);1654 me.ggCurrentTime=new Date().getTime();1655 if (me.elementMouseDown['image_2']) {1656 me.player.changeTiltLog(-0.04,true);1657 }1658 if (me.elementMouseDown['image_9']) {1659 me.player.changePanLog(0.04,true);1660 }1661 if (me.elementMouseDown['image_12']) {1662 me.player.changePanLog(-0.04,true);1663 }1664 if (me.elementMouseDown['image_1']) {1665 me.player.changeFovLog(-0.08,true);1666 }1667 if (me.elementMouseDown['image_15']) {1668 me.player.changeFovLog(0.08,true);1669 }1670 if (me.elementMouseDown['image_16']) {1671 me.player.changeTiltLog(0.04,true);1672 }1673 if (me._timer_1.ggLastIsActive!=me._timer_1.ggIsActive()) {1674 me._timer_1.ggLastIsActive=me._timer_1.ggIsActive();1675 if (me._timer_1.ggLastIsActive) {1676 ggSkinVars['var_ht'] = true;1677 } else {1678 ggSkinVars['var_ht'] = false;1679 }1680 }1681 var hs='';1682 if (me._image_130.ggParameter) {1683 hs+=parameterToTransform(me._image_130.ggParameter) + ' ';1684 }1685 hs+='rotate(' + (-1.0*(1 * me.player.getPanNorth() + 0)) + 'deg) ';1686 hs+='scale(' + (Math.tan(me.player.getFov()/2.0*Math.PI/180.0)*1 + 0) + ',1.0) ';1687 me._image_130.style[domTransform]=hs;1688 var hs='';1689 if (me._image_13.ggParameter) {1690 hs+=parameterToTransform(me._image_13.ggParameter) + ' ';1691 }1692 hs+='rotate(' + (-1.0*(1 * me.player.getPanNorth() + 0)) + 'deg) ';1693 hs+='scale(' + (Math.tan(me.player.getFov()/2.0*Math.PI/180.0)*1 + 0) + ',1.0) ';1694 me._image_13.style[domTransform]=hs;1695 me.ggHotspotCallChildFunctions('ggUpdateConditionTimer');1696 };1697 function SkinHotspotClass(skinObj,hotspot) {1698 var me=this;1699 var flag=false;1700 this.player=skinObj.player;1701 this.skin=skinObj;1702 this.hotspot=hotspot;1703 var nodeId=String(hotspot.url);1704 nodeId=(nodeId.charAt(0)=='{')?nodeId.substr(1, nodeId.length - 2):'';1705 this.ggUserdata=this.skin.player.getNodeUserdata(nodeId);1706 this.elementMouseDown=[];1707 this.elementMouseOver=[];1708 1709 this.findElements=function(id,regex) {1710 return me.skin.findElements(id,regex);1711 }1712 1713 if (hotspot.skinid=='Hotspot 53') {1714 this.__div=document.createElement('div');1715 this.__div.ggId="Hotspot 53";1716 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1717 this.__div.ggVisible=true;1718 this.__div.className='ggskin ggskin_hotspot ';1719 this.__div.ggType='hotspot';1720 hs ='';1721 hs+='height : 5px;';1722 hs+='left : 158px;';1723 hs+='position : absolute;';1724 hs+='top : 346px;';1725 hs+='visibility : inherit;';1726 hs+='width : 5px;';1727 hs+='pointer-events:auto;';1728 this.__div.setAttribute('style',hs);1729 this.__div.style[domTransform + 'Origin']='50% 50%';1730 me.__div.ggIsActive=function() {1731 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1732 return this.parentNode.ggIsActive();1733 }1734 return false;1735 }1736 me.__div.ggElementNodeId=function() {1737 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);1738 }1739 this.__div.onclick=function (e) {1740 me.player.openNext(me.hotspot.url,"");1741 me.skin.hotspotProxyClick(me.hotspot.id);1742 }1743 this.__div.onmouseover=function (e) {1744 me.player.setActiveHotspot(me.hotspot);1745 me.skin.hotspotProxyOver(me.hotspot.id);1746 }1747 this.__div.onmouseout=function (e) {1748 me.player.setActiveHotspot(null);1749 me.skin.hotspotProxyOut(me.hotspot.id);1750 }1751 this.__div.ggUpdatePosition=function (useTransition) {1752 }1753 this._image_12_1=document.createElement('div');1754 this._image_12_1__img=document.createElement('img');1755 this._image_12_1__img.className='ggskin ggskin_image';1756 this._image_12_1__img.setAttribute('src',basePath + 'images/image_12_1.png');1757 this._image_12_1__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1758 this._image_12_1__img.className='ggskin ggskin_image';1759 this._image_12_1__img['ondragstart']=function() { return false; };1760 me.player.checkLoaded.push(this._image_12_1__img);1761 this._image_12_1.appendChild(this._image_12_1__img);1762 this._image_12_1.ggId="Image 12_1";1763 this._image_12_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1764 this._image_12_1.ggVisible=true;1765 this._image_12_1.className='ggskin ggskin_image ';1766 this._image_12_1.ggType='image';1767 hs ='';1768 hs+='height : 40px;';1769 hs+='left : -16px;';1770 hs+='position : absolute;';1771 hs+='top : -21px;';1772 hs+='visibility : inherit;';1773 hs+='width : 32px;';1774 hs+='pointer-events:auto;';1775 this._image_12_1.setAttribute('style',hs);1776 this._image_12_1.style[domTransform + 'Origin']='0% 0%';1777 me._image_12_1.ggIsActive=function() {1778 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1779 return this.parentNode.ggIsActive();1780 }1781 return false;1782 }1783 me._image_12_1.ggElementNodeId=function() {1784 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1785 return this.parentNode.ggElementNodeId();1786 }1787 return me.ggNodeId;1788 }1789 me._image_12_1.ggCurrentLogicStateScaling = -1;1790 this._image_12_1.ggUpdateConditionTimer=function () {1791 var newLogicStateScaling;1792 if (1793 (ggSkinVars['var_ht'] == true)1794 )1795 {1796 newLogicStateScaling = 0;1797 }1798 else {1799 newLogicStateScaling = -1;1800 }1801 if (me._image_12_1.ggCurrentLogicStateScaling != newLogicStateScaling) {1802 me._image_12_1.ggCurrentLogicStateScaling = newLogicStateScaling;1803 me._image_12_1.style[domTransition]='' + cssPrefix + 'transform 750ms ease 0ms';1804 if (me._image_12_1.ggCurrentLogicStateScaling == 0) {1805 me._image_12_1.ggParameter.sx = 0.9;1806 me._image_12_1.ggParameter.sy = 0.9;1807 me._image_12_1.style[domTransform]=parameterToTransform(me._image_12_1.ggParameter);1808 }1809 else {1810 me._image_12_1.ggParameter.sx = 1;1811 me._image_12_1.ggParameter.sy = 1;1812 me._image_12_1.style[domTransform]=parameterToTransform(me._image_12_1.ggParameter);1813 }1814 }1815 }1816 this._image_12_1.ggUpdatePosition=function (useTransition) {1817 }1818 this.__div.appendChild(this._image_12_1);1819 this.hotspotTimerEvent=function() {1820 setTimeout(function() { me.hotspotTimerEvent(); }, 10);1821 me._image_12_1.ggUpdateConditionTimer();1822 }1823 this.hotspotTimerEvent();1824 } else1825 if (hotspot.skinid=='Hotspot 44') {1826 this.__div=document.createElement('div');1827 this.__div.ggId="Hotspot 44";1828 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1829 this.__div.ggVisible=true;1830 this.__div.className='ggskin ggskin_hotspot ';1831 this.__div.ggType='hotspot';1832 hs ='';1833 hs+='height : 5px;';1834 hs+='left : 159px;';1835 hs+='position : absolute;';1836 hs+='top : 256px;';1837 hs+='visibility : inherit;';1838 hs+='width : 5px;';1839 hs+='pointer-events:auto;';1840 this.__div.setAttribute('style',hs);1841 this.__div.style[domTransform + 'Origin']='50% 50%';1842 me.__div.ggIsActive=function() {1843 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1844 return this.parentNode.ggIsActive();1845 }1846 return false;1847 }1848 me.__div.ggElementNodeId=function() {1849 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);1850 }1851 this.__div.onclick=function (e) {1852 me.player.openNext(me.hotspot.url,"");1853 me.skin.hotspotProxyClick(me.hotspot.id);1854 }1855 this.__div.onmouseover=function (e) {1856 me.player.setActiveHotspot(me.hotspot);1857 me.skin.hotspotProxyOver(me.hotspot.id);1858 }1859 this.__div.onmouseout=function (e) {1860 me.player.setActiveHotspot(null);1861 me.skin.hotspotProxyOut(me.hotspot.id);1862 }1863 this.__div.ggUpdatePosition=function (useTransition) {1864 }1865 this._image_9_1=document.createElement('div');1866 this._image_9_1__img=document.createElement('img');1867 this._image_9_1__img.className='ggskin ggskin_image';1868 this._image_9_1__img.setAttribute('src',basePath + 'images/image_9_1.png');1869 this._image_9_1__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1870 this._image_9_1__img.className='ggskin ggskin_image';1871 this._image_9_1__img['ondragstart']=function() { return false; };1872 me.player.checkLoaded.push(this._image_9_1__img);1873 this._image_9_1.appendChild(this._image_9_1__img);1874 this._image_9_1.ggId="Image 9_1";1875 this._image_9_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1876 this._image_9_1.ggVisible=true;1877 this._image_9_1.className='ggskin ggskin_image ';1878 this._image_9_1.ggType='image';1879 hs ='';1880 hs+='height : 46px;';1881 hs+='left : -22px;';1882 hs+='position : absolute;';1883 hs+='top : -24px;';1884 hs+='visibility : inherit;';1885 hs+='width : 46px;';1886 hs+='pointer-events:auto;';1887 this._image_9_1.setAttribute('style',hs);1888 this._image_9_1.style[domTransform + 'Origin']='50% 50%';1889 me._image_9_1.ggIsActive=function() {1890 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1891 return this.parentNode.ggIsActive();1892 }1893 return false;1894 }1895 me._image_9_1.ggElementNodeId=function() {1896 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {1897 return this.parentNode.ggElementNodeId();1898 }1899 return me.ggNodeId;1900 }1901 me._image_9_1.ggCurrentLogicStateScaling = -1;1902 this._image_9_1.ggUpdateConditionTimer=function () {1903 var newLogicStateScaling;1904 if (1905 (ggSkinVars['var_ht'] == true)1906 )1907 {1908 newLogicStateScaling = 0;1909 }1910 else {1911 newLogicStateScaling = -1;1912 }1913 if (me._image_9_1.ggCurrentLogicStateScaling != newLogicStateScaling) {1914 me._image_9_1.ggCurrentLogicStateScaling = newLogicStateScaling;1915 me._image_9_1.style[domTransition]='' + cssPrefix + 'transform 750ms ease 0ms';1916 if (me._image_9_1.ggCurrentLogicStateScaling == 0) {1917 me._image_9_1.ggParameter.sx = 0.8;1918 me._image_9_1.ggParameter.sy = 0.8;1919 me._image_9_1.style[domTransform]=parameterToTransform(me._image_9_1.ggParameter);1920 }1921 else {1922 me._image_9_1.ggParameter.sx = 1;1923 me._image_9_1.ggParameter.sy = 1;1924 me._image_9_1.style[domTransform]=parameterToTransform(me._image_9_1.ggParameter);1925 }1926 }1927 }1928 this._image_9_1.ggUpdatePosition=function (useTransition) {1929 }1930 this.__div.appendChild(this._image_9_1);1931 this.hotspotTimerEvent=function() {1932 setTimeout(function() { me.hotspotTimerEvent(); }, 10);1933 me._image_9_1.ggUpdateConditionTimer();1934 }1935 this.hotspotTimerEvent();1936 } else1937 if (hotspot.skinid=='Hotspot 43') {1938 this.__div=document.createElement('div');1939 this.__div.ggId="Hotspot 43";1940 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1941 this.__div.ggVisible=true;1942 this.__div.className='ggskin ggskin_hotspot ';1943 this.__div.ggType='hotspot';1944 hs ='';1945 hs+='height : 5px;';1946 hs+='left : 41px;';1947 hs+='position : absolute;';1948 hs+='top : 255px;';1949 hs+='visibility : inherit;';1950 hs+='width : 5px;';1951 hs+='pointer-events:auto;';1952 this.__div.setAttribute('style',hs);1953 this.__div.style[domTransform + 'Origin']='50% 50%';1954 me.__div.ggIsActive=function() {1955 if ((this.parentNode) && (this.parentNode.ggIsActive)) {1956 return this.parentNode.ggIsActive();1957 }1958 return false;1959 }1960 me.__div.ggElementNodeId=function() {1961 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);1962 }1963 this.__div.onclick=function (e) {1964 me.player.openNext(me.hotspot.url,"");1965 me.skin.hotspotProxyClick(me.hotspot.id);1966 }1967 this.__div.onmouseover=function (e) {1968 me.player.setActiveHotspot(me.hotspot);1969 me.skin.hotspotProxyOver(me.hotspot.id);1970 }1971 this.__div.onmouseout=function (e) {1972 me.player.setActiveHotspot(null);1973 me.skin.hotspotProxyOut(me.hotspot.id);1974 }1975 this.__div.ggUpdatePosition=function (useTransition) {1976 }1977 this._image_8_1=document.createElement('div');1978 this._image_8_1__img=document.createElement('img');1979 this._image_8_1__img.className='ggskin ggskin_image';1980 this._image_8_1__img.setAttribute('src',basePath + 'images/image_8_1.png');1981 this._image_8_1__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');1982 this._image_8_1__img.className='ggskin ggskin_image';1983 this._image_8_1__img['ondragstart']=function() { return false; };1984 me.player.checkLoaded.push(this._image_8_1__img);1985 this._image_8_1.appendChild(this._image_8_1__img);1986 this._image_8_1.ggId="Image 8_1";1987 this._image_8_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };1988 this._image_8_1.ggVisible=true;1989 this._image_8_1.className='ggskin ggskin_image ';1990 this._image_8_1.ggType='image';1991 hs ='';1992 hs+='height : 44px;';1993 hs+='left : -22px;';1994 hs+='position : absolute;';1995 hs+='top : -22px;';1996 hs+='visibility : inherit;';1997 hs+='width : 46px;';1998 hs+='pointer-events:auto;';1999 this._image_8_1.setAttribute('style',hs);2000 this._image_8_1.style[domTransform + 'Origin']='50% 50%';2001 me._image_8_1.ggIsActive=function() {2002 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2003 return this.parentNode.ggIsActive();2004 }2005 return false;2006 }2007 me._image_8_1.ggElementNodeId=function() {2008 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2009 return this.parentNode.ggElementNodeId();2010 }2011 return me.ggNodeId;2012 }2013 me._image_8_1.ggCurrentLogicStateScaling = -1;2014 this._image_8_1.ggUpdateConditionTimer=function () {2015 var newLogicStateScaling;2016 if (2017 (ggSkinVars['var_ht'] == true)2018 )2019 {2020 newLogicStateScaling = 0;2021 }2022 else {2023 newLogicStateScaling = -1;2024 }2025 if (me._image_8_1.ggCurrentLogicStateScaling != newLogicStateScaling) {2026 me._image_8_1.ggCurrentLogicStateScaling = newLogicStateScaling;2027 me._image_8_1.style[domTransition]='' + cssPrefix + 'transform 750ms ease 0ms';2028 if (me._image_8_1.ggCurrentLogicStateScaling == 0) {2029 me._image_8_1.ggParameter.sx = 0.8;2030 me._image_8_1.ggParameter.sy = 0.8;2031 me._image_8_1.style[domTransform]=parameterToTransform(me._image_8_1.ggParameter);2032 }2033 else {2034 me._image_8_1.ggParameter.sx = 1;2035 me._image_8_1.ggParameter.sy = 1;2036 me._image_8_1.style[domTransform]=parameterToTransform(me._image_8_1.ggParameter);2037 }2038 }2039 }2040 this._image_8_1.ggUpdatePosition=function (useTransition) {2041 }2042 this.__div.appendChild(this._image_8_1);2043 this.hotspotTimerEvent=function() {2044 setTimeout(function() { me.hotspotTimerEvent(); }, 10);2045 me._image_8_1.ggUpdateConditionTimer();2046 }2047 this.hotspotTimerEvent();2048 } else2049 if (hotspot.skinid=='Hotspot 12') {2050 this.__div=document.createElement('div');2051 this.__div.ggId="Hotspot 12";2052 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2053 this.__div.ggVisible=true;2054 this.__div.className='ggskin ggskin_hotspot ';2055 this.__div.ggType='hotspot';2056 hs ='';2057 hs+='height : 5px;';2058 hs+='left : 166px;';2059 hs+='position : absolute;';2060 hs+='top : 31px;';2061 hs+='visibility : inherit;';2062 hs+='width : 5px;';2063 hs+='pointer-events:auto;';2064 this.__div.setAttribute('style',hs);2065 this.__div.style[domTransform + 'Origin']='50% 50%';2066 me.__div.ggIsActive=function() {2067 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2068 return this.parentNode.ggIsActive();2069 }2070 return false;2071 }2072 me.__div.ggElementNodeId=function() {2073 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);2074 }2075 this.__div.onclick=function (e) {2076 me.player.openNext(me.hotspot.url,"");2077 me.skin.hotspotProxyClick(me.hotspot.id);2078 }2079 this.__div.onmouseover=function (e) {2080 me.player.setActiveHotspot(me.hotspot);2081 me.skin.hotspotProxyOver(me.hotspot.id);2082 }2083 this.__div.onmouseout=function (e) {2084 me.player.setActiveHotspot(null);2085 me.skin.hotspotProxyOut(me.hotspot.id);2086 }2087 this.__div.ggUpdatePosition=function (useTransition) {2088 }2089 this._rectangle_20=document.createElement('div');2090 this._rectangle_20.ggId="Rectangle 2";2091 this._rectangle_20.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2092 this._rectangle_20.ggVisible=true;2093 this._rectangle_20.className='ggskin ggskin_rectangle ';2094 this._rectangle_20.ggType='rectangle';2095 hs ='';2096 hs+=cssPrefix + 'border-radius : 99px;';2097 hs+='border-radius : 99px;';2098 hs+='background : rgba(255,255,255,0.627451);';2099 hs+='border : 0px solid #000000;';2100 hs+='cursor : default;';2101 hs+='height : 50px;';2102 hs+='left : -24px;';2103 hs+='position : absolute;';2104 hs+='top : -25px;';2105 hs+='visibility : inherit;';2106 hs+='width : 50px;';2107 hs+='pointer-events:auto;';2108 this._rectangle_20.setAttribute('style',hs);2109 this._rectangle_20.style[domTransform + 'Origin']='50% 50%';2110 me._rectangle_20.ggIsActive=function() {2111 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2112 return this.parentNode.ggIsActive();2113 }2114 return false;2115 }2116 me._rectangle_20.ggElementNodeId=function() {2117 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2118 return this.parentNode.ggElementNodeId();2119 }2120 return me.ggNodeId;2121 }2122 me._rectangle_20.ggCurrentLogicStateScaling = -1;2123 this._rectangle_20.ggUpdateConditionTimer=function () {2124 var newLogicStateScaling;2125 if (2126 (ggSkinVars['var_ht'] == true)2127 )2128 {2129 newLogicStateScaling = 0;2130 }2131 else {2132 newLogicStateScaling = -1;2133 }2134 if (me._rectangle_20.ggCurrentLogicStateScaling != newLogicStateScaling) {2135 me._rectangle_20.ggCurrentLogicStateScaling = newLogicStateScaling;2136 me._rectangle_20.style[domTransition]='' + cssPrefix + 'transform 750ms ease 0ms';2137 if (me._rectangle_20.ggCurrentLogicStateScaling == 0) {2138 me._rectangle_20.ggParameter.sx = 0.75;2139 me._rectangle_20.ggParameter.sy = 0.75;2140 me._rectangle_20.style[domTransform]=parameterToTransform(me._rectangle_20.ggParameter);2141 }2142 else {2143 me._rectangle_20.ggParameter.sx = 1;2144 me._rectangle_20.ggParameter.sy = 1;2145 me._rectangle_20.style[domTransform]=parameterToTransform(me._rectangle_20.ggParameter);2146 }2147 }2148 }2149 this._rectangle_20.ggUpdatePosition=function (useTransition) {2150 }2151 this.__div.appendChild(this._rectangle_20);2152 this._rectangle_10=document.createElement('div');2153 this._rectangle_10.ggId="Rectangle 1";2154 this._rectangle_10.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2155 this._rectangle_10.ggVisible=true;2156 this._rectangle_10.className='ggskin ggskin_rectangle ';2157 this._rectangle_10.ggType='rectangle';2158 hs ='';2159 hs+=cssPrefix + 'border-radius : 99px;';2160 hs+='border-radius : 99px;';2161 hs+='background : #ffffff;';2162 hs+='border : 0px solid #ffffff;';2163 hs+='cursor : default;';2164 hs+='height : 26px;';2165 hs+='left : -12px;';2166 hs+='position : absolute;';2167 hs+='top : -13px;';2168 hs+='visibility : inherit;';2169 hs+='width : 26px;';2170 hs+='pointer-events:auto;';2171 this._rectangle_10.setAttribute('style',hs);2172 this._rectangle_10.style[domTransform + 'Origin']='50% 50%';2173 me._rectangle_10.ggIsActive=function() {2174 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2175 return this.parentNode.ggIsActive();2176 }2177 return false;2178 }2179 me._rectangle_10.ggElementNodeId=function() {2180 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2181 return this.parentNode.ggElementNodeId();2182 }2183 return me.ggNodeId;2184 }2185 me._rectangle_10.ggCurrentLogicStateScaling = -1;2186 this._rectangle_10.ggUpdateConditionTimer=function () {2187 var newLogicStateScaling;2188 if (2189 (ggSkinVars['var_ht'] == true)2190 )2191 {2192 newLogicStateScaling = 0;2193 }2194 else {2195 newLogicStateScaling = -1;2196 }2197 if (me._rectangle_10.ggCurrentLogicStateScaling != newLogicStateScaling) {2198 me._rectangle_10.ggCurrentLogicStateScaling = newLogicStateScaling;2199 me._rectangle_10.style[domTransition]='' + cssPrefix + 'transform 750ms ease 0ms';2200 if (me._rectangle_10.ggCurrentLogicStateScaling == 0) {2201 me._rectangle_10.ggParameter.sx = 1.25;2202 me._rectangle_10.ggParameter.sy = 1.25;2203 me._rectangle_10.style[domTransform]=parameterToTransform(me._rectangle_10.ggParameter);2204 }2205 else {2206 me._rectangle_10.ggParameter.sx = 1;2207 me._rectangle_10.ggParameter.sy = 1;2208 me._rectangle_10.style[domTransform]=parameterToTransform(me._rectangle_10.ggParameter);2209 }2210 }2211 }2212 this._rectangle_10.ggUpdatePosition=function (useTransition) {2213 }2214 this.__div.appendChild(this._rectangle_10);2215 this.hotspotTimerEvent=function() {2216 setTimeout(function() { me.hotspotTimerEvent(); }, 10);2217 me._rectangle_20.ggUpdateConditionTimer();2218 me._rectangle_10.ggUpdateConditionTimer();2219 }2220 this.hotspotTimerEvent();2221 } else2222 if (hotspot.skinid=='Hotspot 11') {2223 this.__div=document.createElement('div');2224 this.__div.ggId="Hotspot 11";2225 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2226 this.__div.ggVisible=true;2227 this.__div.className='ggskin ggskin_hotspot ';2228 this.__div.ggType='hotspot';2229 hs ='';2230 hs+='height : 5px;';2231 hs+='left : 55px;';2232 hs+='position : absolute;';2233 hs+='top : 30px;';2234 hs+='visibility : inherit;';2235 hs+='width : 5px;';2236 hs+='pointer-events:auto;';2237 this.__div.setAttribute('style',hs);2238 this.__div.style[domTransform + 'Origin']='50% 50%';2239 me.__div.ggIsActive=function() {2240 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2241 return this.parentNode.ggIsActive();2242 }2243 return false;2244 }2245 me.__div.ggElementNodeId=function() {2246 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);2247 }2248 this.__div.onclick=function (e) {2249 me.player.openNext(me.hotspot.url,"");2250 me.skin.hotspotProxyClick(me.hotspot.id);2251 }2252 this.__div.onmouseover=function (e) {2253 me.player.setActiveHotspot(me.hotspot);2254 me.skin.hotspotProxyOver(me.hotspot.id);2255 }2256 this.__div.onmouseout=function (e) {2257 me.player.setActiveHotspot(null);2258 me.skin.hotspotProxyOut(me.hotspot.id);2259 }2260 this.__div.ggUpdatePosition=function (useTransition) {2261 }2262 this._rectangle_3=document.createElement('div');2263 this._rectangle_3.ggId="Rectangle 3";2264 this._rectangle_3.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2265 this._rectangle_3.ggVisible=true;2266 this._rectangle_3.className='ggskin ggskin_rectangle ';2267 this._rectangle_3.ggType='rectangle';2268 hs ='';2269 hs+=cssPrefix + 'border-radius : 99px;';2270 hs+='border-radius : 99px;';2271 hs+='background : #ffffff;';2272 hs+='border : 0px solid #000000;';2273 hs+='cursor : default;';2274 hs+='height : 9px;';2275 hs+='left : -4px;';2276 hs+='position : absolute;';2277 hs+='top : -4px;';2278 hs+='visibility : inherit;';2279 hs+='width : 9px;';2280 hs+='pointer-events:auto;';2281 this._rectangle_3.setAttribute('style',hs);2282 this._rectangle_3.style[domTransform + 'Origin']='50% 50%';2283 me._rectangle_3.ggIsActive=function() {2284 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2285 return this.parentNode.ggIsActive();2286 }2287 return false;2288 }2289 me._rectangle_3.ggElementNodeId=function() {2290 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2291 return this.parentNode.ggElementNodeId();2292 }2293 return me.ggNodeId;2294 }2295 this._rectangle_3.ggUpdatePosition=function (useTransition) {2296 }2297 this.__div.appendChild(this._rectangle_3);2298 this._rectangle_2=document.createElement('div');2299 this._rectangle_2.ggId="Rectangle 2";2300 this._rectangle_2.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2301 this._rectangle_2.ggVisible=true;2302 this._rectangle_2.className='ggskin ggskin_rectangle ';2303 this._rectangle_2.ggType='rectangle';2304 hs ='';2305 hs+=cssPrefix + 'border-radius : 99px;';2306 hs+='border-radius : 99px;';2307 hs+='border : 2px solid #ffffff;';2308 hs+='cursor : default;';2309 hs+='height : 27px;';2310 hs+='left : -15px;';2311 hs+='position : absolute;';2312 hs+='top : -15px;';2313 hs+='visibility : inherit;';2314 hs+='width : 27px;';2315 hs+='pointer-events:auto;';2316 this._rectangle_2.setAttribute('style',hs);2317 this._rectangle_2.style[domTransform + 'Origin']='50% 50%';2318 me._rectangle_2.ggIsActive=function() {2319 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2320 return this.parentNode.ggIsActive();2321 }2322 return false;2323 }2324 me._rectangle_2.ggElementNodeId=function() {2325 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2326 return this.parentNode.ggElementNodeId();2327 }2328 return me.ggNodeId;2329 }2330 me._rectangle_2.ggCurrentLogicStateScaling = -1;2331 this._rectangle_2.ggUpdateConditionTimer=function () {2332 var newLogicStateScaling;2333 if (2334 (ggSkinVars['var_ht'] == true)2335 )2336 {2337 newLogicStateScaling = 0;2338 }2339 else {2340 newLogicStateScaling = -1;2341 }2342 if (me._rectangle_2.ggCurrentLogicStateScaling != newLogicStateScaling) {2343 me._rectangle_2.ggCurrentLogicStateScaling = newLogicStateScaling;2344 me._rectangle_2.style[domTransition]='' + cssPrefix + 'transform 750ms ease 0ms';2345 if (me._rectangle_2.ggCurrentLogicStateScaling == 0) {2346 me._rectangle_2.ggParameter.sx = 1.5;2347 me._rectangle_2.ggParameter.sy = 1.5;2348 me._rectangle_2.style[domTransform]=parameterToTransform(me._rectangle_2.ggParameter);2349 }2350 else {2351 me._rectangle_2.ggParameter.sx = 1;2352 me._rectangle_2.ggParameter.sy = 1;2353 me._rectangle_2.style[domTransform]=parameterToTransform(me._rectangle_2.ggParameter);2354 }2355 }2356 }2357 this._rectangle_2.ggUpdatePosition=function (useTransition) {2358 }2359 this.__div.appendChild(this._rectangle_2);2360 this._rectangle_1=document.createElement('div');2361 this._rectangle_1.ggId="Rectangle 1";2362 this._rectangle_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2363 this._rectangle_1.ggVisible=true;2364 this._rectangle_1.className='ggskin ggskin_rectangle ';2365 this._rectangle_1.ggType='rectangle';2366 hs ='';2367 hs+=cssPrefix + 'border-radius : 99px;';2368 hs+='border-radius : 99px;';2369 hs+='border : 3px solid #ffffff;';2370 hs+='cursor : default;';2371 hs+='height : 57px;';2372 hs+='left : -31px;';2373 hs+='position : absolute;';2374 hs+='top : -31px;';2375 hs+='visibility : inherit;';2376 hs+='width : 57px;';2377 hs+='pointer-events:auto;';2378 this._rectangle_1.setAttribute('style',hs);2379 this._rectangle_1.style[domTransform + 'Origin']='50% 50%';2380 me._rectangle_1.ggIsActive=function() {2381 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2382 return this.parentNode.ggIsActive();2383 }2384 return false;2385 }2386 me._rectangle_1.ggElementNodeId=function() {2387 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2388 return this.parentNode.ggElementNodeId();2389 }2390 return me.ggNodeId;2391 }2392 me._rectangle_1.ggCurrentLogicStateScaling = -1;2393 this._rectangle_1.ggUpdateConditionTimer=function () {2394 var newLogicStateScaling;2395 if (2396 (ggSkinVars['var_ht'] == true)2397 )2398 {2399 newLogicStateScaling = 0;2400 }2401 else {2402 newLogicStateScaling = -1;2403 }2404 if (me._rectangle_1.ggCurrentLogicStateScaling != newLogicStateScaling) {2405 me._rectangle_1.ggCurrentLogicStateScaling = newLogicStateScaling;2406 me._rectangle_1.style[domTransition]='' + cssPrefix + 'transform 750ms ease 0ms';2407 if (me._rectangle_1.ggCurrentLogicStateScaling == 0) {2408 me._rectangle_1.ggParameter.sx = 0.75;2409 me._rectangle_1.ggParameter.sy = 0.75;2410 me._rectangle_1.style[domTransform]=parameterToTransform(me._rectangle_1.ggParameter);2411 }2412 else {2413 me._rectangle_1.ggParameter.sx = 1;2414 me._rectangle_1.ggParameter.sy = 1;2415 me._rectangle_1.style[domTransform]=parameterToTransform(me._rectangle_1.ggParameter);2416 }2417 }2418 }2419 this._rectangle_1.ggUpdatePosition=function (useTransition) {2420 }2421 this.__div.appendChild(this._rectangle_1);2422 this.hotspotTimerEvent=function() {2423 setTimeout(function() { me.hotspotTimerEvent(); }, 10);2424 me._rectangle_2.ggUpdateConditionTimer();2425 me._rectangle_1.ggUpdateConditionTimer();2426 }2427 this.hotspotTimerEvent();2428 } else2429 if (hotspot.skinid=='ht_image') {2430 this.__div=document.createElement('div');2431 this.__div.ggId="ht_image";2432 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2433 this.__div.ggVisible=true;2434 this.__div.className='ggskin ggskin_hotspot ';2435 this.__div.ggType='hotspot';2436 hs ='';2437 hs+='height : 5px;';2438 hs+='left : 48px;';2439 hs+='position : absolute;';2440 hs+='top : 347px;';2441 hs+='visibility : inherit;';2442 hs+='width : 5px;';2443 hs+='pointer-events:auto;';2444 this.__div.setAttribute('style',hs);2445 this.__div.style[domTransform + 'Origin']='50% 50%';2446 me.__div.ggIsActive=function() {2447 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2448 return this.parentNode.ggIsActive();2449 }2450 return false;2451 }2452 me.__div.ggElementNodeId=function() {2453 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);2454 }2455 this.__div.onclick=function (e) {2456 me.player.openNext(me.hotspot.url,"");2457 me.skin.hotspotProxyClick(me.hotspot.id);2458 }2459 this.__div.onmouseover=function (e) {2460 me.player.setActiveHotspot(me.hotspot);2461 me.skin.hotspotProxyOver(me.hotspot.id);2462 }2463 this.__div.onmouseout=function (e) {2464 me.player.setActiveHotspot(null);2465 me.skin.hotspotProxyOut(me.hotspot.id);2466 }2467 this.__div.ggUpdatePosition=function (useTransition) {2468 }2469 this._image_11_1=document.createElement('div');2470 this._image_11_1__img=document.createElement('img');2471 this._image_11_1__img.className='ggskin ggskin_image';2472 this._image_11_1__img.setAttribute('src',basePath + 'images/image_11_1.png');2473 this._image_11_1__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');2474 this._image_11_1__img.className='ggskin ggskin_image';2475 this._image_11_1__img['ondragstart']=function() { return false; };2476 me.player.checkLoaded.push(this._image_11_1__img);2477 this._image_11_1.appendChild(this._image_11_1__img);2478 this._image_11_1.ggId="Image 11_1";2479 this._image_11_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2480 this._image_11_1.ggVisible=true;2481 this._image_11_1.className='ggskin ggskin_image ';2482 this._image_11_1.ggType='image';2483 hs ='';2484 hs+='height : 34px;';2485 hs+='left : -14px;';2486 hs+='position : absolute;';2487 hs+='top : -13px;';2488 hs+='visibility : inherit;';2489 hs+='width : 36px;';2490 hs+='pointer-events:auto;';2491 this._image_11_1.setAttribute('style',hs);2492 this._image_11_1.style[domTransform + 'Origin']='0% 0%';2493 me._image_11_1.ggIsActive=function() {2494 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2495 return this.parentNode.ggIsActive();2496 }2497 return false;2498 }2499 me._image_11_1.ggElementNodeId=function() {2500 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2501 return this.parentNode.ggElementNodeId();2502 }2503 return me.ggNodeId;2504 }2505 me._image_11_1.ggCurrentLogicStateScaling = -1;2506 this._image_11_1.ggUpdateConditionTimer=function () {2507 var newLogicStateScaling;2508 if (2509 (ggSkinVars['var_ht'] == true)2510 )2511 {2512 newLogicStateScaling = 0;2513 }2514 else {2515 newLogicStateScaling = -1;2516 }2517 if (me._image_11_1.ggCurrentLogicStateScaling != newLogicStateScaling) {2518 me._image_11_1.ggCurrentLogicStateScaling = newLogicStateScaling;2519 me._image_11_1.style[domTransition]='' + cssPrefix + 'transform 750ms ease 0ms';2520 if (me._image_11_1.ggCurrentLogicStateScaling == 0) {2521 me._image_11_1.ggParameter.sx = 0.9;2522 me._image_11_1.ggParameter.sy = 0.9;2523 me._image_11_1.style[domTransform]=parameterToTransform(me._image_11_1.ggParameter);2524 }2525 else {2526 me._image_11_1.ggParameter.sx = 1;2527 me._image_11_1.ggParameter.sy = 1;2528 me._image_11_1.style[domTransform]=parameterToTransform(me._image_11_1.ggParameter);2529 }2530 }2531 }2532 this._image_11_1.ggUpdatePosition=function (useTransition) {2533 }2534 this.__div.appendChild(this._image_11_1);2535 this.hotspotTimerEvent=function() {2536 setTimeout(function() { me.hotspotTimerEvent(); }, 10);2537 me._image_11_1.ggUpdateConditionTimer();2538 }2539 this.hotspotTimerEvent();2540 } else2541 if (hotspot.skinid=='ht_node') {2542 this.__div=document.createElement('div');2543 this.__div.ggId="ht_node";2544 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2545 this.__div.ggVisible=true;2546 this.__div.className='ggskin ggskin_hotspot ';2547 this.__div.ggType='hotspot';2548 hs ='';2549 hs+='cursor : pointer;';2550 hs+='height : 5px;';2551 hs+='left : 42px;';2552 hs+='position : absolute;';2553 hs+='top : 122px;';2554 hs+='visibility : inherit;';2555 hs+='width : 5px;';2556 hs+='pointer-events:auto;';2557 this.__div.setAttribute('style',hs);2558 this.__div.style[domTransform + 'Origin']='50% 50%';2559 me.__div.ggIsActive=function() {2560 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2561 return this.parentNode.ggIsActive();2562 }2563 return false;2564 }2565 me.__div.ggElementNodeId=function() {2566 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);2567 }2568 this.__div.onclick=function (e) {2569 me.player.openNext(me.hotspot.url,"");2570 me.skin.hotspotProxyClick(me.hotspot.id);2571 }2572 this.__div.onmouseover=function (e) {2573 me.player.setActiveHotspot(me.hotspot);2574 me.skin.hotspotProxyOver(me.hotspot.id);2575 }2576 this.__div.onmouseout=function (e) {2577 me.player.setActiveHotspot(null);2578 me.skin.hotspotProxyOut(me.hotspot.id);2579 }2580 this.__div.ggUpdatePosition=function (useTransition) {2581 }2582 this._image_1_1=document.createElement('div');2583 this._image_1_1__img=document.createElement('img');2584 this._image_1_1__img.className='ggskin ggskin_image';2585 this._image_1_1__img.setAttribute('src',basePath + 'images/image_1_1.png');2586 this._image_1_1__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');2587 this._image_1_1__img.className='ggskin ggskin_image';2588 this._image_1_1__img['ondragstart']=function() { return false; };2589 me.player.checkLoaded.push(this._image_1_1__img);2590 this._image_1_1.appendChild(this._image_1_1__img);2591 this._image_1_1.ggId="Image 1_1";2592 this._image_1_1.ggLeft=-28;2593 this._image_1_1.ggTop=-15;2594 this._image_1_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2595 this._image_1_1.ggVisible=true;2596 this._image_1_1.className='ggskin ggskin_image ';2597 this._image_1_1.ggType='image';2598 hs ='';2599 hs+='height : 28px;';2600 hs+='left : -28px;';2601 hs+='position : absolute;';2602 hs+='top : -15px;';2603 hs+='visibility : inherit;';2604 hs+='width : 54px;';2605 hs+='pointer-events:auto;';2606 this._image_1_1.setAttribute('style',hs);2607 this._image_1_1.style[domTransform + 'Origin']='50% 50%';2608 me._image_1_1.ggIsActive=function() {2609 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2610 return this.parentNode.ggIsActive();2611 }2612 return false;2613 }2614 me._image_1_1.ggElementNodeId=function() {2615 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2616 return this.parentNode.ggElementNodeId();2617 }2618 return me.ggNodeId;2619 }2620 me._image_1_1.ggCurrentLogicStatePosition = -1;2621 me._image_1_1.ggCurrentLogicStateScaling = -1;2622 this._image_1_1.ggUpdateConditionResize=function () {2623 var newLogicStateScaling;2624 if (2625 (me.player.getViewerSize().width == 0)2626 )2627 {2628 newLogicStateScaling = 0;2629 }2630 else {2631 newLogicStateScaling = -1;2632 }2633 if (me._image_1_1.ggCurrentLogicStateScaling != newLogicStateScaling) {2634 me._image_1_1.ggCurrentLogicStateScaling = newLogicStateScaling;2635 me._image_1_1.style[domTransition]='left 750ms ease 0ms, top 750ms ease 0ms, ' + cssPrefix + 'transform 750ms ease 0ms';2636 if (me._image_1_1.ggCurrentLogicStateScaling == 0) {2637 me._image_1_1.ggParameter.sx = 0.8;2638 me._image_1_1.ggParameter.sy = 0.8;2639 me._image_1_1.style[domTransform]=parameterToTransform(me._image_1_1.ggParameter);2640 }2641 else {2642 me._image_1_1.ggParameter.sx = 1;2643 me._image_1_1.ggParameter.sy = 1;2644 me._image_1_1.style[domTransform]=parameterToTransform(me._image_1_1.ggParameter);2645 }2646 }2647 }2648 this._image_1_1.ggUpdateConditionTimer=function () {2649 var newLogicStatePosition;2650 if (2651 (ggSkinVars['var_ht'] == true)2652 )2653 {2654 newLogicStatePosition = 0;2655 }2656 else {2657 newLogicStatePosition = -1;2658 }2659 if (me._image_1_1.ggCurrentLogicStatePosition != newLogicStatePosition) {2660 me._image_1_1.ggCurrentLogicStatePosition = newLogicStatePosition;2661 me._image_1_1.style[domTransition]='left 750ms ease 0ms, top 750ms ease 0ms, ' + cssPrefix + 'transform 750ms ease 0ms';2662 if (me._image_1_1.ggCurrentLogicStatePosition == 0) {2663 me._image_1_1.ggLeft=-28;2664 me._image_1_1.ggTop=-25;2665 me._image_1_1.ggUpdatePosition(true);2666 }2667 else {2668 me._image_1_1.ggLeft=-28;2669 me._image_1_1.ggTop=-15;2670 me._image_1_1.ggUpdatePosition(true);2671 }2672 }2673 }2674 this._image_1_1.ggUpdatePosition=function (useTransition) {2675 if (useTransition==='undefined') {2676 useTransition = false;2677 }2678 if (!useTransition) {2679 this.style[domTransition]='none';2680 }2681 if (this.parentNode) {2682 var w=this.parentNode.offsetWidth;2683 this.style.left=(this.ggLeft - 0 + w/2) + 'px';2684 var h=this.parentNode.offsetHeight;2685 this.style.top=(this.ggTop - 0 + h/2) + 'px';2686 }2687 me._image_1_1.ggUpdateConditionResize();2688 }2689 this.__div.appendChild(this._image_1_1);2690 this.hotspotTimerEvent=function() {2691 setTimeout(function() { me.hotspotTimerEvent(); }, 10);2692 me._image_1_1.ggUpdateConditionTimer();2693 }2694 this.hotspotTimerEvent();2695 } else2696 {2697 this.__div=document.createElement('div');2698 this.__div.ggId="Hotspot_Picture";2699 this.__div.ggLeft=-1;2700 this.__div.ggTop=2;2701 this.__div.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2702 this.__div.ggVisible=true;2703 this.__div.className='ggskin ggskin_hotspot ';2704 this.__div.ggType='hotspot';2705 hs ='';2706 hs+='height : 5px;';2707 hs+='left : -1px;';2708 hs+='position : absolute;';2709 hs+='top : 2px;';2710 hs+='visibility : inherit;';2711 hs+='width : 5px;';2712 hs+='pointer-events:auto;';2713 this.__div.setAttribute('style',hs);2714 this.__div.style[domTransform + 'Origin']='50% 50%';2715 me.__div.ggIsActive=function() {2716 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2717 return this.parentNode.ggIsActive();2718 }2719 return false;2720 }2721 me.__div.ggElementNodeId=function() {2722 return me.hotspot.url.substr(1, me.hotspot.url.length - 2);2723 }2724 this.__div.onclick=function (e) {2725 me.skin._external_picture_inf.style[domTransition]='none';2726 me.skin._external_picture_inf.style.visibility=(Number(me.skin._external_picture_inf.style.opacity)>0||!me.skin._external_picture_inf.style.opacity)?'inherit':'hidden';2727 me.skin._external_picture_inf.ggVisible=true;2728 me.skin._external_picture_inf.ggText=me.hotspot.url;2729 me.skin._external_picture_inf__img.src=me.skin._external_picture_inf.ggText;2730 me.skin._rectangle_pic_inf_bg.style[domTransition]='none';2731 me.skin._rectangle_pic_inf_bg.style.visibility=(Number(me.skin._rectangle_pic_inf_bg.style.opacity)>0||!me.skin._rectangle_pic_inf_bg.style.opacity)?'inherit':'hidden';2732 me.skin._rectangle_pic_inf_bg.ggVisible=true;2733 me.skin.hotspotProxyClick(me.hotspot.id);2734 }2735 this.__div.onmouseover=function (e) {2736 me.player.setActiveHotspot(me.hotspot);2737 me.skin.hotspotProxyOver(me.hotspot.id);2738 }2739 this.__div.onmouseout=function (e) {2740 me.player.setActiveHotspot(null);2741 me.skin.hotspotProxyOut(me.hotspot.id);2742 }2743 this.__div.ggUpdatePosition=function (useTransition) {2744 if (useTransition==='undefined') {2745 useTransition = false;2746 }2747 if (!useTransition) {2748 this.style[domTransition]='none';2749 }2750 if (this.parentNode) {2751 var w=this.parentNode.offsetWidth;2752 this.style.left=(this.ggLeft - 0 + w/2) + 'px';2753 var h=this.parentNode.offsetHeight;2754 this.style.top=(this.ggTop - 0 + h/2) + 'px';2755 }2756 }2757 this._image_6=document.createElement('div');2758 this._image_6__img=document.createElement('img');2759 this._image_6__img.className='ggskin ggskin_image';2760 this._image_6__img.setAttribute('src',basePath + 'images/image_6.png');2761 this._image_6__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');2762 this._image_6__img.className='ggskin ggskin_image';2763 this._image_6__img['ondragstart']=function() { return false; };2764 me.player.checkLoaded.push(this._image_6__img);2765 this._image_6.appendChild(this._image_6__img);2766 this._image_6.ggId="Image 6";2767 this._image_6.ggLeft=-21;2768 this._image_6.ggTop=-24;2769 this._image_6.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2770 this._image_6.ggVisible=true;2771 this._image_6.className='ggskin ggskin_image ';2772 this._image_6.ggType='image';2773 hs ='';2774 hs+='height : 40px;';2775 hs+='left : -21px;';2776 hs+='position : absolute;';2777 hs+='top : -24px;';2778 hs+='visibility : inherit;';2779 hs+='width : 40px;';2780 hs+='pointer-events:auto;';2781 this._image_6.setAttribute('style',hs);2782 this._image_6.style[domTransform + 'Origin']='50% 50%';2783 me._image_6.ggIsActive=function() {2784 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2785 return this.parentNode.ggIsActive();2786 }2787 return false;2788 }2789 me._image_6.ggElementNodeId=function() {2790 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2791 return this.parentNode.ggElementNodeId();2792 }2793 return me.ggNodeId;2794 }2795 this._image_6.ggUpdatePosition=function (useTransition) {2796 if (useTransition==='undefined') {2797 useTransition = false;2798 }2799 if (!useTransition) {2800 this.style[domTransition]='none';2801 }2802 if (this.parentNode) {2803 var w=this.parentNode.offsetWidth;2804 this.style.left=(this.ggLeft - 0 + w/2) + 'px';2805 var h=this.parentNode.offsetHeight;2806 this.style.top=(this.ggTop - 0 + h/2) + 'px';2807 }2808 }2809 this.__div.appendChild(this._image_6);2810 }2811 };2812 this.addSkinHotspot=function(hotspot) {2813 return new SkinHotspotClass(me,hotspot);2814 }2815 function SkinElement_image_ad_1_Class(skinObj,ggParent) {2816 var me=this;2817 var flag=false;2818 this.player=skinObj.player;2819 this.skin=skinObj;2820 this.ggParent=ggParent;2821 var nodeId=ggParent.ggElementNodeId();2822 this.ggNodeId=nodeId;2823 this.ggUserdata=this.skin.player.getNodeUserdata(nodeId);2824 this.elementMouseDown=[];2825 this.elementMouseOver=[];2826 2827 this.findElements=function(id,regex) {2828 return me.skin.findElements(id,regex);2829 }2830 2831 this._image_ad_1=document.createElement('div');2832 this._image_ad_1__img=document.createElement('img');2833 this._image_ad_1__img.className='ggskin ggskin_image';2834 this._image_ad_1__img.setAttribute('src',basePath + 'images/image_ad_1.png');2835 this._image_ad_1__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');2836 this._image_ad_1__img.className='ggskin ggskin_image';2837 this._image_ad_1__img['ondragstart']=function() { return false; };2838 me.player.checkLoaded.push(this._image_ad_1__img);2839 this._image_ad_1.appendChild(this._image_ad_1__img);2840 this._image_ad_1.ggId="Image ad_1";2841 this._image_ad_1.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2842 this._image_ad_1.ggVisible=false;2843 this._image_ad_1.className='ggskin ggskin_image ';2844 this._image_ad_1.ggType='image';2845 hs ='';2846 hs+='height : 10px;';2847 hs+='left : -215px;';2848 hs+='position : absolute;';2849 hs+='top : 13px;';2850 hs+='visibility : hidden;';2851 hs+='width : 10px;';2852 hs+='pointer-events:auto;';2853 this._image_ad_1.setAttribute('style',hs);2854 this._image_ad_1.style[domTransform + 'Origin']='50% 50%';2855 me._image_ad_1.ggIsActive=function() {2856 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2857 return this.parentNode.ggIsActive();2858 }2859 return false;2860 }2861 me._image_ad_1.ggElementNodeId=function() {2862 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2863 return this.parentNode.ggElementNodeId();2864 }2865 return me.ggNodeId;2866 }2867 this._image_ad_1.ggUpdatePosition=function (useTransition) {2868 }2869 this._image_ad_1.ggNodeChangeMain=function() {2870 }2871 return this._image_ad_1;2872 };2873 function SkinElement_image_ad_2_Class(skinObj,ggParent) {2874 var me=this;2875 var flag=false;2876 this.player=skinObj.player;2877 this.skin=skinObj;2878 this.ggParent=ggParent;2879 var nodeId=ggParent.ggElementNodeId();2880 this.ggNodeId=nodeId;2881 this.ggUserdata=this.skin.player.getNodeUserdata(nodeId);2882 this.elementMouseDown=[];2883 this.elementMouseOver=[];2884 2885 this.findElements=function(id,regex) {2886 return me.skin.findElements(id,regex);2887 }2888 2889 this._image_ad_2=document.createElement('div');2890 this._image_ad_2__img=document.createElement('img');2891 this._image_ad_2__img.className='ggskin ggskin_image';2892 this._image_ad_2__img.setAttribute('src',basePath + 'images/image_ad_2.png');2893 this._image_ad_2__img.setAttribute('style','position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;-webkit-user-drag:none;pointer-events:none;');2894 this._image_ad_2__img.className='ggskin ggskin_image';2895 this._image_ad_2__img['ondragstart']=function() { return false; };2896 me.player.checkLoaded.push(this._image_ad_2__img);2897 this._image_ad_2.appendChild(this._image_ad_2__img);2898 this._image_ad_2.ggId="Image ad_2";2899 this._image_ad_2.ggParameter={ rx:0,ry:0,a:0,sx:1,sy:1 };2900 this._image_ad_2.ggVisible=false;2901 this._image_ad_2.className='ggskin ggskin_image ';2902 this._image_ad_2.ggType='image';2903 hs ='';2904 hs+='height : 10px;';2905 hs+='left : -61px;';2906 hs+='position : absolute;';2907 hs+='top : 63px;';2908 hs+='visibility : hidden;';2909 hs+='width : 10px;';2910 hs+='pointer-events:auto;';2911 this._image_ad_2.setAttribute('style',hs);2912 this._image_ad_2.style[domTransform + 'Origin']='50% 50%';2913 me._image_ad_2.ggIsActive=function() {2914 if ((this.parentNode) && (this.parentNode.ggIsActive)) {2915 return this.parentNode.ggIsActive();2916 }2917 return false;2918 }2919 me._image_ad_2.ggElementNodeId=function() {2920 if ((this.parentNode) && (this.parentNode.ggElementNodeId)) {2921 return this.parentNode.ggElementNodeId();2922 }2923 return me.ggNodeId;2924 }2925 this._image_ad_2.ggUpdatePosition=function (useTransition) {2926 }2927 this._image_ad_2.ggNodeChangeMain=function() {2928 }2929 return this._image_ad_2;2930 };2931 this.addSkin();...
jquery.googoose.js
Source:jquery.googoose.js
1/*!2 * googoose 1.0.23 * https://github.com/aadel112/googoose/js/jquery.googoose.js4 * @license Apache 2.05 *6 * Copyright (C) 2016 - aadel112.com - A project by Aaron Adel 7 */8(function ( $ ) {9 $.fn.googoose = function( options, callback ) {10 var GG = this;11 var now = new Date().getTime();12 var proto = new RegExp(/^(http|https|file):/);13 var ab = new RegExp(/^\//);14 GG.finish = function() {15 if( options.debug ) 16 GG.debug_fn('finish action');17 if (callback) {18 var blob = new Blob([options.html], {19 type: 'application/msword'20 });21 callback(null, blob);22 } else {23 GG.saveHtmlAsFile(options.filename, options.html);24 }25 }26 var options = $.extend({27 // These are the defaults.28 area: 'div.googoose-wrapper',29 headerfooterid: 'googoose-hdrftrtbl',30 margins: '1.0in',31 zoom: '75',32 filename: 'Doc1_' + now + '.doc',33 size: '8.5in 11.0in',34 display: 'Print',35 lang: 'en-US',36 toc: 'div.googoose.toc',37 pagebreak: 'div.googoose.break',38 headerarea: 'div.googoose.header',39 footerarea: 'div.googoose.footer',40 headerid: 'googoose-header',41 footerid: 'googoose-footer',42 headermargin: '.5in',43 footermargin: '.5in',44 currentpage: 'span.googoose.currentpage',45 totalpage: 'span.googoose.totalpage',46 finishaction: GG.finish,47 html: null,48 initobj: document,49 debugtype: 'alert',50 debug: 051 }, options );52 GG.options = options;53 54 //http://requiremind.com/memoization-speed-up-your-javascript-performance/55 GG.memoize = function(fn, resolver) {56 var memoized = function() {57 resolver = resolver || JSON.stringify;58 var cache = memoized.cache;59 var args = Array.prototype.slice.call(arguments);60 var key = resolver.apply(this, args);61 if(key in cache) {62 GG.debug_fn('hit cache');63 return cache[key];64 }65 var result = fn.apply(this, arguments);66 cache[key] = result;67 return result;68 };69 memoized.cache = {};70 return memoized;71 }72 GG.debug_fn = function( args ) {73 options.debugtype == 'console' ? console.log( args ) : alert( args );74 }75 //http://stackoverflow.com/questions/18755750/saving-text-in-a-local-file-in-internet-explorer-1076 GG.saveHtmlAsFile = function(77 fileNameToSaveAs, textToWrite78 ) {79 /* Saves a text string as a blob file*/ 80 var ie = navigator.userAgent.match(/MSIE\s([\d.]+)/),81 ie11 = navigator.userAgent.match(/Trident\/7.0/) && navigator.userAgent.match(/rv:11/),82 ieEDGE = navigator.userAgent.match(/Edge/g),83 ieVer=(ie ? ie[1] : (ie11 ? 11 : (ieEDGE ? 12 : -1)));84 if (ie && ieVer<10) {85 console.log("No blobs on IE ver<10");86 return;87 }88 var textFileAsBlob = new Blob([textToWrite], {89 type: 'application/msword'90 });91 if (ieVer>-1) {92 window.navigator.msSaveBlob(textFileAsBlob, fileNameToSaveAs);93 } else {94 var downloadLink = document.createElement("a");95 downloadLink.download = fileNameToSaveAs;96 downloadLink.href = window.URL.createObjectURL(textFileAsBlob);97 downloadLink.onclick = function(e) { document.body.removeChild(e.target); };98 downloadLink.style.display = "none";99 document.body.appendChild(downloadLink);100 downloadLink.click();101 }102 }103 // http://stackoverflow.com/questions/7394748/whats-the-right-way-to-decode-a-string-that-has-special-html-entities-in-it104 GG.decodeHtmlEntity = function(str) {105 return str.replace(/&#(\d+);/g, function(match, dec) {106 return String.fromCharCode(dec);107 });108 }109 GG.translate_mso_features = function( html ) {110 if( options.debug ) 111 GG.debug_fn('GG.translate_mso_features');112 html = GG.decodeHtmlEntity(html);113 html = GG.remove_bad_tags(html);114 html = GG.convert_pagebreaks(html);115 html = GG.convert_toc(html);116 html = GG.convert_hdrftr(html);117 html = GG.convert_imgs(html);118 return html;119 }120 GG.remove_bad_tags = function( html ) {121 if( options.debug )122 GG.debug_fn('GG.remove_bad_tags');123 var thtml = $(html);124 125 thtml.find('noscript').each(function() {126 $(this).replaceWith(''); 127 });128 thtml.each(function() {129 if($(this).is(':hidden')){130 $(this).remove();131 }132 });133 html = thtml[0].outerHTML;134 return html;135 }136 GG.convert_pagebreaks = function( html ) {137 if( options.debug )138 GG.debug_fn('GG.convert_pagebreaks');139 //user decides in html what will be a page break in word, this converts to a page break140 if( options.pagebreak ) {141 var thtml = $(html);142 thtml.find(options.pagebreak).replaceWith(GG.get_pagebreak());143 html = thtml[0].outerHTML;144 }145 return html;146 }147 GG.convert_toc = function( html ) {148 if( options.debug )149 GG.debug_fn('GG.convert_toc');150 //user determines in html what will be the toc in word151 if( options.toc && $(options.toc).length ) {152 var thtml = $(html);153 thtml.find(options.toc).replaceWith(GG.get_toc_contents());154 html = thtml[0].outerHTML;155 }156 return html; 157 }158 GG.convert_hdrftr = function( html ) {159 if( options.debug )160 GG.debug_fn('GG.convert_hdrftr');161 var hvis = options.headerarea && $(options.headerarea).length;162 var fvis = options.footerarea && $(options.footerarea).length;163 if( hvis || fvis ) {164 var thtml = $('<div>' + html + '</div>' );165 var hdrftr = $('<table id=\'' + options.headerfooterid + '\'></table>');166 hdrftr.append('<tr><td class=h></td><td class=f></td></tr>');167 thtml.append(hdrftr);168 html = thtml[0].outerHTML;169 html = GG.convert_totalpage(html);170 html = GG.convert_currentpage(html);171 }172 var thtml = $(html);173 if( hvis ) {174 var new_header = thtml.find(options.headerarea)[0].outerHTML;175 thtml.find(options.headerarea).replaceWith('');176 thtml.find('table#' + options.headerfooterid + ' .h').append( 177 GG.headerstart() + new_header + GG.headerend() );178 html = thtml[0].outerHTML;179 }180 if( fvis ) {181 var new_footer = thtml.find(options.footerarea)[0].outerHTML;182 thtml.find(options.footerarea).replaceWith('');183 thtml.find('table#' + options.headerfooterid + ' .f').append( 184 GG.footerstart() + new_footer + GG.footerend());185 html = thtml[0].outerHTML;186 }187 return html;188 }189 GG.convert_imgs = function( html ) {190 if( options.debug )191 GG.debug_fn('GG.convert_imgs');192 //make sure all standard images use absolute path 193 var thtml = $(html);194 imgs = thtml.find('img');195 imgs.each(function() {196 var src = $(this)[0].src;197 var l = window.location;198 var t = l.protocol + '//' + l.host + '/';199 if( proto.test( src ) ) {200 } else if( ab.test( src ) ) {201 src = t + src; 202 } else {203 var p = l.path.replace('/\/[^\/.]+$/', '/' );204 src = t + p + src;205 }206 $(this).attr( 'src', src );207 });208 html = thtml[0].outerHTML;209 return html;210 }211 GG.convert_totalpage = function(html) {212 if( options.debug )213 GG.debug_fn('GG.convert_totalpage');214 if( options.totalpage && $(options.totalpage).length ) {215 var thtml = $(html);216 thtml.find(options.totalpage).html('');217 thtml.find(options.totalpage).append( GG.get_total_page_number() );218 html = thtml[0].outerHTML;219 }220 return html;221 }222 GG.convert_currentpage = function(html) {223 if( options.debug )224 GG.debug_fn('GG.convert_currentpage');225 if( options.currentpage && $(options.currentpage).length ) {226 var thtml = $(html);227 thtml.find(options.currentpage).html('');228 thtml.find(options.currentpage).append( GG.get_page_number() );229 html = thtml[0].outerHTML;230 }231 return html;232 }233 GG.get_pagebreak = function() {234 if( options.debug ) 235 GG.debug_fn('GG.get_pagebreak');236 return '<br clear=all style=\'mso-special-character:line-break;page-break-before:always\'>';237 }238 GG.headerstart = function() {239 var html = '';240 html += '\n<div style=\'mso-element:header\' id=' + options.headerid + '>\n';241 html += '<p class="MsoHeader">\n';242 return html;243 }244 GG.headerend = function() {245 if( options.debug )246 GG.debug_fn('GG.headerend');247 return '</p></div>\n';248 }249 GG.footerstart = function() {250 if( options.debug ) 251 GG.debug_fn('GG.footerstart');252 var html = '';253 html += '<div style=\'mso-element:footer\' id=' + options.footerid + '>';254 return html;255 }256 GG.footerend = function() {257 if( options.debug )258 GG.debug_fn('GG.footerend');259 return '</div>\n';260 }261 GG.get_page_number = function() {262 if( options.debug )263 GG.debug_fn('GG.get_page_number');264 var html = '<!--[if supportFields]><span\n';265 html += 'class=MsoPageNumber><span style=\'mso-element:field-begin\'></span><span\n';266 html += 'style=\'mso-spacerun:yes\'> </span>PAGE <span style=\'mso-element:field-separator\'></span></span><![endif]--><span\n';267 html += 'class=MsoPageNumber><span style=\'mso-no-proof:yes\'>1</span></span><!--[if supportFields]><span\n';268 html += 'class=MsoPageNumber><span style=\'mso-element:field-end\'></span></span><![endif]-->'; 269 return html;270 }271 GG.get_total_page_number = function() {272 if( options.debug )273 GG.debug_fn('GG.get_total_page_number');274 var html = '<!--[if supportFields]><span class=MsoPageNumber><span \n';275 html += ' style=\'mso-element:field-begin\'></span> NUMPAGES <span style=\'mso-element:field-separator\'></span></span><![endif]--><span \n';276 html += ' class=MsoPageNumber><span style=\'mso-no-proof:yes\'>1</span></span><!--[if supportFields]><span \n'277 html += ' class=MsoPageNumber><span style=\'mso-element:field-end\'></span></span><![endif]-->\n';278 return html;279 }280 GG.get_toc_contents = function() {281 if( options.debug ) 282 GG.debug_fn('GG.get_toc_contents');283 var toc = '<p class=MsoToc1>\n';284 toc += '<!--[if supportFields]>\n';285 toc += '<span style=\'mso-element:field-begin\'></span>\n';286 toc += 'TOC \o "1-3" \\u \n';287 toc += '<span style=\'mso-element:field-separator\'></span>\n';288 toc += '<![endif]-->\n';289 toc += '<span style=\'mso-no-proof:yes\'>Table of content - Please right-click and choose "Update fields".</span>\n';290 toc += '<!--[if supportFields]>\n';291 toc += '<span style=\'mso-element:field-end\'></span>\n';292 toc += '<![endif]-->\n';293 toc += '</p>\n';294 return toc;295 }296 //TODO - figure out a way to simulate a right mpuse click, update fields297 GG.include_css = function( html ) {298 if( options.debug ) 299 GG.debug_fn('GG.include_css');300 //adding any header information that may be pertinent in teh copied html301 var tags = ['style', 'link'];302 for( i = 0; i < tags.length ; ++i ) {303 $(document).find(tags[i]).each( function( ) {304 if(tags[i] != 'link' || ($(this).attr('rel') == 'stylesheet' && proto.test($(this).attr('href')))) {305 html += ( '\n' + $(this)[0].outerHTML + '\n' );306 }307 } );308 }309 return html;310 }311 GG.html = function() {312 if( options.debug ) 313 GG.debug_fn('GG.html');314 if( !$(options.area).length ) {315 return null;316 }317// // fixes IE pre tag handling318// $('pre').each(function() {319// $(this)[0].outerHTML = $(this)[0].outerHTML.replace(/\n/g, "<br />\n");320// });321 // adding the standard mso header 322 var html = '<html xmlns:o=\'urn:schemas-microsoft-com:office:office\' xmlns:w=\'urn:schemas-microsoft-com:office:word\' xmlns=\'http://www.w3.org/TR/REC-html40\'>\n';323 html += '<head>\n';324 html += '<!--[if gte mso 9]>\n';325 html += '<xml>\n';326 html += '<w:WordDocument>\n';327 html += ( '<w:View>' + options.display + '</w:View>\n' );328 html += ('<w:Zoom>'+ options.zoom +'</w:Zoom>\n');329 html += '<w:DoNotOptimizeForBrowser/>\n';330 html += '</w:WordDocument>\n';331 html += '<o:OfficeDocumentSettings>\n';332 html += '<o:AllowPNG/>\n';333 html +='</o:OfficeDocumentSettings>\n';334 html += '</xml>\n';335 html += '<![endif]-->\n';336 html += '';337 html = GG.include_css( html );338 //adding in mso style necessesities339 html += '<style>\n';340 html += '<!--\n';341 html += '@page {\n';342 html += ('\tsize:' + options.size + ';\n');343 html += ('\tmargin:' + options.margins + ';\n');344 html += '}\n';345 html += '@page Container {\n';346 html += ('\tmso-header-margin:' + options.headermargin + ';\n' );347 html += ('\tmso-footer-margin:' + options.footermargin + ';\n' );348 html += ('\tmso-header:' + options.headerid + ';\n' );349 html += ('\tmso-footer:' + options.footerid + ';\n' );350 html += '}\n';351 html += 'div.Container { page:Container; }\n';352 html += ( 'table#' + options.headerfooterid + ' {\n' );353 html += '\tmargin:0in 0in 0in 9in;\n';354 html += '}\n';355 html += '-->\n';356 html += '</style>\n';357 //close head358 html += '</head>\n';359 //start body360 html += ('<body lang=' + options.lang + '>\n<div class=Container>');361 //add area content362 if($(options.initobj).is(options.area)) {363 if(options.debug)364 GG.debug_fn('is');365 html += GG.translate_mso_features($(options.initobj)[0].outerHTML);366 } else {367 if(options.debug)368 GG.debug_fn('no is');369 $(options.initobj).find(options.area).each(function(){370 html += GG.translate_mso_features($(this)[0].outerHTML);371 });372 }373 //close body374 html += '</div></body>\n';375 //close doc376 html += '</html>\n';377 return html;378 }379 //memoized fns380 // GG.pngname = GG.memoize(GG.get_png_name);381 //execution382 if( options.debug )383 GG.debug_fn('googoose exec');384 options.html = GG.html();385 if( options.html && options.finishaction ) {386 options.finishaction(); 387 }388// return options;389 return GG;390 };...
local_greengrass.js
Source:local_greengrass.js
1// Require AWS IoT Device SDK2const awsIoT = require('aws-iot-device-sdk');3// Require crypto for random numbers generation4const crypto = require('crypto');5// Load the endpoint from file6const endpointFile = require('/home/ec2-user/environment/endpoint.json');7// Require request to make a request to the Greengrass endpoint8const request = require('request');9// Require fs to open the certificate, private key and root CA files10const fs = require('fs');11// Fetch the deviceName from the folder name12const deviceName = __dirname.split('/').pop();13// Build the Greengrass Discover URL14const greengrassDiscoverURL = 'https://' + endpointFile.endpointAddress + ':8443/greengrass/discover/thing/' + deviceName;15//16// Global variables17//18// Device client for the AWS IoT SDK19var device;20var t = process.argv[2]; 21// Core Connectivity array22var ggCoreConnectivity = [];23// Used to loop through all Connectivity options from GG Core24var ggCoreConnectivityCount = 0;25// Buffer storing the Greengrass Core Certificate Authority used to connect26var ggCoreCAs;27var n=1;28// Flag to know when the connectivity to GG Core is established29var ggCoreConnectionEstablished = false;30// Options for Request to GG Discovery API31const ggDiscoveryRequestOptions = {32 url: greengrassDiscoverURL, // the URL33 cert: fs.readFileSync('certificate.pem.crt'), // the cert of the client34 key: fs.readFileSync('private.pem.key'), // the key of the client35 ca: fs.readFileSync('/home/ec2-user/environment/root-CA.crt') // the certificate authority of the client's cert36};37if (process.argv.length <= 2) {38 console.log("Time to go idle is missing. Hence exiting");39 process.exit(-1);40}41// Make a request to the Greengrass Discovery API42request.get(ggDiscoveryRequestOptions, function (error, response, body) {43 44 // If there was no error45 if (error === null) {46 47 // Parse the response body as an object48 const ggDiscoverResponse = JSON.parse(body);49 50 // Output the response returned by the Greengrass Discovery API51 //console.log("Data received from Greengrass Discovery API:\r\n" + JSON.stringify(ggDiscoverResponse, null, 4));52 console.log("Data received from Greengrass Discovery API:\r\n");53 54 // Store the Greengrass Core CA55 ggCoreCAs = Buffer.from(ggDiscoverResponse.GGGroups[0].CAs.join());56 57 // Store the Greengrass Core Connectivity options58 ggCoreConnectivity = ggDiscoverResponse.GGGroups[0].Cores[0].Connectivity;59 60 // Connect to Greengrass Core using the first option61 connectToGGCore(ggCoreConnectivity[ggCoreConnectivityCount].HostAddress, ggCoreConnectivity[ggCoreConnectivityCount].PortNumber);62 63 } else {64 65 // An error occurred while communicating with Greengrass Discovery API, log and exit66 console.log("Issue communicating with the Greengrass API");67 console.log("Error:", JSON.stringify(error));68 console.log("Response:", JSON.stringify(response));69 console.log("Body:", JSON.stringify(body));70 process.exit(1);71 }72});73// Function to connect to Greengrass Core at the specified address and port74function connectToGGCore (ggCoreHostAddress, ggCorePortNumber) {75// console.log('Trying to connect to Greengrass Core with the address', ggCoreHostAddress, 'and port', ggCorePortNumber);76 77 // Create the device object with argument data78 // This automatically establishes the connection79 device = awsIoT.device({80 keyPath: 'private.pem.key',81 certPath: 'certificate.pem.crt',82 clientId: deviceName,83 connectTimeout: 5000,84 host: ggCoreHostAddress,85 port: ggCorePortNumber,86 caCert: ggCoreCAs87 });88 89 // Function that gets executed when the connection to Greengrass Core is established90 device.on('connect', function() {91 console.log('Connected to Greengrass Core');92 ggCoreConnectionEstablished = true;93 94 // Start the publish loop95 infiniteLoopPublish();96 });97 98 // Function that gets executed when the connection to Greengrass Core failed99 // If the connection wasn't established prior to this event firing, it will100 // try the next connectivity option to connect to Greengrass Core.101 // If that was the last option, it will exit the process in error.102 device.on('error', function(error) {103 104 // If the connection isn't established105 if (ggCoreConnectionEstablished === false) {106 107 // The timeout to connect has been reached, stop the device from retrying108 device.end(true);109 110 // Increase the count for the list of Connectivity options to Greengrass Core111 ggCoreConnectivityCount++;112 113 // If the count is equal to the length of the Connectivity list, log and exit114 if (ggCoreConnectivityCount == ggCoreConnectivity.length) {115 console.log("Couldn't establish a connection with Greengrass Core");116 process.exit(1);117 } else { // There are remaining options to try in the Connectivity list118 119 // Connect to Greengrass Core using the next option120 connectToGGCore(ggCoreConnectivity[ggCoreConnectivityCount].HostAddress, ggCoreConnectivity[ggCoreConnectivityCount].PortNumber);121 }122 }123 });124}125// Function sending ban telemetry data every 5 seconds126function infiniteLoopPublish(n) {127 console.log('Sending ban Body temperature data to AWS IoT for ' + deviceName);128 // Publish ban data to ban/messaging topic with getBanData129 device.publish("ban/messaging", JSON.stringify(getBanData(deviceName)));130 131 // Start Infinite Loop of Publish every 5 seconds132 //setInterval(infiniteLoopPublish, 5000*12);133 setInterval(infiniteLoopPublish, 5000*t);134 console.log(deviceName + ' has transferred data and will go to sleep mode for '+ (5000*t)/60000+' Minutes ');135}136var chargeLevel=100;137// Function to give battery percentage138function BatteryPercentage(){139 if (n==1){140 n++;141 return chargeLevel;142 }143 else {144 chargeLevel = 0.99999*chargeLevel;145 return parseFloat(chargeLevel);146}147}148// Function to create a random float between minValue and maxValue149function randomFloatBetween(minValue,maxValue){150 return parseFloat(Math.min(minValue + (Math.random() * (maxValue - minValue)),maxValue));151}152// Generate random ban data based on the deviceName153function getBanData(deviceName) {154 let message = {155 'id': crypto.randomBytes(15).toString('hex'),156 'Unit': 'Degree Celsius',157 'body_temperature_Celsius': randomFloatBetween(35.055, 37.55),158 'Battery_Percentage': BatteryPercentage()159 };160 161 const device_data = { 162 'ban1': {163 'vin': 'I5Z45ZSGBRZFU4YRM',164 'locations':'Forehead',165 'Type':'Temperature'166 },167 'ban2': {168 'vin': 'ETWUASOOGRZOPQRTR',169 'locations':'LeftFoot',170 'Type':'Pulse Oximeter'171 }172 };173 174 message['vin'] = device_data[deviceName].vin;175 message['locations'] = device_data[deviceName].locations;176 message['Type'] = device_data[deviceName].Type;177 message['device'] = deviceName;178 message['datetime'] = new Date().toISOString().replace(/\..+/, '');179 return message;...
grid-gallery.js
Source:grid-gallery.js
1$(document).on('click','.gg-element',function(){2 var selected=$(this);3 var prev=$(this).prev().find('img');4 var next=$(this).next().find('img');5 $('#gg-screen').show();6 var l=$(".gg-element").length-1;7 var p=$(".gg-element").index(selected);8 function buttons(){9 if (l > 1) {10 if (p == 0){11 return '<div class="gg-close gg-bt">×</div><div class="gg-nxt gg-bt">→</div>';12 }13 else if (p == l) {14 return '<div class="gg-close gg-bt">×</div><div class="gg-prev gg-bt">←</div>';15 }16 else{17 return '<div class="gg-close gg-bt">×</div><div class="gg-nxt gg-bt">→</div><div class="gg-prev gg-bt">←</div>';18 }19 }20 else{21 return '<div class="gg-close gg-bt">×</div>';22 }23 }24 buttons();25 var content=buttons();26 $("#gg-screen").html('<div class="gg-image"></div>' + content);27 $(".gg-image").html('<img src="'+ $('img', this).attr('src') +'">');28 $("body").css('overflow','hidden');29 $(document).on('click','.gg-close',function(){30 $("#gg-screen").hide();31 $("body").css('overflow','auto');32 });33 $("#gg-screen").on('click', function(e) {34 if (e.target == this){35 $("#gg-screen").hide();36 $("body").css('overflow','auto');37 }38 });39 $(document).on('click','.gg-prev',function(){40 selected=selected.prev();41 prev=selected.find('img');42 var previmg='<img src="'+ prev.attr('src') +'">';43 $(".gg-image").html(previmg);44 p=$(".gg-element").index(selected);45 buttons();46 content=buttons();47 $("#gg-screen").html('<div class="gg-image">'+ previmg + '</div>' + content);48 });49 $(document).on('click','.gg-nxt',function(){50 selected=selected.next();51 next=selected.find('img');52 var nxtimg='<img src="'+ next.attr('src') +'">';53 $(".gg-image").html(nxtimg);54 p=$(".gg-element").index(selected);55 buttons();56 content=buttons();57 $("#gg-screen").html('<div class="gg-image">'+ nxtimg + '</div>' + content);58 });59 $(document).on('keydown',function(e) {60 if(e.keyCode == 37 && p>0) {61 selected=selected.prev();62 prev=selected.find('img');63 var previmg='<img src="'+ prev.attr('src') +'">';64 $(".gg-image").html(previmg);65 p=$(".gg-element").index(selected);66 buttons();67 content=buttons();68 $("#gg-screen").html('<div class="gg-image">'+ previmg + '</div>' + content);69 }70 else if(e.keyCode == 39 && p < l) {71 selected=selected.next();72 next=selected.find('img');73 var nxtimg='<img src="'+ next.attr('src') +'">';74 $(".gg-image").html(nxtimg);75 p=$(".gg-element").index(selected);76 buttons();77 content=buttons();78 $("#gg-screen").html('<div class="gg-image">'+ nxtimg + '</div>' + content);79 }80 });...
coinWarp.js
Source:coinWarp.js
1GREENGUY = GGG = function () {2 W({g: 0}).db()3 w.gG(100, 100)4 w.gG(200, 200)5 w.gG(300, 300)6 w.circ(100, 100, 30).K('bullet')7}8b.warping = function () { 9 var b = this10 11 $t(function () {12 13 var y = b.Y()14 if (y < 0) {b.Y(300) }15 if (y > 300) {b.Y(0) }16 17 var x= b.X()18 if (x < 0) {b.X(600)}19 if (x > 600) {b.X(0)}20 })21 22 return b23} //=b.marioWarping24w.coin = function (x, y) {var w=this25 // random coords on the screen26 x = N(x) ? x : M.r() * 60027 y = N(y) ? y : M.r() * 30028 //make coins29 var coin = M.r() <.8? w.BALL(x, y, 6, 'y') :30 w.BALL(x, y, 10, 'o')31 //give coin impulse32 coin.I(M.r() - .5, M.r() - .5)33 return coin.warping().K('coin')34}35cx.aOf=cx.fAOf = function (k) {return this.A().of(k)}36cx.bOf=cx.fBOf = function (k) {return this.B().of(k)}37cx.bAOf=function(k){return this.a().of(k)}38cx.bBOf = function (k) {return this.b().of(k)}39cx.nW=function(a,b,c){return !this.w(a,b,c)}40w.clFnOb=function(k, fn, ob){41 var w=this42 w.cl(k, fn)43 _.e(ob, function(val, key){44 w.cl(k, key, val )45 })46 return w47}48CONWARP = COIN = function () {49 score = 050 badScore = 051 W({W: 600, H: 300, g: 0, w: 0})52 53 54 function thrustP(){55 return w.p(2.5).hzCen().Y(200)56 .lD(5).aD(10)57 .warping().con('thrust')}58 p = thrustP()59 60 function gG(){61 w.gG(M.r() * 600).warping()}62 _.t(2, gG)63 function works0(){64 //w.cl('player', 'coin', function(coin){coin.B().sDs(); score++})65 //w.cl('gG', 'coin', function (coin) {coin.B().sDs(); badScore++})66 }67 function works(){68 w.cl('coin', function(){this.B().kill()})69 w.cl('coin', 'player', function (player) {score++})70 w.cl('coin', 'gG', function (gG) {badScore++})71 }72 w.clFnOb('coin', function () {this.B().kill()},{73 player: function () {score++},74 gG: function () {badScore++}75 })76 77 var didIt= false78 79 _.ev(3, function () {80 81 82 /*if(!didIt && score == 10){83 ditIt=true84 w.db()85 _.in(5,function(){w.db()})86 }87 */88 89 w.coin()90 91 w.st.pen(score+'/'+badScore)92 })93}94w.gG=w.greenGuy = function (x, y) {95 x = N(x) ? x : 100;96 y = N(y) ? y : 10097 var w = this98 var gG = w.D(x, y)99 100 gG.size= 20101 gG.core = gG.K('gG')102 .rect(20, 25).re(2)103 104 gG.shrivel = function () {var gG = this105 gG.size = 20106 107 //; gG.lV(0).aV(0)108 }109 110 gG.makeShel=function(){111 var gG=this;112 if(gG.shel){gG.shel.kill()}113 G.shel = gG._BOX_(gG.size, gG.size)114 }115 gG.growSize =function(){116 this.size += 4; return this117 }118 _.ev(.5, function () { gG.growSize().makeShel() })119 gG.core.cl('player', function () {120 gG.shrivel()121 })122 123 return gG124 125}126 127 128 ...
coinWarp1.js
Source:coinWarp1.js
1GREENGUY = GGG = function () {2 W({g: 0}).db()3 w.gG(100, 100)4 w.gG(200, 200)5 w.gG(300, 300)6 w.circ(100, 100, 30).K('bullet')7}8b.warping = function () { 9 var b = this10 11 $t(function () {12 13 var y = b.Y()14 if (y < 0) {b.Y(300) }15 if (y > 300) {b.Y(0) }16 17 var x= b.X()18 if (x < 0) {b.X(600)}19 if (x > 600) {b.X(0)}20 })21 22 return b23} //=b.marioWarping24w.coin = function (x, y) {var w=this25 // random coords on the screen26 x = N(x) ? x : M.r() * 60027 y = N(y) ? y : M.r() * 30028 //make coins29 var coin = M.r() <.8? w.BALL(x, y, 6, 'y') :30 w.BALL(x, y, 10, 'o')31 //give coin impulse32 coin.I(M.r() - .5, M.r() - .5)33 return coin.warping().K('coin')34}35cx.aOf=cx.fAOf = function (k) {return this.A().of(k)}36cx.bOf=cx.fBOf = function (k) {return this.B().of(k)}37cx.bAOf=function(k){return this.a().of(k)}38cx.bBOf = function (k) {return this.b().of(k)}39cx.nW=function(a,b,c){return !this.w(a,b,c)}40CONWARP = COIN = function () {41 score = 042 badScore = 043 W({W: 600, H: 300, g: 0, w: 0}).db()44 function thrustP(){45 return w.p(2.5).hzCen().Y(200)46 .lD(5).aD(10)47 .warping().con('thrust')}48 p = thrustP()49 function gG(){w.gG(M.r() * 600).warping()}50 _.t(2, gG)51 w.b(function (cx) {52 53 54 var withCoin55 if (withCoin = cx.w('coin')) { cx.setDestroyIf('coin')56 if (cx.fAOf( 'coin' )) {57 if (cx.fBOf('player')) {score++}58 else if (cx.fBOf('gG')) {badScore++}59 }60 else {61 62 if (cx.fAOf('player')) {score++}63 else if (cx.fAOf('gG')) {badScore++}64 }}65 })66 67 68 69 70 71 _.ev(1, function () {w.coin()72 w.st.pen(score+'/'+badScore)73 })74}75w.gG=w.greenGuy = function (x, y) {76 x = N(x) ? x : 100;77 y = N(y) ? y : 10078 var w = this79 var gG = w.D(x, y)80 81 gG.size= 2082 gG.core = gG.K('gG').rect(20, 25).re(2)83 84 gG.shrivel = function () {var gG = this85 gG.size = 20//; gG.lV(0).aV(0)86 }87 88 gG.makeShel=function(){var gG=this; if(gG.shel){gG.shel.kill()}89 gG.shel = gG.rectSensor(gG.size, gG.size)90 }91 92 gG.growSize =function(){this.size += 4; return this}93 _.ev(.5, function () { gG.growSize().makeShel() })94 gG.core.cl('player', function () {gG.shrivel()})95 96 return gG97 98}99 ...
Using AI Code Generation
1const { chromium } = require('playwright');2(async () => {3 const browser = await chromium.launch();4 const context = await browser.newContext();5 const page = await context.newPage();6 await page.click('[placeholder="Search"]');7 await page.fill('[placeholder="Search"]', 'Gg');8 await page.click('text=Gg');9 await context.close();10 await browser.close();11})();
Using AI Code Generation
1const { chromium } = require('playwright');2(async () => {3 const browser = await chromium.launch();4 const context = await browser.newContext();5 const page = await context.newPage();6 await page.screenshot({ path: `example.png` });7 await browser.close();8})();9const { chromium } = require('playwright');10(async () => {11 const browser = await chromium.launch();12 const context = await browser.newContext();13 const page = await context.newPage();14 await page.evaluate(() => {15 Gg('screenShot', 'example.png');16 });17 await browser.close();18})();19const { chromium } = require('playwright');20(async () => {21 const browser = await chromium.launch();22 const context = await browser.newContext();23 const page = await context.newPage();24 await page.evaluate(() => {25 Gg('screenShot', 'example.png');26 });27 await browser.close();28})();29const { chromium } = require('playwright');30(async () => {31 const browser = await chromium.launch();32 const context = await browser.newContext();33 const page = await context.newPage();34 await page.evaluate(() => {35 Gg('screenShot', 'example.png');36 });37 await browser.close();38})();39const { chromium } = require('playwright');40(async () => {41 const browser = await chromium.launch();42 const context = await browser.newContext();43 const page = await context.newPage();44 await page.evaluate(() => {45 Gg('screenShot
Using AI Code Generation
1const { chromium } = require('playwright');2(async () => {3 const browser = await chromium.launch();4 const context = await browser.newContext();5 const page = await context.newPage();6 await page.screenshot({ path: 'google.png' });7 await browser.close();8})();9const { chromium } = require('playwright');10(async () => {11 const browser = await chromium.launch();12 const context = await browser.newContext();13 const page = await context.newPage();14 await page.screenshot({ path: 'google.png' });15 await browser.close();16})();17const { chromium } = require('playwright');18(async () => {19 const browser = await chromium.launch();20 const context = await browser.newContext();21 const page = await context.newPage();22 await page.screenshot({ path: 'google.png' });23 await browser.close();24})();25const { chromium } = require('playwright');26(async () => {27 const browser = await chromium.launch();28 const context = await browser.newContext();29 const page = await context.newPage();30 await page.screenshot({ path: 'google.png' });31 await browser.close();32})();33const { chromium } = require('playwright');34(async () => {35 const browser = await chromium.launch();36 const context = await browser.newContext();37 const page = await context.newPage();38 await page.screenshot({ path: 'google.png' });39 await browser.close();40})();41const { chromium } = require('playwright');42(async () => {43 const browser = await chromium.launch();44 const context = await browser.newContext();45 const page = await context.newPage();46 await page.screenshot({ path
Using AI Code Generation
1const {chromium} = require('playwright');2(async () => {3 const browser = await chromium.launch();4 const context = await browser.newContext();5 const page = await context.newPage();6 await page.screenshot({ path: `example.png` });7 await browser.close();8})();9const {chromium} = require('playwright');10(async () => {11 const browser = await chromium.launch();12 const context = await browser.newContext();13 const page = await context.newPage();14 await page.screenshot({ path: `example.png` });15 await browser.close();16})();17const {chromium} = require('playwright');18(async () => {19 const browser = await chromium.launch();20 const context = await browser.newContext();21 const page = await context.newPage();22 await page.screenshot({ path: `example.png` });23 await browser.close();24})();25const {chromium} = require('playwright');26(async () => {27 const browser = await chromium.launch();28 const context = await browser.newContext();29 const page = await context.newPage();30 await page.screenshot({ path: `example.png` });31 await browser.close();32})();33const {chromium} = require('playwright');34(async () => {35 const browser = await chromium.launch();36 const context = await browser.newContext();37 const page = await context.newPage();38 await page.screenshot({ path: `example.png` });39 await browser.close();40})();41const {chromium} = require('playwright');42(async () => {43 const browser = await chromium.launch();44 const context = await browser.newContext();45 const page = await context.newPage();46 await page.screenshot({ path: `example.png` });47 await browser.close();48})();
Using AI Code Generation
1const {chromium} = require('playwright');2(async () => {3 const browser = await chromium.launch();4 const context = await browser.newContext();5 const page = await context.newPage();6 await page.fill('#tsf > div:nth-child(2) > div > div.RNNXgb > div > div.a4bIc > input', 'Hello World');7 await page.keyboard.press('Enter');8 await page.screenshot({ path: `example.png` });9 await browser.close();10})();11const {chromium} = require('playwright');12(async () => {13 const browser = await chromium.launch();14 const context = await browser.newContext();15 const page = await context.newPage();16 await page.fill('#tsf > div:nth-child(2) > div > div.RNNXgb > div > div.a4bIc > input', 'Hello World');17 await page.keyboard.press('Enter');18 await page.screenshot({ path: `example.png` });19 await browser.close();20})();21const {chromium} = require('playwright');22(async () => {23 const browser = await chromium.launch();24 const context = await browser.newContext();25 const page = await context.newPage();26 await page.fill('#tsf > div:nth-child(2) > div > div.RNNXgb > div > div.a4bIc > input', 'Hello World');27 await page.keyboard.press('Enter');28 await page.screenshot({ path: `example.png` });29 await browser.close();30})();31const {chromium} = require('playwright');32(async () => {33 const browser = await chromium.launch();34 const context = await browser.newContext();35 const page = await context.newPage();36 await page.fill('#tsf > div:nth-child(2) > div > div.RNNXgb > div > div.a4bIc > input', 'Hello World');
Using AI Code Generation
1const { chromium } = require('playwright');2(async () => {3 const browser = await chromium.launch();4 const context = await browser.newContext();5 const page = await context.newPage();6 const handle = await page.evaluateHandle(() => document.body);7 const resultHandle = await handle.evaluateHandle(body => {8 const div = document.createElement('div');9 div.textContent = 'Hello, world!';10 body.appendChild(div);11 return div;12 });13 console.log(await resultHandle.evaluate(node => node.textContent));14 await browser.close();15})();16const { chromium } = require('playwright');17(async () => {18 const browser = await chromium.launch();19 const context = await browser.newContext();20 const page = await context.newPage();21 const handle = await page.evaluateHandle(() => document.body);22 const resultHandle = await handle.evaluateHandle(body => {23 const div = document.createElement('div');24 div.textContent = 'Hello, world!';25 body.appendChild(div);26 return div;27 });28 console.log(await resultHandle.evaluate(node => node.textContent));29 await browser.close();30})();31const { chromium } = require('playwright');32(async () => {33 const browser = await chromium.launch();34 const context = await browser.newContext();35 const page = await context.newPage();36 const handle = await page.evaluateHandle(() => document.body);
Using AI Code Generation
1const { chromium } = require("playwright");2(async () => {3 const browser = await chromium.launch();4 const page = await browser.newPage();5 await page.screenshot({ path: "example.png" });6 await browser.close();7})();
Using AI Code Generation
1const { test, expect } = require('@playwright/test');2test('My first test', async ({ page }) => {3 const title = page.locator('text=Get Started');4 await expect(title).toBeVisible();5});6const { test, expect } = require('@playwright/test');7test('My first test', async ({ page }) => {8 const title = page.locator('text=Get Started');9 await expect(title).toBeVisible();10});11const { test, expect } = require('@playwright/test');12test('My first test', async ({ page }) => {13 const title = page.locator('text=Get Started');14 await expect(title).toBeVisible();15});16const { test, expect } = require('@playwright/test');17test('My first test', async ({ page }) => {18 const title = page.locator('text=Get Started');19 await expect(title).toBeVisible();20});21const { test, expect } = require('@playwright/test');22test('My first test', async ({ page }) => {23 const title = page.locator('text=Get Started');24 await expect(title).toBeVisible();25});26const { test, expect } = require('@playwright/test');27test('My first test', async ({ page }) => {28 const title = page.locator('text=Get Started');29 await expect(title).toBeVisible();30});31const { test, expect } = require('@playwright/test');32test('My first test', async ({ page }) => {33 const title = page.locator('text=Get
Using AI Code Generation
1const { Gg } = require('@playwright/test');2const { test, expect } = Gg;3test('Page title is correct', async ({ page }) => {4 expect(await page.title()).toBe('Playwright');5});6import { PlaywrightTestConfig } from '@playwright/test';7import { Gg } from '@playwright/test';8const config: PlaywrightTestConfig = {9 globalSetup: require.resolve('./globalSetup'),10 globalTeardown: require.resolve('./globalTeardown'),11 global: {12 },13 {14 use: {15 },16 },17 {18 use: {19 },20 },21 {22 use: {23 },24 },25};26export default config;
Using AI Code Generation
1const { Gg } = require("playwright-internal");2const { test, expect } = Gg;3test("Test case name", async ({ page }) => {4 await page.fill("input[title='Search']", "Hello World!");5 await page.click("input[value='Google Search']");6 const title = await page.title();7 expect(title).toBe("Hello World! - Google Search");8});9Gg.run();10Gg.run({ headless: true });11Gg.run({ headless: true, slowMo: 1000 });12Gg.run({ headless: true, slowMo: 1000, devtools: true });13Gg.run({ headless: true, slowMo: 1000, devtools: true, debug: true });
LambdaTest’s Playwright tutorial will give you a broader idea about the Playwright automation framework, its unique features, and use cases with examples to exceed your understanding of Playwright testing. This tutorial will give A to Z guidance, from installing the Playwright framework to some best practices and advanced concepts.
Get 100 minutes of automation test minutes FREE!!