From 71d2e42ae642cecb5e8f6776c702cd20bafe6c01 Mon Sep 17 00:00:00 2001 From: zhangwei <1504152376@qq.com> Date: 星期二, 27 八月 2024 17:12:04 +0800 Subject: [PATCH] 打卡 --- src/pages/detail/detail.vue | 2 src/pages/mine/mine.vue | 10 stats.html | 2 src/pages.json | 26 src/pages/checkin/checkin.vue | 119 ++ src/pages/mine/apply.vue | 16 src/pages/order/detail.vue | 2 src/pages/order/order.vue | 5 src/pages/index/index.vue | 18 src/pages/enterprise/enterprise.vue | 21 src/common/request/http.api.js | 11 /dev/null | 1630 --------------------------------- src/components/tem/tem-camera-buffer.vue | 386 ++++++++ src/pages/order/myorder.vue | 183 +++ src/pages/mine/index.vue | 47 src/pages/release/index.vue | 14 src/pages/enterprise/index.vue | 23 src/pages/test/test.vue | 331 ++++++ 18 files changed, 1,132 insertions(+), 1,714 deletions(-) diff --git a/src/common/request/http.api.js b/src/common/request/http.api.js index 1e30710..c6fd54e 100644 --- a/src/common/request/http.api.js +++ b/src/common/request/http.api.js @@ -181,6 +181,14 @@ needToken: true } }); + +// 澧炲姞浜鸿劯搴� base64 +let IaiAddPersoBase64 = (params, config = {}) => http.post(`/api/UpFile/IaiAddPersoBase64`, params, { + custom: { + methodName: 'IaiAddPersoBase64', + needToken: true + } +}); // 灏嗗悇涓畾涔夌殑鎺ュ彛鍚嶇О锛岀粺涓�鏀捐繘瀵硅薄鎸傝浇鍒皏m.$u.api(鍥犱负vm灏辨槸this锛屼篃鍗硉his.$u.api)涓� export { temLogin, //鐧诲綍 @@ -204,7 +212,8 @@ getDakaDetail, // 杩涘叆濉啓/瀹℃壒宸ヤ环椤甸潰 saveDakaDetail, // 宸ヤ汉纭褰撳ぉ鎵撳崱璇︽儏 PostMyTiXianDetailListPage, //鏌ヨ宸ヤ汉鐨勬敹鍏ヨ褰� - getOrder //鏍规嵁ld鏌ヨ鎷涘伐鏄庣粏 + getOrder, //鏍规嵁ld鏌ヨ鎷涘伐鏄庣粏 + IaiAddPersoBase64 // 澧炲姞浜鸿劯搴� base64 }; // } diff --git a/src/components/behavior/behavior-ar.js b/src/components/behavior/behavior-ar.js deleted file mode 100644 index 6f4a89a..0000000 --- a/src/components/behavior/behavior-ar.js +++ /dev/null @@ -1,102 +0,0 @@ -module.exports = Behavior({ - // 鍏ㄥ眬鍙橀噺 - session: undefined, // 鍏ㄥ眬鐨刅Ksession瀵硅薄 - canvas: undefined, // canvas - // XRFrame鐩稿叧鍙橀噺 - xrScene: undefined, // xr-frame 鐨勫満鏅� - xrCamera: undefined, // xr-frame 鐨勭浉鏈� - xrFrameReady: undefined, // xr-frame鍒濆鍖栧畬姣� - // WebGL鐩稿叧 - camera: undefined, // 涓昏鐩告満 - // ThreeJs 鐩稿叧鍙橀噺 - gl: undefined, // 鍏ㄥ眬gl瀵硅薄 - THREE: undefined, // THREE 瀵硅薄 - // 鍏ㄥ眬 data - data: { - domWidth: 0, - domHeight: 0, - width: 0, // canvas澶у皬 - height: 0, // canvas澶у皬 - widthScale: 1, // canvas瀹藉害缂╂斁鍊� - heightScale: 0.8, // canvas楂樺害缂╂斁鍊� - cameraPosition: 0, // 鐩告満鏈濆悜锛岄粯璁ゅ悗缃憚鍍忓ご - }, - methods: { - onReady() { - // 鑾峰彇canvas - wx.createSelectorQuery() - .select('#canvas') - .node() - .exec(res => { - this.canvas = res[0].node - - // 杩愮畻鐢诲竷澶у皬 - this.calcCanvasSize() - - // 椤甸潰鑷畾涔夊垵濮嬪寲 - if (this.init) this.init() - }) - }, - calcCanvasSize () { - const info = wx.getSystemInfoSync() - const pixelRatio = info.pixelRatio; - const width = info.windowWidth * this.data.widthScale * pixelRatio; - const height = info.windowHeight * this.data.heightScale * pixelRatio; - // 瀛樺湪 webgl Canvas鐨勬儏鍐典笅锛屽啓鍏ュぇ灏� - if (this.canvas) { - this.canvas.width = width; - this.canvas.height = height; - } - console.log(`canvas size: width = ${width} , height = ${height}`) - this.setData({ - width: width, - height: height, - domWidth: info.windowWidth * this.data.widthScale, - domHeight: info.windowHeight * this.data.heightScale, - }); - }, - // 鍓嶅悗鎽勫儚澶� - switchCamera(){ - if(this.session.config){ - const config = this.session.config - let cameraPosNext; - if (this.data.cameraPosition === 0) { - cameraPosNext = 1; - } else { - cameraPosNext = 0; - } - config.cameraPosition = cameraPosNext - this.session.config = config - this.setData({ - cameraPosition: cameraPosNext - }) - } - }, - // 闄愬抚閫昏緫 - initLoop() { - // 闄愬埗璋冪敤甯х巼,鏆傛椂鍘绘帀 - let fps = 30 - let fpsInterval = 1000 / fps - let last = Date.now() - - const session = this.session; - - // 閫愬抚娓叉煋 - const onFrame = timestamp => { - try { - let now = Date.now() - const mill = now - last - // 缁忚繃浜嗚冻澶熺殑鏃堕棿 - if (mill > fpsInterval) { - last = now - (mill % fpsInterval); //鏍℃褰撳墠鏃堕棿 - this.loop(); - } - } catch(e) { - console.error(e); - } - session.requestAnimationFrame(onFrame) - } - session.requestAnimationFrame(onFrame) - }, - }, -}); \ No newline at end of file diff --git a/src/components/behavior/behavior-three-shoe.js b/src/components/behavior/behavior-three-shoe.js deleted file mode 100644 index 28234cf..0000000 --- a/src/components/behavior/behavior-three-shoe.js +++ /dev/null @@ -1,136 +0,0 @@ -const threeBehavior = Behavior({ - methods: { - updateThreeMatrix() { - // 鍚屾 VKCamera 鐭╅樀淇℃伅鍒� Three Camera - if (VKCamera) { - // VK鎺ョ鐩告満鐭╅樀 - this.camera.matrixAutoUpdate = false - - // VK ViewMatrix 杩斿洖鍒椾富搴� - this.camera.matrixWorldInverse.fromArray(VKCamera.viewMatrix) - this.camera.matrixWorld.getInverse(this.camera.matrixWorldInverse) - - const projectionMatrix = VKCamera.getProjectionMatrix(NEAR, FAR) - - // projectionMatrix[0] = projectionMatrix[0] / 2; - // projectionMatrix[5] = projectionMatrix[5] / 2; - - // VK 杩斿洖鍒椾富搴� - // 璁剧疆 鎶曞奖鐭╅樀 - this.camera.projectionMatrix.fromArray(projectionMatrix) - this.camera.projectionMatrixInverse.getInverse(this.camera.projectionMatrix) - } - - - // 瀛樺湪model锛屾洿鏂扮煩闃� - if (this.modelWrap && this.points3d && this.shoeTransform) { - // console.log('toUpdate') - const THREE = this.THREE; - - // 椤剁偣鍋忕Щ鐭╅樀 - const positionMat = new THREE.Matrix4(); - // 璁や负鐐� 0 0 0 - positionMat.setPosition(0, 0, 0); - - // Anchor杩斿洖鐭╅樀锛屽疄闄呬笂灏辨槸瀹屾暣鐨� modelView matrix - const anchorMatrix = new THREE.Matrix4(); - // 鐩墠杩斿洖鐨勬槸琛屼富搴忕煩闃� - anchorMatrix.set( - this.shoeTransform[0], this.shoeTransform[1], this.shoeTransform[2], this.shoeTransform[3], - this.shoeTransform[4], this.shoeTransform[5], this.shoeTransform[6], this.shoeTransform[7], - this.shoeTransform[8], this.shoeTransform[9], this.shoeTransform[10], this.shoeTransform[11], - this.shoeTransform[12], this.shoeTransform[13], this.shoeTransform[14], this.shoeTransform[15], - ); - // 涓よ�呭彔鍔� - // const modelWorld = positionMat.multiply(anchorMatrix); - - const modelWorld = anchorMatrix; - - const pos = new THREE.Vector3(); - const quaternion = new THREE.Quaternion(); - const scale = new THREE.Vector3(); - - // 瑙f瀽鍑� 瀹為檯鐨� 淇℃伅 - modelWorld.decompose(pos, quaternion, scale ); - console.log(pos, quaternion, scale); - - // 璁剧疆鍒板鍣ㄨ妭鐐逛笂 - this.modelWrap.position.set(pos.x, pos.y, pos.z); - this.modelWrap.quaternion.set(quaternion.x, quaternion.y, quaternion.z, quaternion.w); - this.modelWrap.scale.set(scale.x, scale.y, scale.z); - - if (this.model) { - // 鍏堟妸妯″瀷鏀剧疆鍦ㄨ剼韪� - // this.model.position.set(this.points3d[0].x, this.points3d[0].y, this.points3d[0].z); - } - - if (this.hintBoxList && this.hintBoxList.length > 0) { - // console.log('ready to set', this.hintBoxList); - // 瀛樺湪鎻愮ず鍒楄〃锛屽垯鏇存柊鐐逛俊鎭� - for (let i = 0; i < this.hintBoxList.length; i++) { - const hintBox = this.hintBoxList[i]; - hintBox.position.set(this.points3d[i].x, this.points3d[i].y, this.points3d[i].z); - } - // console.log('seted', this.hintBoxList); - } - - - // debug 鐢ㄤ俊鎭� - if (!loggerOnce) { - // console.log('positionMat', positionMat); - // console.log('anchorMat', anchorMat); - // console.log('modelWorld', modelWorld); - - // console.log('projectionMatrix', this.camera.projectionMatrix); - - // console.log('this.modelWrap.position', this.modelWrap.position); - // console.log('this.modelWrap.quaternion', this.modelWrap.quaternion); - // console.log('this.modelWrap.scale', this.modelWrap.scale); - - // console.log('domSize', this.data.domWidth, this.data.domHeight) - // VK 鐩存帴鏁板�� - console.log('joints', Array.from(this.points3d)) - console.log('viewMatrix', Array.from(VKCamera.viewMatrix)) - console.log('projectionMatrix', Array.from(VKCamera.getProjectionMatrix(NEAR, FAR))) - console.log('anchorTransform', Array.from(this.shoeTransform)); - - loggerOnce = true; - } - } - - // 娓叉煋 Three 鍦烘櫙 - this.renderer.autoClearColor = false - this.renderer.state.setCullFace(this.THREE.CullFaceBack) - this.renderer.render(this.scene, this.camera); - // 涓轰粈涔堝幓鎺夎繖鍙ヨ瘽浼氱敾涓嶅嚭鏉ワ紝鎴戞劅瑙夊ぇ姒傜巼鏄痀UV鐨勯潰鏈濆悜閿欎簡 - this.renderer.state.setCullFace(this.THREE.CullFaceNone) - }, - addShoeHintBox() { - const THREE = this.THREE; - - const wrap = this.modelWrap; - - const geometry = new THREE.BoxGeometry( 1, 1, 1 ); - const boxScale = 0.3; - - const hintBoxList = []; - for (let i = 0; i < 8; i++) { - const colorHex = (i * 2).toString(16); - const material = new THREE.MeshPhysicalMaterial( { - metalness: 0.0, - roughness: 0.5, - color: parseInt(`${colorHex}${colorHex}${colorHex}${colorHex}${colorHex}${colorHex}`, 16), - }); - const mesh = new THREE.Mesh( geometry, material ); - mesh.position.set(0, 0, 0); - mesh.scale.set(boxScale, boxScale, boxScale); - wrap.add( mesh ); - hintBoxList.push(mesh); - } - - this.hintBoxList = hintBoxList; - }, - }, -}) - -export default threeBehavior; \ No newline at end of file diff --git a/src/components/behavior/behavior-three.js b/src/components/behavior/behavior-three.js deleted file mode 100644 index c09697b..0000000 --- a/src/components/behavior/behavior-three.js +++ /dev/null @@ -1,462 +0,0 @@ -import { createScopedThreejs } from 'threejs-miniprogram' -import { registerGLTFLoader } from '../loaders/gltf-loader' - -const threeBehavior = Behavior({ - methods: { - // 閽堝 threejs 鐨勫垵濮嬪寲閫昏緫 - initTHREE() { - const THREE = this.THREE = createScopedThreejs(this.canvas) - registerGLTFLoader(THREE) - - // glTF loader - this.loader = new this.THREE.GLTFLoader() - - // 鐩告満 - this.camera = new THREE.PerspectiveCamera(50, 0.7, 0.1, 1000); - - // 鍦烘櫙 - const scene = this.scene = new THREE.Scene() - const sceneCull = this.sceneCull = new THREE.Scene() - - // 鍏夋簮 - const ambientLight = new THREE.AmbientLight( 0x555555 ); // 姘涘洿鍏� - scene.add( ambientLight ); - const dirLight = new THREE.DirectionalLight(0xffffff, 1) // 骞宠鍏� - dirLight.position.set(1, 1, 1); - scene.add(dirLight) - - const ambientLightCull = new THREE.AmbientLight( 0x555555 ); // 姘涘洿鍏� - sceneCull.add( ambientLightCull ); - const dirLightCull = new THREE.DirectionalLight(0xffffff, 1) // 骞宠鍏� - dirLightCull.position.set(1, 1, 1); - sceneCull.add(dirLightCull) - - // 娓叉煋灞� - const renderer = this.renderer = new THREE.WebGLRenderer({ - antialias: true, - alpha: true - }) - renderer.gammaOutput = true - renderer.gammaFactor = 2.2 - }, - initYUVShader() { - const gl = this.gl = this.renderer.getContext() - const currentProgram = gl.getParameter(gl.CURRENT_PROGRAM) - const vs = ` - attribute vec2 a_position; - attribute vec2 a_texCoord; - uniform mat3 displayTransform; - varying vec2 v_texCoord; - void main() { - vec3 p = displayTransform * vec3(a_position, 0); - gl_Position = vec4(p, 1); - v_texCoord = a_texCoord; - } - ` - const fs = ` - precision highp float; - - uniform sampler2D y_texture; - uniform sampler2D uv_texture; - varying vec2 v_texCoord; - void main() { - vec4 y_color = texture2D(y_texture, v_texCoord); - vec4 uv_color = texture2D(uv_texture, v_texCoord); - - float Y, U, V; - float R ,G, B; - Y = y_color.r; - U = uv_color.r - 0.5; - V = uv_color.a - 0.5; - - R = Y + 1.402 * V; - G = Y - 0.344 * U - 0.714 * V; - B = Y + 1.772 * U; - - gl_FragColor = vec4(R, G, B, 1.0); - } - ` - const vertShader = gl.createShader(gl.VERTEX_SHADER) - gl.shaderSource(vertShader, vs) - gl.compileShader(vertShader) - - const fragShader = gl.createShader(gl.FRAGMENT_SHADER) - gl.shaderSource(fragShader, fs) - gl.compileShader(fragShader) - - const program = this._program = gl.createProgram() - this._program.gl = gl - gl.attachShader(program, vertShader) - gl.attachShader(program, fragShader) - gl.deleteShader(vertShader) - gl.deleteShader(fragShader) - gl.linkProgram(program) - gl.useProgram(program) - - const uniformYTexture = gl.getUniformLocation(program, 'y_texture') - gl.uniform1i(uniformYTexture, 5) - const uniformUVTexture = gl.getUniformLocation(program, 'uv_texture') - gl.uniform1i(uniformUVTexture, 6) - - this._dt = gl.getUniformLocation(program, 'displayTransform') - gl.useProgram(currentProgram) - }, - initVAO(program) { - const gl = this.renderer.getContext() - const ext = gl.getExtension('OES_vertex_array_object') - this.ext = ext - - const currentVAO = gl.getParameter(gl.VERTEX_ARRAY_BINDING) - const vao = ext.createVertexArrayOES() - - ext.bindVertexArrayOES(vao) - - const posAttr = gl.getAttribLocation(program, 'a_position') - const pos = gl.createBuffer() - gl.bindBuffer(gl.ARRAY_BUFFER, pos) - gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([1, 1, -1, 1, 1, -1, -1, -1]), gl.STATIC_DRAW) - gl.vertexAttribPointer(posAttr, 2, gl.FLOAT, false, 0, 0) - gl.enableVertexAttribArray(posAttr) - vao.posBuffer = pos - - const texcoordAttr = gl.getAttribLocation(program, 'a_texCoord') - const texcoord = gl.createBuffer() - gl.bindBuffer(gl.ARRAY_BUFFER, texcoord) - gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([1, 1, 0, 1, 1, 0, 0, 0]), gl.STATIC_DRAW) - gl.vertexAttribPointer(texcoordAttr, 2, gl.FLOAT, false, 0, 0) - gl.enableVertexAttribArray(texcoordAttr) - vao.texcoordBuffer = texcoord - - ext.bindVertexArrayOES(currentVAO) - return vao; - }, - initYUV() { - this.initYUVShader() - this._vao = this.initVAO(this._program); - }, - renderYUV(frame) { - const gl = this.renderer.getContext() - gl.disable(gl.DEPTH_TEST) - const { - yTexture, - uvTexture - } = frame.getCameraTexture(gl, 'yuv') - const displayTransform = frame.getDisplayTransform() - if (yTexture && uvTexture) { - const currentProgram = gl.getParameter(gl.CURRENT_PROGRAM) - const currentActiveTexture = gl.getParameter(gl.ACTIVE_TEXTURE) - const currentVAO = gl.getParameter(gl.VERTEX_ARRAY_BINDING) - - gl.useProgram(this._program) - this.ext.bindVertexArrayOES(this._vao) - - gl.uniformMatrix3fv(this._dt, false, displayTransform) - gl.pixelStorei(gl.UNPACK_ALIGNMENT, 1) - - gl.activeTexture(gl.TEXTURE0 + 5) - const bindingTexture5 = gl.getParameter(gl.TEXTURE_BINDING_2D) - gl.bindTexture(gl.TEXTURE_2D, yTexture) - - gl.activeTexture(gl.TEXTURE0 + 6) - const bindingTexture6 = gl.getParameter(gl.TEXTURE_BINDING_2D) - gl.bindTexture(gl.TEXTURE_2D, uvTexture) - - gl.drawArrays(gl.TRIANGLE_STRIP, 0, 4) - - gl.bindTexture(gl.TEXTURE_2D, bindingTexture6) - gl.activeTexture(gl.TEXTURE0 + 5) - gl.bindTexture(gl.TEXTURE_2D, bindingTexture5) - - gl.useProgram(currentProgram) - gl.activeTexture(currentActiveTexture) - this.ext.bindVertexArrayOES(currentVAO) - } - }, - initDepthShaderHint() { - const gl = this.gl = this.renderer.getContext() - const ext = gl.getExtension("OES_texture_float"); - if (!ext) - console.warn('OES_texture_float not support'); - const currentProgram = gl.getParameter(gl.CURRENT_PROGRAM) - const vs = ` - precision highp float; - attribute vec2 a_position; - attribute vec2 a_texCoord; - uniform mat3 displayTransform; - varying vec2 v_texCoord; - void main() { - vec3 p = displayTransform * vec3(a_position, 0); - gl_Position = vec4(p, 1); - v_texCoord = a_texCoord; - } - ` - const fs = ` - precision highp float; - uniform sampler2D depth_texture; - varying vec2 v_texCoord; - void main() { - vec4 depth_color = texture2D(depth_texture, v_texCoord); - gl_FragColor = vec4(depth_color.rgb, 1.0); - } - ` - - const vertShader = gl.createShader(gl.VERTEX_SHADER) - gl.shaderSource(vertShader, vs) - gl.compileShader(vertShader) - - const fragShader = gl.createShader(gl.FRAGMENT_SHADER) - gl.shaderSource(fragShader, fs) - gl.compileShader(fragShader) - - const program = this._depthProgram = gl.createProgram() - this._depthProgram.gl = gl - gl.attachShader(program, vertShader) - gl.attachShader(program, fragShader) - gl.deleteShader(vertShader) - gl.deleteShader(fragShader) - gl.linkProgram(program) - gl.useProgram(program) - - const uniformTexture = gl.getUniformLocation(program, 'depth_texture') - gl.uniform1i(uniformTexture, 5) - - this._depthDt = gl.getUniformLocation(program, 'displayTransform') - gl.useProgram(currentProgram) - }, - initDepthVAOHint() { - const gl = this.renderer.getContext() - const ext = gl.getExtension('OES_vertex_array_object') - this.ext = ext - - const currentVAO = gl.getParameter(gl.VERTEX_ARRAY_BINDING) - const vao = ext.createVertexArrayOES() - - ext.bindVertexArrayOES(vao) - - const posAttr = gl.getAttribLocation(this._depthProgram, 'a_position') - const pos = gl.createBuffer() - gl.bindBuffer(gl.ARRAY_BUFFER, pos) - gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([0.3, 0.3, 1, 0.3, 0.3, 1, 1, 1]), gl.STATIC_DRAW) - gl.vertexAttribPointer(posAttr, 2, gl.FLOAT, false, 0, 0) - gl.enableVertexAttribArray(posAttr) - vao.posBuffer = pos - - const texcoordAttr = gl.getAttribLocation(this._depthProgram, 'a_texCoord') - const texcoord = gl.createBuffer() - gl.bindBuffer(gl.ARRAY_BUFFER, texcoord) - gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([0, 0, 1, 0, 0, 1, 1, 1]), gl.STATIC_DRAW) - gl.vertexAttribPointer(texcoordAttr, 2, gl.FLOAT, false, 0, 0) - gl.enableVertexAttribArray(texcoordAttr) - vao.texcoordBuffer = texcoord - - ext.bindVertexArrayOES(currentVAO) - this._depthVao = vao - }, - initDepthShader() { - const gl = this.gl = this.renderer.getContext() - const currentProgram = gl.getParameter(gl.CURRENT_PROGRAM) - - const dvs = `#version 300 es - precision highp float; - in vec2 a_position; - in vec2 a_texCoord; - uniform mat3 displayTransform; - uniform sampler2D depth_texture; - out vec2 v_texCoord; - - void main() { - vec3 p = displayTransform * vec3(a_position, 1); - v_texCoord = a_texCoord; - vec4 depth_color = texture(depth_texture, v_texCoord); - gl_Position = vec4(p.x, p.y, p.z, 1); - } - ` - - const dfs = `#version 300 es - precision highp float; - uniform sampler2D depth_texture; - out vec4 FragColor; - in vec2 v_texCoord; - - void main() { - vec4 depth_color = texture(depth_texture, v_texCoord); - gl_FragDepth = depth_color.r; - // FragColor = vec4(depth_color.rgb, 1.0); - } - ` - const vertShader = gl.createShader(gl.VERTEX_SHADER) - gl.shaderSource(vertShader, dvs) - gl.compileShader(vertShader) - - const fragShader = gl.createShader(gl.FRAGMENT_SHADER) - gl.shaderSource(fragShader, dfs) - gl.compileShader(fragShader) - - const program = this._depthOutputProgram = gl.createProgram() - this._depthOutputProgram.gl = gl - gl.attachShader(program, vertShader) - gl.attachShader(program, fragShader) - gl.deleteShader(vertShader) - gl.deleteShader(fragShader) - gl.linkProgram(program) - gl.useProgram(program) - - const uniformDepthTexture = gl.getUniformLocation(this._depthOutputProgram, 'depth_texture') - gl.uniform1i(uniformDepthTexture, 5) - gl.getUniformLocation(this._depthOutputProgram, 'displayTransform') - - gl.useProgram(currentProgram) - }, - initDepthGL(){ - // 鍒濆鍖栨彁绀� - this.initDepthShaderHint() - this.initDepthVAOHint() - // 鍒濆鍖栨繁搴︾汗鐞嗙浉鍏� - this.initDepthShader(); - this._vaoDepth = this.initVAO(this._depthOutputProgram); - }, - renderDepthGLHint(frame) { - const gl = this.renderer.getContext(); - const displayTransform = frame.getDisplayTransform() - - // DepthBuffer - const depthBufferRes = frame.getDepthBuffer(); - const depthBuffer = new Float32Array(depthBufferRes.DepthAddress); - - // console.log('depthBuffer', depthBuffer[0], depthBuffer[16], depthBuffer[16 * 16], depthBuffer[56 * 56]); - - const texture = gl.createTexture(); - gl.bindTexture(gl.TEXTURE_2D, texture); - gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE); - gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE); - gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); - gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); - - const width = depthBufferRes.width; - const height = depthBufferRes.height; - - // 鍏堢洿鎺ラ噰鐢� uint8 鍐欏叆娣卞害绾圭悊锛屼娇鐢ㄦ诞鐐瑰啓鍏ョ殑鏂规硶浼氬瓨鍦ㄩ敮榻� - const data = new Uint8Array(width * height * 4); - for (let i = 0; i < depthBuffer.length; i++) { - let num = parseInt(depthBuffer[i] * 255); - data[i] = num; - } - gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, data); - - const currentProgram = gl.getParameter(gl.CURRENT_PROGRAM) - const currentActiveTexture = gl.getParameter(gl.ACTIVE_TEXTURE) - const currentVAO = gl.getParameter(gl.VERTEX_ARRAY_BINDING) - - gl.useProgram(this._depthProgram) - this.ext.bindVertexArrayOES(this._depthVao) - - gl.uniformMatrix3fv(this._depthDt, false, displayTransform) - - gl.activeTexture(gl.TEXTURE0 + 5) - const bindingTexture5 = gl.getParameter(gl.TEXTURE_BINDING_2D) - gl.bindTexture(gl.TEXTURE_2D, texture) - - gl.drawArrays(gl.TRIANGLE_STRIP, 0, 4) - - gl.activeTexture(gl.TEXTURE0 + 5) - gl.bindTexture(gl.TEXTURE_2D, bindingTexture5) - - gl.useProgram(currentProgram) - gl.activeTexture(currentActiveTexture) - this.ext.bindVertexArrayOES(currentVAO) - }, - renderDepthGL(frame) { - const gl = this.renderer.getContext() - const displayTransform = frame.getDisplayTransform() - - // DepthBuffer - const depthBufferRes = frame.getDepthBuffer(); - const depthBuffer = new Float32Array(depthBufferRes.DepthAddress); - - const texture = gl.createTexture(); - gl.bindTexture(gl.TEXTURE_2D, texture); - gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE); - gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE); - gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); - gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); - - const width = depthBufferRes.width; - const height = depthBufferRes.height; - - // 鍏堢洿鎺ラ噰鐢� uint8 鍐欏叆娣卞害绾圭悊锛屼娇鐢ㄦ诞鐐瑰啓鍏ョ殑鏂规硶浼氬瓨鍦ㄩ敮榻� - const data = new Uint8Array(width * height * 4); - for (let i = 0; i < depthBuffer.length; i++) { - let num = parseInt(depthBuffer[i] * 255); - data[i] = num; - } - gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, data); - - // console.log('gl depth texture end') - - // 缁樺埗宸︿笅瑙掓彁绀� - const currentProgram = gl.getParameter(gl.CURRENT_PROGRAM) - const currentActiveTexture = gl.getParameter(gl.ACTIVE_TEXTURE) - const currentVAO = gl.getParameter(gl.VERTEX_ARRAY_BINDING) - const bindingTexture = gl.getParameter(gl.TEXTURE_BINDING_2D) - - gl.useProgram(this._depthProgram) - this.ext.bindVertexArrayOES(this._depthVao) - - gl.uniformMatrix3fv(this._depthDt, false, displayTransform) - - gl.activeTexture(gl.TEXTURE0 + 5) - const bindingTexture5 = gl.getParameter(gl.TEXTURE_BINDING_2D) - gl.bindTexture(gl.TEXTURE_2D, texture) - - gl.drawArrays(gl.TRIANGLE_STRIP, 0, 4) - - gl.activeTexture(gl.TEXTURE0 + 5) - gl.bindTexture(gl.TEXTURE_2D, bindingTexture5) - - gl.useProgram(currentProgram) - gl.activeTexture(currentActiveTexture) - this.ext.bindVertexArrayOES(currentVAO) - - // console.log('gl hint end') - - // 鍐欏叆娣卞害閬尅绾圭悊鍒版繁搴﹀�� - - gl.enable(gl.DEPTH_TEST) - gl.depthMask(true) - gl.depthFunc(gl.ALWAYS) - - this.ext.bindVertexArrayOES(this._vaoDepth) - gl.useProgram(this._depthOutputProgram) - - gl.uniformMatrix3fv(this._depthDt, false, displayTransform) - - gl.activeTexture(gl.TEXTURE0 + 5) - const bindingTexture5Depth = gl.getParameter(gl.TEXTURE_BINDING_2D) - - gl.bindTexture(gl.TEXTURE_2D, texture) - - gl.drawArrays(gl.TRIANGLE_STRIP, 0, 4) - - gl.activeTexture(gl.TEXTURE0 + 5) - - gl.bindTexture(gl.TEXTURE_2D, bindingTexture5Depth) - - gl.useProgram(currentProgram) - gl.activeTexture(currentActiveTexture) - gl.bindTexture(gl.TEXTURE_2D, bindingTexture) - - this.ext.bindVertexArrayOES(currentVAO) - - gl.depthMask(false) - - gl.depthFunc(gl.LESS) - - // console.log('gl depth draw end') - - - - }, - }, -}) - -export default threeBehavior; \ No newline at end of file diff --git a/src/components/behavior/behavior-xrframe.js b/src/components/behavior/behavior-xrframe.js deleted file mode 100644 index ac9457b..0000000 --- a/src/components/behavior/behavior-xrframe.js +++ /dev/null @@ -1,228 +0,0 @@ -const xrFrameBehavior = Behavior({ - yuvMat: undefined, // yuv绾圭悊 - yuvMatInit: undefined, // yuv绾圭悊鏄惁宸茬粡鍒濆鍖� - DT: undefined, // 缂撳瓨displayMatrix - methods: { - // xrScene Ready 浜嬩欢鍥炶皟 - handleXRSceneReady(detail) { - console.log('handleXRSceneReady', detail); - const xrFrameSystem = wx.getXrFrameSystem(); - - this.xrCamera = detail.detail.camera; - this.xrCameraTrs = this.xrCamera.el.getComponent(xrFrameSystem.Transform); - this.xrScene = detail.detail.scene; - this.xrFrameReady = true; - if (this.initXRFrame) { - this.initXRFrame(); - } - }, - // 缁戝畾鑷畾涔� YUV effect - registerYUVEffect() { - const xrFrameSystem = wx.getXrFrameSystem(); - xrFrameSystem.registerEffect('ar-yuv-self', scene => scene.createEffect({ -properties: [ -{ - "key": 'u_displayMatrix', - "type": 6, - "default": [ - 1, 0, 0, 0, - 0, 1, 0, 0, - 0, 0, 1, 0, - 0, 0, 0, 1 - ] -} -], -images: [ - { - key: 'u_yTexture', - default: 'black', - macro: 'WX_AR_CAMERA_READY' - }, - { - key: 'u_uvTexture', - default: 'white' - }, - { - key: 'u_depthTexture', - default: 'white', - macro: 'WX_AR_CAMERA_DEPTH' - } -], - defaultRenderQueue: 2000, - passes: [{ - renderStates: { - cullOn: false, - blendOn: false, - depthWrite: false - }, - lightMode: 'ForwardBase', - useMaterialRenderStates: true, - shaders: [0, 1] - }], - shaders: -[ -`#version 100 -attribute vec3 a_position; -attribute vec2 a_texCoord; - -precision highp float; - -uniform highp mat4 u_view; -uniform highp mat4 u_viewInverse; -uniform highp mat4 u_vp; -uniform highp mat4 u_projection; - -uniform highp mat4 u_world; - - -uniform highp mat4 u_displayMatrix; -varying highp vec2 v_texCoord; - -void main() { - v_texCoord = a_texCoord; - vec4 pos = u_displayMatrix * vec4(a_position.xy, 1., 1.); - - gl_Position = pos; -} -`, -`#version 100 -precision mediump float; -precision highp int; - -uniform sampler2D u_yTexture; -uniform sampler2D u_uvTexture; -varying highp vec2 v_texCoord; - -float unpack(float h, float l) { - return h * 0.94117647 + l * 0.0588235; -} - -void main() -{ - vec4 yColor = texture2D(u_yTexture, v_texCoord); - vec4 uvColor = texture2D(u_uvTexture, v_texCoord); - -#ifdef WX_AR_CAMERA_READY - - float Y, U, V; - float R, G, B; - Y = yColor.r; - U = unpack(uvColor.r, uvColor.g) - 0.5; - V = unpack(uvColor.b, uvColor.a) - 0.5; - - R = Y + 1.402 * V; - G = Y - 0.344 * U - 0.714 * V; - B = Y + 1.772 * U; - - gl_FragData[0] = vec4(B, G, R, 1.0); -#else - gl_FragData[0] = vec4(0.0, 0.0, 0.0, 1.0); - -#endif -} -` -] - })) - }, - // 鍒濆鍖� xr-frame 鐩告満 YUV 鏁版嵁缁樺埗娴佺▼鑺傜偣 - initXRYUVCamera() { - const xrFrameSystem = wx.getXrFrameSystem(); - const scene = this.xrScene; - const {assets, rootShadow} = scene; - - const el = scene.createElement(xrFrameSystem.XRNode, { - layer: 1 - }); - - let yuvGeometry = assets.getAsset('geometry', `ar-camera-plane`); - let yuvEffect = assets.getAsset('effect', 'ar-yuv-self'); - - if (!yuvEffect) { - this.registerYUVEffect(); - yuvEffect = assets.getAsset('effect', 'ar-yuv-self'); - } - - const yuvMat = scene.createMaterial(yuvEffect); - yuvMat.renderQueue = 1; // 绗竴涓粯鍒� - const mesh = el.addComponent(xrFrameSystem.Mesh, { - geometry: yuvGeometry, - material: yuvMat - }); - - // 鐩告満yuv绾圭悊 - this.yuvMat = yuvMat; - this.yuvMatInit = false; - - // 涓嶈繘鍏ユ甯哥殑鍓旈櫎 - rootShadow.addChild(el); - - console.log('initXRYUVCamera end') - }, - updataXRYUV(frame) { - // console.log('update yuv') - const xrFrameSystem = wx.getXrFrameSystem(); - const scene = this.xrScene; - const yuv = frame.getCameraRawTextureData(); - // 鏈垱寤虹浉鏈鸿创鍥剧紦瀛橈紝鍏堝垱寤� - if (!this.cameraTexures) { - this.cameraTexures = { - y: scene.createTexture({ - width: yuv.width, height: yuv.height, - source: [yuv.yAddress], - pixelFormat: xrFrameSystem.ETextureFormat.R8 - }), - uv: scene.createTexture({ - width: yuv.width / 2, height: yuv.height / 2, - source: [yuv.uvAddress], - pixelFormat: xrFrameSystem.ETextureFormat.RGBA4 - }) - } - } - const {y, uv, depth} = this.cameraTexures; - - const cameraYUVMat = this.yuvMat; - // 鏈粦瀹氳创鍥剧殑鎯呭喌涓嬶紝缁戝畾璐村浘 - if (!this.yuvMatInit) { - cameraYUVMat.setTexture('u_yTexture', y); - cameraYUVMat.setTexture('u_uvTexture', uv); - // depth && cameraYUVMat.setTexture('u_depthTexture', depth); - this.yuvMatInit = true; - } - - // 鏇存柊displayMat - const dt = frame.getDisplayTransform(); - if (!this.DT) { this.DT = new xrFrameSystem.Matrix4(); } - this.DT.setArray([ - dt[0], dt[1], dt[2], 0, - dt[3], dt[4], dt[5], 0, - dt[6], dt[7], dt[8], 0, - 0, 0, 0, 1 - ]); - cameraYUVMat.setMatrix('u_displayMatrix', this.DT); - - // YUV绾圭悊鏇存柊 - y.update({buffer: yuv.yAddress}); - uv.update({buffer: yuv.uvAddress}); - - // console.log('update yuv end') - }, - updataXRCameraMatrix(VKCamera, near, far) { - // 鍚屾 VKCamera 鐭╅樀淇℃伅鍒� xrFrame Camera - if (VKCamera) { - const viewMat = VKCamera.viewMatrix; - const projMat = VKCamera.getProjectionMatrix(near, far); - - // 鏇存柊 viewMatrix - this.xrCamera.changeViewMatrix(true, viewMat); - - // 鏇存柊 projectMatrix - const halfFov = Math.atan(1 / projMat[5]) * 180 / Math.PI; - this.xrCamera.setData({ near: near, far: far, fov: 2 * halfFov }); - this.xrCamera.changeProjectMatrix(true, projMat); - - } - }, - }, -}) - -export default xrFrameBehavior; \ No newline at end of file diff --git a/src/components/cameraBufferJpg/cameraBufferjpg.js b/src/components/cameraBufferJpg/cameraBufferjpg.js deleted file mode 100644 index 5d66753..0000000 --- a/src/components/cameraBufferJpg/cameraBufferjpg.js +++ /dev/null @@ -1,225 +0,0 @@ -import arBehavior from '../behavior/behavior-ar' -import threeBehavior from '../behavior/behavior-three' - -// VK 鎶曞奖鐭╅樀鍙傛暟瀹氫箟 -const NEAR = 0.01 -const FAR = 1000 - -Component({ - behaviors: [arBehavior, threeBehavior], - data: { - theme: 'light', - widthScale: 1, // canvas瀹藉害缂╂斁鍊� - heightScale: 0.57, // canvas楂樺害缂╂斁鍊� - jpgUrl: '', - }, - useLoopLog: false, // 鏄惁寮�鍚惊鐜痩og - imgIndex: 0, - lifetimes: { - /** - * 鐢熷懡鍛ㄦ湡鍑芥暟--鐩戝惉椤甸潰鍔犺浇 - */ - detached() { - console.log("椤甸潰detached") - if (wx.offThemeChange) { - wx.offThemeChange() - } - }, - ready() { - console.log("椤甸潰鍑嗗瀹屽叏") - this.setData({ - theme: wx.getSystemInfoSync().theme || 'light' - }) - - if (wx.onThemeChange) { - wx.onThemeChange(({theme}) => { - this.setData({theme}) - }) - } - }, - }, - - methods: { - // 瀵瑰簲妗堜緥鐨勫垵濮嬪寲閫昏緫锛岀敱缁熶竴鐨� behavior 瑙﹀彂 - init() { - // 鍒濆鍖� Three.js锛岀敤浜庢ā鍨嬬浉鍏崇殑娓叉煋 - this.initTHREE() - - // 鍒濆鍖� GL锛屽熀浜� Three.js 鐨� Context锛岀敤浜庣浉鏈篩UV娓叉煋 - this.initYUV() - - // 鍒濆鍖朧K - // start瀹屾瘯鍚庯紝杩涜鏇存柊娓叉煋寰幆 - this.initVK(); - - this.useLoopLog = false; - this.imgIndex = 0; - }, - initVK() { - // VKSession 閰嶇疆 - const session = this.session = wx.createVKSession({ - track: { - plane: { - mode: 1 - }, - }, - version: 'v2', - gl: this.gl - }); - - session.start(err => { - if (err) return console.error('VK error: ', err) - - console.log('@@@@@@@@ VKSession.version', session.version) - - // VKSession EVENT resize - session.on('resize', () => { - this.calcCanvasSize(); - }) - - // VKSession EVENT addAnchors - session.on('addAnchors', anchors => { - }) - - // VKSession EVENT updateAnchors - session.on('updateAnchors', anchors => { - - }) - - // VKSession removeAnchors - // 璇嗗埆鐩爣涓㈠け鏃讹紝浼氳Е鍙戜竴娆� - session.on('removeAnchors', anchors => { - // console.log('removeAnchors', anchors) - }); - - - console.log('ready to initloop') - // start 鍒濆鍖栧畬姣曞悗锛岃繘琛屾洿鏂版覆鏌撳惊鐜� - this.initLoop(); - - // 缁樺埗鍙岄潰锛屼互鍙婂幓鎺夋竻灞忥紝鐢ㄤ簬鏄剧ずyuv - this.renderer.state.setCullFace(this.THREE.CullFaceNone) - - }); - }, - loop() { - - // 鑾峰彇 VKFrame - const frame = this.session.getVKFrame(this.canvas.width, this.canvas.height) - - // 鎴愬姛鑾峰彇 VKFrame 鎵嶈繘琛� - if(!frame) { return; } - - // 鏇存柊鐩告満 YUV 鏁版嵁 - this.renderYUV(frame) - - // 鑾峰彇 VKCamera - const VKCamera = frame.camera - - if (this.useLoopLog) { - // let transformStr = ''; - // for (let i = 0; i < 16; i++) - // transformStr += VKCamera.transform[i] + ' '; - // console.log('VKCamera.transform', transformStr); - - console.log('timeStamp', frame.timestamp); - - - let viewMatrixStr = ''; - for (let i = 0; i < 16; i++) - viewMatrixStr += VKCamera.viewMatrix[i] + ' '; - // console.log('VKCamera.viewMatrix', viewMatrixStr); - if (this.preTimestamp && this.preTimestamp === frame.timestamp) { - if (this.preViewMatrixStr && this.preViewMatrixStr !== viewMatrixStr) { - console.log('preViewMatrixStr', this.preViewMatrixStr) - console.log('viewMatrixStr', viewMatrixStr) - console.log('Timestamp is same. But viewMatrix is not same'); - } - } - this.preTimestamp = frame.timestamp; - this.preViewMatrixStr = viewMatrixStr; - } - - }, - getJpgImg() { - console.log('Function getJpgImg'); - - // 鎸夐渶鍐欏叆鑾峰彇 jpg 鐨� 澶у皬 鍜岃川閲� - const width = 640; - const height = 480; - const quality = 90; - - // 鑾峰彇 VKFrame - const frame = this.session.getVKFrame(width, height) - - // 鎴愬姛鑾峰彇 VKFrame 鎵嶈繘琛� - if(!frame) { return; } - - console.log('getCameraJpgBuffer: ', width, height, quality) - - const t1 = new Date().getTime() - const jpgBuffer = frame.getCameraJpgBuffer(width, height, quality); - const t2 = new Date().getTime() - - console.log(`getCameraJpgBuffer cost ${t2 - t1}ms`) - - // console.log('jpgBuffer', jpgBuffer); - - const jpgUrl = this.saveLocalJPG(jpgBuffer, 'cameraJPG'); - - console.log('jpgUrl', jpgUrl) - - this.setData({ - 'jpgUrl': jpgUrl - }) - - - }, - saveLocalJPG(bufferContent, name) { - var url = `${wx.env.USER_DATA_PATH}/${name + this.imgIndex + '.jpg'}` - - const fs = wx.getFileSystemManager() - try { - // 瀛樺湪鍗冲垹闄� - const unlinkRes = fs.unlinkSync(url) - // console.log('unlinkSync', unlinkRes) - - this.imgIndex++; - const newUrl = `${wx.env.USER_DATA_PATH}/${name + this.imgIndex + '.jpg'}`; - - // console.log('write newUrl', newUrl) - // 鍐欏叆锛屾柊鍥剧墖 - const writeRes = fs.writeFileSync( - newUrl, - bufferContent, - 'utf8' - ) - - return newUrl - - } catch(e) { - // 鍒╃敤catch瀹炵幇锛屾鏃讹紝涓烘柊鍐欏叆 - try { - // console.log('write url', url) - - // 鍐欏叆 - const writeRes = fs.writeFileSync( - url, - bufferContent, - 'utf8' - ) - }catch(e) { - console.error(e); - } - } - - return url - }, - getLog() { - console.log('Function getLog'); - - this.useLoopLog = !this.useLoopLog; - }, - - }, -}) \ No newline at end of file diff --git a/src/components/cameraBufferJpg/cameraBufferjpg.json b/src/components/cameraBufferJpg/cameraBufferjpg.json deleted file mode 100644 index af3e048..0000000 --- a/src/components/cameraBufferJpg/cameraBufferjpg.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "usingComponents": {}, - "disableScroll": true, - "renderer": "webview", - "component": true, - "navigationBarTitleText": "鐩告満甯ц幏鍙杍pg鍥剧墖" -} \ No newline at end of file diff --git a/src/components/cameraBufferJpg/cameraBufferjpg.wxml b/src/components/cameraBufferJpg/cameraBufferjpg.wxml deleted file mode 100644 index 94b774d..0000000 --- a/src/components/cameraBufferJpg/cameraBufferjpg.wxml +++ /dev/null @@ -1,25 +0,0 @@ - -<view class="page wrap-fix" data-weui-theme="{{theme}}"> - <view class="canvas-wrap" style="width: {{widthScale * 100}}%; height: {{heightScale * 100}}%"> - <canvas type="webgl" id="canvas"></canvas> - </view> - - <view class="hint-words">鎻愮ず锛氱偣鍑昏幏鍙栵紝浼氬皢鎽勫儚澶磋祫婧愯浆鎴愯创鍥�(闇�鍩虹搴�3.4.4)</view> - - <view class="wrap-option"> - <view class="row"> - <button type="primary" bindtap="getJpgImg">鑾峰彇jpg鍥惧儚</button> - <button type="primary" bindtap="getLog">寮�鍏宠皟璇昹og(鏃堕棿鎴�)</button> - </view> - - </view> - - <view class="hint-img-wrap"> - <view class="hint-img-box"> - <image class="hint-img" wx:if="{{jpgUrl !== ''}}" src="{{jpgUrl}}" mode="aspectFit" /> - </view> - </view> - - -</view> - diff --git a/src/components/cameraBufferJpg/cameraBufferjpg.wxss b/src/components/cameraBufferJpg/cameraBufferjpg.wxss deleted file mode 100644 index d0e3c83..0000000 --- a/src/components/cameraBufferJpg/cameraBufferjpg.wxss +++ /dev/null @@ -1,107 +0,0 @@ -.canvas-wrap { - position: relative; - width: 100%; - background-color: #000; -} - -.canvas-wrap #canvas { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; -} - -.hint-box { - position: absolute; - left: 0%; - top: 0%; - width: 0; - height: 0; -} -.hint-id { - position: absolute; - left: -6rpx; - right: -6rpx; - bottom: 100%; - color: #fff; - font-size: 20rpx; - line-height: 40rpx; - text-align: center; - text-overflow: ellipsis; - background-color: #07c160; - border-radius: 8rpx; - -} - -.wrap-fix { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; -} - -.hint-words { - position: absolute; - left: 20rpx; - top: 20rpx; - right: 20rpx; - padding: 10rpx 20rpx; - line-height: 40rpx; - text-align: center; - border-radius: 6rpx; - background-color: rgba(0, 0, 0, .3); - font-size: 26rpx; - color: #fff; -} - - -.hint-img-wrap { - position: absolute; - left: 25%; - bottom: 0%; - width: 50%; - height: 30%; -} - -.hint-img-box { - position: absolute; - left: 5%; - top: 5%; - right: 5%; - bottom: 5%; - background-color: #fafafa; - border: 4rpx solid; -} - -.hint-img { - position: absolute; - left: 4%; - top: 4%; - width: 92%; - height: 92%; -} - -.wrap-option { - position: absolute; - left: 20rpx; - right: 0; - bottom: 30%; - height: 10%; - flex-direction: column; - display: flex; -} - -.wrap-option .row { - flex: 1; - display: flex; - flex-direction: row; - text-align: center; -} -.wrap-option button { - flex: 1; - margin: 5rpx 20rpx 20rpx 0; - font-size: 30rpx; - line-height: 1.2; -} \ No newline at end of file diff --git a/src/components/loaders/gltf-clone.js b/src/components/loaders/gltf-clone.js deleted file mode 100644 index f496465..0000000 --- a/src/components/loaders/gltf-clone.js +++ /dev/null @@ -1,44 +0,0 @@ -export default function(gltf, THREE) { - const clone = { - animations: gltf.animations, - scene: gltf.scene.clone(true) - } - - const skinnedMeshes = {} - - gltf.scene.traverse(node => { - if (node.isSkinnedMesh) { - skinnedMeshes[node.name] = node - } - }) - - const cloneBones = {} - const cloneSkinnedMeshes = {} - - clone.scene.traverse(node => { - if (node.isBone) { - cloneBones[node.name] = node - } - - if (node.isSkinnedMesh) { - cloneSkinnedMeshes[node.name] = node - } - }) - - for (let name in skinnedMeshes) { - const skinnedMesh = skinnedMeshes[name] - const skeleton = skinnedMesh.skeleton - const cloneSkinnedMesh = cloneSkinnedMeshes[name] - - const orderedCloneBones = [] - - for (let i = 0; i < skeleton.bones.length; ++i) { - const cloneBone = cloneBones[skeleton.bones[i].name] - orderedCloneBones.push(cloneBone) - } - - cloneSkinnedMesh.bind(new THREE.Skeleton(orderedCloneBones, skeleton.boneInverses), cloneSkinnedMesh.matrixWorld) - } - - return clone -} diff --git a/src/components/loaders/gltf-loader.js b/src/components/loaders/gltf-loader.js deleted file mode 100644 index aff17d8..0000000 --- a/src/components/loaders/gltf-loader.js +++ /dev/null @@ -1,1630 +0,0 @@ -export function registerGLTFLoader(THREE) { - THREE.GLTFLoader = (function() { - function GLTFLoader() { - this.manager = THREE.DefaultLoadingManager; - this.dracoLoader = null; - this.ddsLoader = null - } - GLTFLoader.prototype = { - constructor: GLTFLoader, - crossOrigin: 'anonymous', - load: function(url, onLoad) { - var scope = this; - var resourcePath; - if (this.resourcePath !== undefined) { - resourcePath = this.resourcePath - } else if (this.path !== undefined) { - resourcePath = this.path - } else { - resourcePath = THREE.LoaderUtils.extractUrlBase(url) - } - scope.manager.itemStart(url); - var _onError = function(e) { - console.error(e); - scope.manager.itemError(url); - scope.manager.itemEnd(url) - }; - var loader = new THREE.FileLoader(scope.manager); - loader.setPath(this.path); - loader.setResponseType('arraybuffer'); - loader.load(url, - function(data) { - try { - scope.parse(data, resourcePath, - function(gltf) { - onLoad(gltf); - scope.manager.itemEnd(url) - }, - _onError) - } catch(e) { - _onError(e) - } - }, - null, _onError) - }, - parse: function(data, path, onLoad, onError) { - var content; - var extensions = {}; - if (typeof data === 'string') { - content = data - } else { - var magic = THREE.LoaderUtils.decodeText(new Uint8Array(data, 0, 4)); - if (magic === BINARY_EXTENSION_HEADER_MAGIC) { - try { - extensions[EXTENSIONS.KHR_BINARY_GLTF] = new GLTFBinaryExtension(data) - } catch(error) { - if (onError) onError(error); - return - } - content = extensions[EXTENSIONS.KHR_BINARY_GLTF].content - } else { - content = THREE.LoaderUtils.decodeText(new Uint8Array(data)) - } - } - var json = JSON.parse(content); - if (json.asset === undefined || json.asset.version[0] < 2) { - if (onError) onError(new Error('THREE.GLTFLoader: Unsupported asset. glTF versions >=2.0 are supported. Use LegacyGLTFLoader instead.')); - return - } - if (json.extensionsUsed) { - for (var i = 0; i < json.extensionsUsed.length; ++i) { - var extensionName = json.extensionsUsed[i]; - var extensionsRequired = json.extensionsRequired || []; - switch (extensionName) { - case EXTENSIONS.KHR_LIGHTS_PUNCTUAL: - extensions[extensionName] = new GLTFLightsExtension(json); - break; - case EXTENSIONS.KHR_MATERIALS_UNLIT: - extensions[extensionName] = new GLTFMaterialsUnlitExtension(); - break; - case EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS: - extensions[extensionName] = new GLTFMaterialsPbrSpecularGlossinessExtension(); - break; - case EXTENSIONS.KHR_DRACO_MESH_COMPRESSION: - extensions[extensionName] = new GLTFDracoMeshCompressionExtension(json, this.dracoLoader); - break; - case EXTENSIONS.MSFT_TEXTURE_DDS: - extensions[EXTENSIONS.MSFT_TEXTURE_DDS] = new GLTFTextureDDSExtension(this.ddsLoader); - break; - case EXTENSIONS.KHR_TEXTURE_TRANSFORM: - extensions[EXTENSIONS.KHR_TEXTURE_TRANSFORM] = new GLTFTextureTransformExtension(); - break; - default: - if (extensionsRequired.indexOf(extensionName) >= 0) { - console.warn('THREE.GLTFLoader: Unknown extension "' + extensionName + '".') - } - } - } - } - var parser = new GLTFParser(json, extensions, { - path: path || this.resourcePath || '', - crossOrigin: this.crossOrigin, - manager: this.manager - }); - parser.parse(onLoad, onError) - } - }; - function GLTFRegistry() { - var objects = {}; - return { - get: function(key) { - return objects[key] - }, - add: function(key, object) { - objects[key] = object - }, - remove: function(key) { - delete objects[key] - }, - removeAll: function() { - objects = {} - } - } - } - var EXTENSIONS = { - KHR_BINARY_GLTF: 'KHR_binary_glTF', - KHR_DRACO_MESH_COMPRESSION: 'KHR_draco_mesh_compression', - KHR_LIGHTS_PUNCTUAL: 'KHR_lights_punctual', - KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS: 'KHR_materials_pbrSpecularGlossiness', - KHR_MATERIALS_UNLIT: 'KHR_materials_unlit', - KHR_TEXTURE_TRANSFORM: 'KHR_texture_transform', - MSFT_TEXTURE_DDS: 'MSFT_texture_dds' - }; - function GLTFTextureDDSExtension(ddsLoader) { - if (!ddsLoader) { - throw new Error('THREE.GLTFLoader: Attempting to load .dds texture without importing THREE.DDSLoader'); - } - this.name = EXTENSIONS.MSFT_TEXTURE_DDS; - this.ddsLoader = ddsLoader - } - function GLTFLightsExtension(json) { - this.name = EXTENSIONS.KHR_LIGHTS_PUNCTUAL; - var extension = (json.extensions && json.extensions[EXTENSIONS.KHR_LIGHTS_PUNCTUAL]) || {}; - this.lightDefs = extension.lights || [] - } - GLTFLightsExtension.prototype.loadLight = function(lightIndex) { - var lightDef = this.lightDefs[lightIndex]; - var lightNode; - var color = new THREE.Color(0xffffff); - if (lightDef.color !== undefined) color.fromArray(lightDef.color); - var range = lightDef.range !== undefined ? lightDef.range: 0; - switch (lightDef.type) { - case 'directional': - lightNode = new THREE.DirectionalLight(color); - lightNode.target.position.set(0, 0, -1); - lightNode.add(lightNode.target); - break; - case 'point': - lightNode = new THREE.PointLight(color); - lightNode.distance = range; - break; - case 'spot': - lightNode = new THREE.SpotLight(color); - lightNode.distance = range; - lightDef.spot = lightDef.spot || {}; - lightDef.spot.innerConeAngle = lightDef.spot.innerConeAngle !== undefined ? lightDef.spot.innerConeAngle: 0; - lightDef.spot.outerConeAngle = lightDef.spot.outerConeAngle !== undefined ? lightDef.spot.outerConeAngle: Math.PI / 4.0; - lightNode.angle = lightDef.spot.outerConeAngle; - lightNode.penumbra = 1.0 - lightDef.spot.innerConeAngle / lightDef.spot.outerConeAngle; - lightNode.target.position.set(0, 0, -1); - lightNode.add(lightNode.target); - break; - default: - throw new Error('THREE.GLTFLoader: Unexpected light type, "' + lightDef.type + '".'); - } - lightNode.position.set(0, 0, 0); - lightNode.decay = 2; - if (lightDef.intensity !== undefined) lightNode.intensity = lightDef.intensity; - lightNode.name = lightDef.name || ('light_' + lightIndex); - return Promise.resolve(lightNode) - }; - function GLTFMaterialsUnlitExtension() { - this.name = EXTENSIONS.KHR_MATERIALS_UNLIT - } - GLTFMaterialsUnlitExtension.prototype.getMaterialType = function() { - return THREE.MeshBasicMaterial - }; - GLTFMaterialsUnlitExtension.prototype.extendParams = function(materialParams, materialDef, parser) { - var pending = []; - materialParams.color = new THREE.Color(1.0, 1.0, 1.0); - materialParams.opacity = 1.0; - var metallicRoughness = materialDef.pbrMetallicRoughness; - if (metallicRoughness) { - if (Array.isArray(metallicRoughness.baseColorFactor)) { - var array = metallicRoughness.baseColorFactor; - materialParams.color.fromArray(array); - materialParams.opacity = array[3] - } - if (metallicRoughness.baseColorTexture !== undefined) { - pending.push(parser.assignTexture(materialParams, 'map', metallicRoughness.baseColorTexture)) - } - } - return Promise.all(pending) - }; - var BINARY_EXTENSION_HEADER_MAGIC = 'glTF'; - var BINARY_EXTENSION_HEADER_LENGTH = 12; - var BINARY_EXTENSION_CHUNK_TYPES = { - JSON: 0x4E4F534A, - BIN: 0x004E4942 - }; - function GLTFBinaryExtension(data) { - this.name = EXTENSIONS.KHR_BINARY_GLTF; - this.content = null; - this.body = null; - var headerView = new DataView(data, 0, BINARY_EXTENSION_HEADER_LENGTH); - this.header = { - magic: THREE.LoaderUtils.decodeText(new Uint8Array(data.slice(0, 4))), - version: headerView.getUint32(4, true), - length: headerView.getUint32(8, true) - }; - if (this.header.magic !== BINARY_EXTENSION_HEADER_MAGIC) { - throw new Error('THREE.GLTFLoader: Unsupported glTF-Binary header.'); - } else if (this.header.version < 2.0) { - throw new Error('THREE.GLTFLoader: Legacy binary file detected. Use LegacyGLTFLoader instead.'); - } - var chunkView = new DataView(data, BINARY_EXTENSION_HEADER_LENGTH); - var chunkIndex = 0; - while (chunkIndex < chunkView.byteLength) { - var chunkLength = chunkView.getUint32(chunkIndex, true); - chunkIndex += 4; - var chunkType = chunkView.getUint32(chunkIndex, true); - chunkIndex += 4; - if (chunkType === BINARY_EXTENSION_CHUNK_TYPES.JSON) { - var contentArray = new Uint8Array(data, BINARY_EXTENSION_HEADER_LENGTH + chunkIndex, chunkLength); - this.content = THREE.LoaderUtils.decodeText(contentArray) - } else if (chunkType === BINARY_EXTENSION_CHUNK_TYPES.BIN) { - var byteOffset = BINARY_EXTENSION_HEADER_LENGTH + chunkIndex; - this.body = data.slice(byteOffset, byteOffset + chunkLength) - } - chunkIndex += chunkLength - } - if (this.content === null) { - throw new Error('THREE.GLTFLoader: JSON content not found.'); - } - } - function GLTFDracoMeshCompressionExtension(json, dracoLoader) { - if (!dracoLoader) { - throw new Error('THREE.GLTFLoader: No DRACOLoader instance provided.'); - } - this.name = EXTENSIONS.KHR_DRACO_MESH_COMPRESSION; - this.json = json; - this.dracoLoader = dracoLoader - } - GLTFDracoMeshCompressionExtension.prototype.decodePrimitive = function(primitive, parser) { - var json = this.json; - var dracoLoader = this.dracoLoader; - var bufferViewIndex = primitive.extensions[this.name].bufferView; - var gltfAttributeMap = primitive.extensions[this.name].attributes; - var threeAttributeMap = {}; - var attributeNormalizedMap = {}; - var attributeTypeMap = {}; - for (var attributeName in gltfAttributeMap) { - var threeAttributeName = ATTRIBUTES[attributeName] || attributeName.toLowerCase(); - threeAttributeMap[threeAttributeName] = gltfAttributeMap[attributeName] - } - for (attributeName in primitive.attributes) { - var threeAttributeName = ATTRIBUTES[attributeName] || attributeName.toLowerCase(); - if (gltfAttributeMap[attributeName] !== undefined) { - var accessorDef = json.accessors[primitive.attributes[attributeName]]; - var componentType = WEBGL_COMPONENT_TYPES[accessorDef.componentType]; - attributeTypeMap[threeAttributeName] = componentType; - attributeNormalizedMap[threeAttributeName] = accessorDef.normalized === true - } - } - return parser.getDependency('bufferView', bufferViewIndex).then(function(bufferView) { - return new Promise(function(resolve) { - dracoLoader.decodeDracoFile(bufferView, - function(geometry) { - for (var attributeName in geometry.attributes) { - var attribute = geometry.attributes[attributeName]; - var normalized = attributeNormalizedMap[attributeName]; - if (normalized !== undefined) attribute.normalized = normalized - } - resolve(geometry) - }, - threeAttributeMap, attributeTypeMap) - }) - }) - }; - function GLTFTextureTransformExtension() { - this.name = EXTENSIONS.KHR_TEXTURE_TRANSFORM - } - GLTFTextureTransformExtension.prototype.extendTexture = function(texture, transform) { - texture = texture.clone(); - if (transform.offset !== undefined) { - texture.offset.fromArray(transform.offset) - } - if (transform.rotation !== undefined) { - texture.rotation = transform.rotation - } - if (transform.scale !== undefined) { - texture.repeat.fromArray(transform.scale) - } - if (transform.texCoord !== undefined) { - console.warn('THREE.GLTFLoader: Custom UV sets in "' + this.name + '" extension not yet supported.') - } - texture.needsUpdate = true; - return texture - }; - function GLTFMaterialsPbrSpecularGlossinessExtension() { - return { - name: EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS, - specularGlossinessParams: ['color', 'map', 'lightMap', 'lightMapIntensity', 'aoMap', 'aoMapIntensity', 'emissive', 'emissiveIntensity', 'emissiveMap', 'bumpMap', 'bumpScale', 'normalMap', 'displacementMap', 'displacementScale', 'displacementBias', 'specularMap', 'specular', 'glossinessMap', 'glossiness', 'alphaMap', 'envMap', 'envMapIntensity', 'refractionRatio', ], - getMaterialType: function() { - return THREE.ShaderMaterial - }, - extendParams: function(materialParams, materialDef, parser) { - var pbrSpecularGlossiness = materialDef.extensions[this.name]; - var shader = THREE.ShaderLib['standard']; - var uniforms = THREE.UniformsUtils.clone(shader.uniforms); - var specularMapParsFragmentChunk = ['#ifdef USE_SPECULARMAP', ' uniform sampler2D specularMap;', '#endif'].join('\n'); - var glossinessMapParsFragmentChunk = ['#ifdef USE_GLOSSINESSMAP', ' uniform sampler2D glossinessMap;', '#endif'].join('\n'); - var specularMapFragmentChunk = ['vec3 specularFactor = specular;', '#ifdef USE_SPECULARMAP', ' vec4 texelSpecular = texture2D( specularMap, vUv );', ' texelSpecular = sRGBToLinear( texelSpecular );', ' // reads channel RGB, compatible with a glTF Specular-Glossiness (RGBA) texture', ' specularFactor *= texelSpecular.rgb;', '#endif'].join('\n'); - var glossinessMapFragmentChunk = ['float glossinessFactor = glossiness;', '#ifdef USE_GLOSSINESSMAP', ' vec4 texelGlossiness = texture2D( glossinessMap, vUv );', ' // reads channel A, compatible with a glTF Specular-Glossiness (RGBA) texture', ' glossinessFactor *= texelGlossiness.a;', '#endif'].join('\n'); - var lightPhysicalFragmentChunk = ['PhysicalMaterial material;', 'material.diffuseColor = diffuseColor.rgb;', 'material.specularRoughness = clamp( 1.0 - glossinessFactor, 0.04, 1.0 );', 'material.specularColor = specularFactor.rgb;', ].join('\n'); - var fragmentShader = shader.fragmentShader.replace('uniform float roughness;', 'uniform vec3 specular;').replace('uniform float metalness;', 'uniform float glossiness;').replace('#include <roughnessmap_pars_fragment>', specularMapParsFragmentChunk).replace('#include <metalnessmap_pars_fragment>', glossinessMapParsFragmentChunk).replace('#include <roughnessmap_fragment>', specularMapFragmentChunk).replace('#include <metalnessmap_fragment>', glossinessMapFragmentChunk).replace('#include <lights_physical_fragment>', lightPhysicalFragmentChunk); - delete uniforms.roughness; - delete uniforms.metalness; - delete uniforms.roughnessMap; - delete uniforms.metalnessMap; - uniforms.specular = { - value: new THREE.Color().setHex(0x111111) - }; - uniforms.glossiness = { - value: 0.5 - }; - uniforms.specularMap = { - value: null - }; - uniforms.glossinessMap = { - value: null - }; - materialParams.vertexShader = shader.vertexShader; - materialParams.fragmentShader = fragmentShader; - materialParams.uniforms = uniforms; - materialParams.defines = { - 'STANDARD': '' - } - materialParams.color = new THREE.Color(1.0, 1.0, 1.0); - materialParams.opacity = 1.0; - var pending = []; - if (Array.isArray(pbrSpecularGlossiness.diffuseFactor)) { - var array = pbrSpecularGlossiness.diffuseFactor; - materialParams.color.fromArray(array); - materialParams.opacity = array[3] - } - if (pbrSpecularGlossiness.diffuseTexture !== undefined) { - pending.push(parser.assignTexture(materialParams, 'map', pbrSpecularGlossiness.diffuseTexture)) - } - materialParams.emissive = new THREE.Color(0.0, 0.0, 0.0); - materialParams.glossiness = pbrSpecularGlossiness.glossinessFactor !== undefined ? pbrSpecularGlossiness.glossinessFactor: 1.0; - materialParams.specular = new THREE.Color(1.0, 1.0, 1.0); - if (Array.isArray(pbrSpecularGlossiness.specularFactor)) { - materialParams.specular.fromArray(pbrSpecularGlossiness.specularFactor) - } - if (pbrSpecularGlossiness.specularGlossinessTexture !== undefined) { - var specGlossMapDef = pbrSpecularGlossiness.specularGlossinessTexture; - pending.push(parser.assignTexture(materialParams, 'glossinessMap', specGlossMapDef)); - pending.push(parser.assignTexture(materialParams, 'specularMap', specGlossMapDef)) - } - return Promise.all(pending) - }, - createMaterial: function(params) { - var material = new THREE.ShaderMaterial({ - defines: params.defines, - vertexShader: params.vertexShader, - fragmentShader: params.fragmentShader, - uniforms: params.uniforms, - fog: true, - lights: true, - opacity: params.opacity, - transparent: params.transparent - }); - material.isGLTFSpecularGlossinessMaterial = true; - material.color = params.color; - material.map = params.map === undefined ? null: params.map; - material.lightMap = null; - material.lightMapIntensity = 1.0; - material.aoMap = params.aoMap === undefined ? null: params.aoMap; - material.aoMapIntensity = 1.0; - material.emissive = params.emissive; - material.emissiveIntensity = 1.0; - material.emissiveMap = params.emissiveMap === undefined ? null: params.emissiveMap; - material.bumpMap = params.bumpMap === undefined ? null: params.bumpMap; - material.bumpScale = 1; - material.normalMap = params.normalMap === undefined ? null: params.normalMap; - if (params.normalScale) material.normalScale = params.normalScale; - material.displacementMap = null; - material.displacementScale = 1; - material.displacementBias = 0; - material.specularMap = params.specularMap === undefined ? null: params.specularMap; - material.specular = params.specular; - material.glossinessMap = params.glossinessMap === undefined ? null: params.glossinessMap; - material.glossiness = params.glossiness; - material.alphaMap = null; - material.envMap = params.envMap === undefined ? null: params.envMap; - material.envMapIntensity = 1.0; - material.refractionRatio = 0.98; - material.extensions.derivatives = true; - return material - }, - cloneMaterial: function(source) { - var target = source.clone(); - target.isGLTFSpecularGlossinessMaterial = true; - var params = this.specularGlossinessParams; - for (var i = 0, - il = params.length; i < il; i++) { - var value = source[params[i]]; - target[params[i]] = (value && value.isColor) ? value.clone() : value - } - return target - }, - refreshUniforms: function(renderer, scene, camera, geometry, material) { - if (material.isGLTFSpecularGlossinessMaterial !== true) { - return - } - var uniforms = material.uniforms; - var defines = material.defines; - uniforms.opacity.value = material.opacity; - uniforms.diffuse.value.copy(material.color); - uniforms.emissive.value.copy(material.emissive).multiplyScalar(material.emissiveIntensity); - uniforms.map.value = material.map; - uniforms.specularMap.value = material.specularMap; - uniforms.alphaMap.value = material.alphaMap; - uniforms.lightMap.value = material.lightMap; - uniforms.lightMapIntensity.value = material.lightMapIntensity; - uniforms.aoMap.value = material.aoMap; - uniforms.aoMapIntensity.value = material.aoMapIntensity; - var uvScaleMap; - if (material.map) { - uvScaleMap = material.map - } else if (material.specularMap) { - uvScaleMap = material.specularMap - } else if (material.displacementMap) { - uvScaleMap = material.displacementMap - } else if (material.normalMap) { - uvScaleMap = material.normalMap - } else if (material.bumpMap) { - uvScaleMap = material.bumpMap - } else if (material.glossinessMap) { - uvScaleMap = material.glossinessMap - } else if (material.alphaMap) { - uvScaleMap = material.alphaMap - } else if (material.emissiveMap) { - uvScaleMap = material.emissiveMap - } - if (uvScaleMap !== undefined) { - if (uvScaleMap.isWebGLRenderTarget) { - uvScaleMap = uvScaleMap.texture - } - if (uvScaleMap.matrixAutoUpdate === true) { - uvScaleMap.updateMatrix() - } - uniforms.uvTransform.value.copy(uvScaleMap.matrix) - } - if (material.envMap) { - uniforms.envMap.value = material.envMap; - uniforms.envMapIntensity.value = material.envMapIntensity; - uniforms.flipEnvMap.value = material.envMap.isCubeTexture ? -1 : 1; - uniforms.reflectivity.value = material.reflectivity; - uniforms.refractionRatio.value = material.refractionRatio; - uniforms.maxMipLevel.value = renderer.properties.get(material.envMap).__maxMipLevel - } - uniforms.specular.value.copy(material.specular); - uniforms.glossiness.value = material.glossiness; - uniforms.glossinessMap.value = material.glossinessMap; - uniforms.emissiveMap.value = material.emissiveMap; - uniforms.bumpMap.value = material.bumpMap; - uniforms.normalMap.value = material.normalMap; - uniforms.displacementMap.value = material.displacementMap; - uniforms.displacementScale.value = material.displacementScale; - uniforms.displacementBias.value = material.displacementBias; - if (uniforms.glossinessMap.value !== null && defines.USE_GLOSSINESSMAP === undefined) { - defines.USE_GLOSSINESSMAP = ''; - defines.USE_ROUGHNESSMAP = '' - } - if (uniforms.glossinessMap.value === null && defines.USE_GLOSSINESSMAP !== undefined) { - delete defines.USE_GLOSSINESSMAP; - delete defines.USE_ROUGHNESSMAP - } - } - } - } - function GLTFCubicSplineInterpolant(parameterPositions, sampleValues, sampleSize, resultBuffer) { - THREE.Interpolant.call(this, parameterPositions, sampleValues, sampleSize, resultBuffer) - } - GLTFCubicSplineInterpolant.prototype = Object.create(THREE.Interpolant.prototype); - GLTFCubicSplineInterpolant.prototype.constructor = GLTFCubicSplineInterpolant; - GLTFCubicSplineInterpolant.prototype.copySampleValue_ = function(index) { - var result = this.resultBuffer, - values = this.sampleValues, - valueSize = this.valueSize, - offset = index * valueSize * 3 + valueSize; - for (var i = 0; i !== valueSize; i++) { - result[i] = values[offset + i] - } - return result - }; - GLTFCubicSplineInterpolant.prototype.beforeStart_ = GLTFCubicSplineInterpolant.prototype.copySampleValue_; - GLTFCubicSplineInterpolant.prototype.afterEnd_ = GLTFCubicSplineInterpolant.prototype.copySampleValue_; - GLTFCubicSplineInterpolant.prototype.interpolate_ = function(i1, t0, t, t1) { - var result = this.resultBuffer; - var values = this.sampleValues; - var stride = this.valueSize; - var stride2 = stride * 2; - var stride3 = stride * 3; - var td = t1 - t0; - var p = (t - t0) / td; - var pp = p * p; - var ppp = pp * p; - var offset1 = i1 * stride3; - var offset0 = offset1 - stride3; - var s2 = -2 * ppp + 3 * pp; - var s3 = ppp - pp; - var s0 = 1 - s2; - var s1 = s3 - pp + p; - for (var i = 0; i !== stride; i++) { - var p0 = values[offset0 + i + stride]; - var m0 = values[offset0 + i + stride2] * td; - var p1 = values[offset1 + i + stride]; - var m1 = values[offset1 + i] * td; - result[i] = s0 * p0 + s1 * m0 + s2 * p1 + s3 * m1 - } - return result - }; - var WEBGL_CONSTANTS = { - FLOAT: 5126, - FLOAT_MAT3: 35675, - FLOAT_MAT4: 35676, - FLOAT_VEC2: 35664, - FLOAT_VEC3: 35665, - FLOAT_VEC4: 35666, - LINEAR: 9729, - REPEAT: 10497, - SAMPLER_2D: 35678, - POINTS: 0, - LINES: 1, - LINE_LOOP: 2, - LINE_STRIP: 3, - TRIANGLES: 4, - TRIANGLE_STRIP: 5, - TRIANGLE_FAN: 6, - UNSIGNED_BYTE: 5121, - UNSIGNED_SHORT: 5123 - }; - var WEBGL_COMPONENT_TYPES = { - 5120 : Int8Array, - 5121 : Uint8Array, - 5122 : Int16Array, - 5123 : Uint16Array, - 5125 : Uint32Array, - 5126 : Float32Array - }; - var WEBGL_FILTERS = { - 9728 : THREE.NearestFilter, - 9729 : THREE.LinearFilter, - 9984 : THREE.NearestMipmapNearestFilter, - 9985 : THREE.LinearMipmapNearestFilter, - 9986 : THREE.NearestMipmapLinearFilter, - 9987 : THREE.LinearMipmapLinearFilter - }; - var WEBGL_WRAPPINGS = { - 33071 : THREE.ClampToEdgeWrapping, - 33648 : THREE.MirroredRepeatWrapping, - 10497 : THREE.RepeatWrapping - }; - var WEBGL_TYPE_SIZES = { - 'SCALAR': 1, - 'VEC2': 2, - 'VEC3': 3, - 'VEC4': 4, - 'MAT2': 4, - 'MAT3': 9, - 'MAT4': 16 - }; - var ATTRIBUTES = { - POSITION: 'position', - NORMAL: 'normal', - TANGENT: 'tangent', - TEXCOORD_0: 'uv', - TEXCOORD_1: 'uv2', - COLOR_0: 'color', - WEIGHTS_0: 'skinWeight', - JOINTS_0: 'skinIndex', - }; - var PATH_PROPERTIES = { - scale: 'scale', - translation: 'position', - rotation: 'quaternion', - weights: 'morphTargetInfluences' - }; - var INTERPOLATION = { - CUBICSPLINE: undefined, - LINEAR: THREE.InterpolateLinear, - STEP: THREE.InterpolateDiscrete - }; - var ALPHA_MODES = { - OPAQUE: 'OPAQUE', - MASK: 'MASK', - BLEND: 'BLEND' - }; - var MIME_TYPE_FORMATS = { - 'image/png': THREE.RGBAFormat, - 'image/jpeg': THREE.RGBFormat - }; - function resolveURL(url, path) { - if (typeof url !== 'string' || url === '') return ''; - if (/^https?:\/\//i.test(path) && /^\//.test(url)) { - path = path.replace(/(^https?:\/\/[^\/]+).*/i, '$1') - } - if (/^(https?:)?\/\//i.test(url)) return url; - if (/^data:.*,.*$/i.test(url)) return url; - if (/^blob:.*$/i.test(url)) return url; - return path + url - } - var defaultMaterial; - function createDefaultMaterial() { - defaultMaterial = defaultMaterial || new THREE.MeshStandardMaterial({ - color: 0xFFFFFF, - emissive: 0x000000, - metalness: 1, - roughness: 1, - transparent: false, - depthTest: true, - side: THREE.FrontSide - }); - return defaultMaterial - } - function addUnknownExtensionsToUserData(knownExtensions, object, objectDef) { - for (var name in objectDef.extensions) { - if (knownExtensions[name] === undefined) { - object.userData.gltfExtensions = object.userData.gltfExtensions || {}; - object.userData.gltfExtensions[name] = objectDef.extensions[name] - } - } - } - function assignExtrasToUserData(object, gltfDef) { - if (gltfDef.extras !== undefined) { - if (typeof gltfDef.extras === 'object') { - Object.assign(object.userData, gltfDef.extras) - } else { - console.warn('THREE.GLTFLoader: Ignoring primitive type .extras, ' + gltfDef.extras) - } - } - } - function addMorphTargets(geometry, targets, parser) { - var hasMorphPosition = false; - var hasMorphNormal = false; - for (var i = 0, - il = targets.length; i < il; i++) { - var target = targets[i]; - if (target.POSITION !== undefined) hasMorphPosition = true; - if (target.NORMAL !== undefined) hasMorphNormal = true; - if (hasMorphPosition && hasMorphNormal) break - } - if (!hasMorphPosition && !hasMorphNormal) return Promise.resolve(geometry); - var pendingPositionAccessors = []; - var pendingNormalAccessors = []; - for (var i = 0, - il = targets.length; i < il; i++) { - var target = targets[i]; - if (hasMorphPosition) { - var pendingAccessor = target.POSITION !== undefined ? parser.getDependency('accessor', target.POSITION) : geometry.attributes.position; - pendingPositionAccessors.push(pendingAccessor) - } - if (hasMorphNormal) { - var pendingAccessor = target.NORMAL !== undefined ? parser.getDependency('accessor', target.NORMAL) : geometry.attributes.normal; - pendingNormalAccessors.push(pendingAccessor) - } - } - return Promise.all([Promise.all(pendingPositionAccessors), Promise.all(pendingNormalAccessors)]).then(function(accessors) { - var morphPositions = accessors[0]; - var morphNormals = accessors[1]; - for (var i = 0, - il = morphPositions.length; i < il; i++) { - if (geometry.attributes.position === morphPositions[i]) continue; - morphPositions[i] = cloneBufferAttribute(morphPositions[i]) - } - for (var i = 0, - il = morphNormals.length; i < il; i++) { - if (geometry.attributes.normal === morphNormals[i]) continue; - morphNormals[i] = cloneBufferAttribute(morphNormals[i]) - } - for (var i = 0, - il = targets.length; i < il; i++) { - var target = targets[i]; - var attributeName = 'morphTarget' + i; - if (hasMorphPosition) { - if (target.POSITION !== undefined) { - var positionAttribute = morphPositions[i]; - positionAttribute.name = attributeName; - var position = geometry.attributes.position; - for (var j = 0, - jl = positionAttribute.count; j < jl; j++) { - positionAttribute.setXYZ(j, positionAttribute.getX(j) + position.getX(j), positionAttribute.getY(j) + position.getY(j), positionAttribute.getZ(j) + position.getZ(j)) - } - } - } - if (hasMorphNormal) { - if (target.NORMAL !== undefined) { - var normalAttribute = morphNormals[i]; - normalAttribute.name = attributeName; - var normal = geometry.attributes.normal; - for (var j = 0, - jl = normalAttribute.count; j < jl; j++) { - normalAttribute.setXYZ(j, normalAttribute.getX(j) + normal.getX(j), normalAttribute.getY(j) + normal.getY(j), normalAttribute.getZ(j) + normal.getZ(j)) - } - } - } - } - if (hasMorphPosition) geometry.morphAttributes.position = morphPositions; - if (hasMorphNormal) geometry.morphAttributes.normal = morphNormals; - return geometry - }) - } - function updateMorphTargets(mesh, meshDef) { - mesh.updateMorphTargets(); - if (meshDef.weights !== undefined) { - for (var i = 0, - il = meshDef.weights.length; i < il; i++) { - mesh.morphTargetInfluences[i] = meshDef.weights[i] - } - } - if (meshDef.extras && Array.isArray(meshDef.extras.targetNames)) { - var targetNames = meshDef.extras.targetNames; - if (mesh.morphTargetInfluences.length === targetNames.length) { - mesh.morphTargetDictionary = {}; - for (var i = 0, - il = targetNames.length; i < il; i++) { - mesh.morphTargetDictionary[targetNames[i]] = i - } - } else { - console.warn('THREE.GLTFLoader: Invalid extras.targetNames length. Ignoring names.') - } - } - } - function createPrimitiveKey(primitiveDef) { - var dracoExtension = primitiveDef.extensions && primitiveDef.extensions[EXTENSIONS.KHR_DRACO_MESH_COMPRESSION]; - var geometryKey; - if (dracoExtension) { - geometryKey = 'draco:' + dracoExtension.bufferView + ':' + dracoExtension.indices + ':' + createAttributesKey(dracoExtension.attributes) - } else { - geometryKey = primitiveDef.indices + ':' + createAttributesKey(primitiveDef.attributes) + ':' + primitiveDef.mode - } - return geometryKey - } - function createAttributesKey(attributes) { - var attributesKey = ''; - var keys = Object.keys(attributes).sort(); - for (var i = 0, - il = keys.length; i < il; i++) { - attributesKey += keys[i] + ':' + attributes[keys[i]] + ';' - } - return attributesKey - } - function cloneBufferAttribute(attribute) { - if (attribute.isInterleavedBufferAttribute) { - var count = attribute.count; - var itemSize = attribute.itemSize; - var array = attribute.array.slice(0, count * itemSize); - for (var i = 0, - j = 0; i < count; ++i) { - array[j++] = attribute.getX(i); - if (itemSize >= 2) array[j++] = attribute.getY(i); - if (itemSize >= 3) array[j++] = attribute.getZ(i); - if (itemSize >= 4) array[j++] = attribute.getW(i) - } - return new THREE.BufferAttribute(array, itemSize, attribute.normalized) - } - return attribute.clone() - } - function GLTFParser(json, extensions, options) { - this.json = json || {}; - this.extensions = extensions || {}; - this.options = options || {}; - this.cache = new GLTFRegistry(); - this.primitiveCache = {}; - this.textureLoader = new THREE.TextureLoader(this.options.manager); - this.textureLoader.setCrossOrigin(this.options.crossOrigin); - this.fileLoader = new THREE.FileLoader(this.options.manager); - this.fileLoader.setResponseType('arraybuffer') - } - GLTFParser.prototype.parse = function(onLoad, onError) { - var parser = this; - var json = this.json; - var extensions = this.extensions; - this.cache.removeAll(); - this.markDefs(); - Promise.all([this.getDependencies('scene'), this.getDependencies('animation'), this.getDependencies('camera'), ]).then(function(dependencies) { - var result = { - scene: dependencies[0][json.scene || 0], - scenes: dependencies[0], - animations: dependencies[1], - cameras: dependencies[2], - asset: json.asset, - parser: parser, - userData: {} - }; - addUnknownExtensionsToUserData(extensions, result, json); - assignExtrasToUserData(result, json); - onLoad(result) - }). - catch(onError) - }; - GLTFParser.prototype.markDefs = function() { - var nodeDefs = this.json.nodes || []; - var skinDefs = this.json.skins || []; - var meshDefs = this.json.meshes || []; - var meshReferences = {}; - var meshUses = {}; - for (var skinIndex = 0, - skinLength = skinDefs.length; skinIndex < skinLength; skinIndex++) { - var joints = skinDefs[skinIndex].joints; - for (var i = 0, - il = joints.length; i < il; i++) { - nodeDefs[joints[i]].isBone = true - } - } - for (var nodeIndex = 0, - nodeLength = nodeDefs.length; nodeIndex < nodeLength; nodeIndex++) { - var nodeDef = nodeDefs[nodeIndex]; - if (nodeDef.mesh !== undefined) { - if (meshReferences[nodeDef.mesh] === undefined) { - meshReferences[nodeDef.mesh] = meshUses[nodeDef.mesh] = 0 - } - meshReferences[nodeDef.mesh]++; - if (nodeDef.skin !== undefined) { - meshDefs[nodeDef.mesh].isSkinnedMesh = true - } - } - } - this.json.meshReferences = meshReferences; - this.json.meshUses = meshUses - }; - GLTFParser.prototype.getDependency = function(type, index) { - var cacheKey = type + ':' + index; - var dependency = this.cache.get(cacheKey); - if (!dependency) { - switch (type) { - case 'scene': - dependency = this.loadScene(index); - break; - case 'node': - dependency = this.loadNode(index); - break; - case 'mesh': - dependency = this.loadMesh(index); - break; - case 'accessor': - dependency = this.loadAccessor(index); - break; - case 'bufferView': - dependency = this.loadBufferView(index); - break; - case 'buffer': - dependency = this.loadBuffer(index); - break; - case 'material': - dependency = this.loadMaterial(index); - break; - case 'texture': - dependency = this.loadTexture(index); - break; - case 'skin': - dependency = this.loadSkin(index); - break; - case 'animation': - dependency = this.loadAnimation(index); - break; - case 'camera': - dependency = this.loadCamera(index); - break; - case 'light': - dependency = this.extensions[EXTENSIONS.KHR_LIGHTS_PUNCTUAL].loadLight(index); - break; - default: - throw new Error('Unknown type: ' + type); - } - this.cache.add(cacheKey, dependency) - } - return dependency - }; - GLTFParser.prototype.getDependencies = function(type) { - var dependencies = this.cache.get(type); - if (!dependencies) { - var parser = this; - var defs = this.json[type + (type === 'mesh' ? 'es': 's')] || []; - dependencies = Promise.all(defs.map(function(def, index) { - return parser.getDependency(type, index) - })); - this.cache.add(type, dependencies) - } - return dependencies - }; - GLTFParser.prototype.loadBuffer = function(bufferIndex) { - var bufferDef = this.json.buffers[bufferIndex]; - var loader = this.fileLoader; - if (bufferDef.type && bufferDef.type !== 'arraybuffer') { - throw new Error('THREE.GLTFLoader: ' + bufferDef.type + ' buffer type is not supported.'); - } - if (bufferDef.uri === undefined && bufferIndex === 0) { - return Promise.resolve(this.extensions[EXTENSIONS.KHR_BINARY_GLTF].body) - } - var options = this.options; - return new Promise(function(resolve, reject) { - loader.load(resolveURL(bufferDef.uri, options.path), resolve, undefined, - function() { - reject(new Error('THREE.GLTFLoader: Failed to load buffer "' + bufferDef.uri + '".')) - }) - }) - }; - GLTFParser.prototype.loadBufferView = function(bufferViewIndex) { - var bufferViewDef = this.json.bufferViews[bufferViewIndex]; - return this.getDependency('buffer', bufferViewDef.buffer).then(function(buffer) { - var byteLength = bufferViewDef.byteLength || 0; - var byteOffset = bufferViewDef.byteOffset || 0; - return buffer.slice(byteOffset, byteOffset + byteLength) - }) - }; - GLTFParser.prototype.loadAccessor = function(accessorIndex) { - var parser = this; - var json = this.json; - var accessorDef = this.json.accessors[accessorIndex]; - if (accessorDef.bufferView === undefined && accessorDef.sparse === undefined) { - return Promise.resolve(null) - } - var pendingBufferViews = []; - if (accessorDef.bufferView !== undefined) { - pendingBufferViews.push(this.getDependency('bufferView', accessorDef.bufferView)) - } else { - pendingBufferViews.push(null) - } - if (accessorDef.sparse !== undefined) { - pendingBufferViews.push(this.getDependency('bufferView', accessorDef.sparse.indices.bufferView)); - pendingBufferViews.push(this.getDependency('bufferView', accessorDef.sparse.values.bufferView)) - } - return Promise.all(pendingBufferViews).then(function(bufferViews) { - var bufferView = bufferViews[0]; - var itemSize = WEBGL_TYPE_SIZES[accessorDef.type]; - var TypedArray = WEBGL_COMPONENT_TYPES[accessorDef.componentType]; - var elementBytes = TypedArray.BYTES_PER_ELEMENT; - var itemBytes = elementBytes * itemSize; - var byteOffset = accessorDef.byteOffset || 0; - var byteStride = accessorDef.bufferView !== undefined ? json.bufferViews[accessorDef.bufferView].byteStride: undefined; - var normalized = accessorDef.normalized === true; - var array, bufferAttribute; - if (byteStride && byteStride !== itemBytes) { - var ibSlice = Math.floor(byteOffset / byteStride); - var ibCacheKey = 'InterleavedBuffer:' + accessorDef.bufferView + ':' + accessorDef.componentType + ':' + ibSlice + ':' + accessorDef.count; - var ib = parser.cache.get(ibCacheKey); - if (!ib) { - array = new TypedArray(bufferView, ibSlice * byteStride, accessorDef.count * byteStride / elementBytes); - ib = new THREE.InterleavedBuffer(array, byteStride / elementBytes); - parser.cache.add(ibCacheKey, ib) - } - bufferAttribute = new THREE.InterleavedBufferAttribute(ib, itemSize, (byteOffset % byteStride) / elementBytes, normalized) - } else { - if (bufferView === null) { - array = new TypedArray(accessorDef.count * itemSize) - } else { - array = new TypedArray(bufferView, byteOffset, accessorDef.count * itemSize) - } - bufferAttribute = new THREE.BufferAttribute(array, itemSize, normalized) - } - if (accessorDef.sparse !== undefined) { - var itemSizeIndices = WEBGL_TYPE_SIZES.SCALAR; - var TypedArrayIndices = WEBGL_COMPONENT_TYPES[accessorDef.sparse.indices.componentType]; - var byteOffsetIndices = accessorDef.sparse.indices.byteOffset || 0; - var byteOffsetValues = accessorDef.sparse.values.byteOffset || 0; - var sparseIndices = new TypedArrayIndices(bufferViews[1], byteOffsetIndices, accessorDef.sparse.count * itemSizeIndices); - var sparseValues = new TypedArray(bufferViews[2], byteOffsetValues, accessorDef.sparse.count * itemSize); - if (bufferView !== null) { - bufferAttribute.setArray(bufferAttribute.array.slice()) - } - for (var i = 0, - il = sparseIndices.length; i < il; i++) { - var index = sparseIndices[i]; - bufferAttribute.setX(index, sparseValues[i * itemSize]); - if (itemSize >= 2) bufferAttribute.setY(index, sparseValues[i * itemSize + 1]); - if (itemSize >= 3) bufferAttribute.setZ(index, sparseValues[i * itemSize + 2]); - if (itemSize >= 4) bufferAttribute.setW(index, sparseValues[i * itemSize + 3]); - if (itemSize >= 5) throw new Error('THREE.GLTFLoader: Unsupported itemSize in sparse BufferAttribute.'); - } - } - return bufferAttribute - }) - }; - GLTFParser.prototype.loadTexture = function(textureIndex) { - var parser = this; - var json = this.json; - var options = this.options; - var textureLoader = this.textureLoader; - // var URL = global.URL; - var textureDef = json.textures[textureIndex]; - var textureExtensions = textureDef.extensions || {}; - var source; - if (textureExtensions[EXTENSIONS.MSFT_TEXTURE_DDS]) { - source = json.images[textureExtensions[EXTENSIONS.MSFT_TEXTURE_DDS].source] - } else { - source = json.images[textureDef.source] - } - var sourceURI = source.uri; - var isObjectURL = false; - if (source.bufferView !== undefined) { - sourceURI = parser.getDependency('bufferView', source.bufferView).then(function(bufferView) { - isObjectURL = true; - // 寰俊灏忕▼搴忎笉鏀寔 Blob 瀵硅薄锛屽垯浣跨敤 base64 缂栫爜鐨勫瓧绗︿覆鏉ュ垱寤� data URI - const base64Str = wx.arrayBufferToBase64(bufferView); - sourceURI = `data:${source.mimeType};base64,${base64Str}`; - return sourceURI - }) - } - return Promise.resolve(sourceURI).then(function(sourceURI) { - var loader = THREE.Loader.Handlers.get(sourceURI); - if (!loader) { - loader = textureExtensions[EXTENSIONS.MSFT_TEXTURE_DDS] ? parser.extensions[EXTENSIONS.MSFT_TEXTURE_DDS].ddsLoader: textureLoader - } - return new Promise(function(resolve, reject) { - loader.load(resolveURL(sourceURI, options.path), resolve, undefined, reject) - }) - }).then(function(texture) { - if (isObjectURL === true) { - // URL.revokeObjectURL(sourceURI) - } - texture.flipY = false; - if (textureDef.name !== undefined) texture.name = textureDef.name; - if (source.mimeType in MIME_TYPE_FORMATS) { - texture.format = MIME_TYPE_FORMATS[source.mimeType] - } - var samplers = json.samplers || {}; - var sampler = samplers[textureDef.sampler] || {}; - texture.magFilter = WEBGL_FILTERS[sampler.magFilter] || THREE.LinearFilter; - texture.minFilter = WEBGL_FILTERS[sampler.minFilter] || THREE.LinearMipmapLinearFilter; - texture.wrapS = WEBGL_WRAPPINGS[sampler.wrapS] || THREE.RepeatWrapping; - texture.wrapT = WEBGL_WRAPPINGS[sampler.wrapT] || THREE.RepeatWrapping; - return texture - }) - }; - GLTFParser.prototype.assignTexture = function(materialParams, mapName, mapDef) { - var parser = this; - return this.getDependency('texture', mapDef.index).then(function(texture) { - if (!texture.isCompressedTexture) { - switch (mapName) { - case 'aoMap': - case 'emissiveMap': - case 'metalnessMap': - case 'normalMap': - case 'roughnessMap': - texture.format = THREE.RGBFormat; - break - } - } - if (parser.extensions[EXTENSIONS.KHR_TEXTURE_TRANSFORM]) { - var transform = mapDef.extensions !== undefined ? mapDef.extensions[EXTENSIONS.KHR_TEXTURE_TRANSFORM] : undefined; - if (transform) { - texture = parser.extensions[EXTENSIONS.KHR_TEXTURE_TRANSFORM].extendTexture(texture, transform) - } - } - materialParams[mapName] = texture - }) - }; - GLTFParser.prototype.assignFinalMaterial = function(mesh) { - var geometry = mesh.geometry; - var material = mesh.material; - var extensions = this.extensions; - var useVertexTangents = geometry.attributes.tangent !== undefined; - var useVertexColors = geometry.attributes.color !== undefined; - var useFlatShading = geometry.attributes.normal === undefined; - var useSkinning = mesh.isSkinnedMesh === true; - var useMorphTargets = Object.keys(geometry.morphAttributes).length > 0; - var useMorphNormals = useMorphTargets && geometry.morphAttributes.normal !== undefined; - if (mesh.isPoints) { - var cacheKey = 'PointsMaterial:' + material.uuid; - var pointsMaterial = this.cache.get(cacheKey); - if (!pointsMaterial) { - pointsMaterial = new THREE.PointsMaterial(); - THREE.Material.prototype.copy.call(pointsMaterial, material); - pointsMaterial.color.copy(material.color); - pointsMaterial.map = material.map; - pointsMaterial.lights = false; - pointsMaterial.sizeAttenuation = false; - this.cache.add(cacheKey, pointsMaterial) - } - material = pointsMaterial - } else if (mesh.isLine) { - var cacheKey = 'LineBasicMaterial:' + material.uuid; - var lineMaterial = this.cache.get(cacheKey); - if (!lineMaterial) { - lineMaterial = new THREE.LineBasicMaterial(); - THREE.Material.prototype.copy.call(lineMaterial, material); - lineMaterial.color.copy(material.color); - lineMaterial.lights = false; - this.cache.add(cacheKey, lineMaterial) - } - material = lineMaterial - } - if (useVertexTangents || useVertexColors || useFlatShading || useSkinning || useMorphTargets) { - var cacheKey = 'ClonedMaterial:' + material.uuid + ':'; - if (material.isGLTFSpecularGlossinessMaterial) cacheKey += 'specular-glossiness:'; - if (useSkinning) cacheKey += 'skinning:'; - if (useVertexTangents) cacheKey += 'vertex-tangents:'; - if (useVertexColors) cacheKey += 'vertex-colors:'; - if (useFlatShading) cacheKey += 'flat-shading:'; - if (useMorphTargets) cacheKey += 'morph-targets:'; - if (useMorphNormals) cacheKey += 'morph-normals:'; - var cachedMaterial = this.cache.get(cacheKey); - if (!cachedMaterial) { - cachedMaterial = material.isGLTFSpecularGlossinessMaterial ? extensions[EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS].cloneMaterial(material) : material.clone(); - if (useSkinning) cachedMaterial.skinning = true; - if (useVertexTangents) cachedMaterial.vertexTangents = true; - if (useVertexColors) cachedMaterial.vertexColors = THREE.VertexColors; - if (useFlatShading) cachedMaterial.flatShading = true; - if (useMorphTargets) cachedMaterial.morphTargets = true; - if (useMorphNormals) cachedMaterial.morphNormals = true; - this.cache.add(cacheKey, cachedMaterial) - } - material = cachedMaterial - } - if (material.aoMap && geometry.attributes.uv2 === undefined && geometry.attributes.uv !== undefined) { - console.log('THREE.GLTFLoader: Duplicating UVs to support aoMap.'); - geometry.addAttribute('uv2', new THREE.BufferAttribute(geometry.attributes.uv.array, 2)) - } - if (material.isGLTFSpecularGlossinessMaterial) { - mesh.onBeforeRender = extensions[EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS].refreshUniforms - } - mesh.material = material - }; - GLTFParser.prototype.loadMaterial = function(materialIndex) { - var parser = this; - var json = this.json; - var extensions = this.extensions; - var materialDef = json.materials[materialIndex]; - var materialType; - var materialParams = {}; - var materialExtensions = materialDef.extensions || {}; - var pending = []; - if (materialExtensions[EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS]) { - var sgExtension = extensions[EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS]; - materialType = sgExtension.getMaterialType(); - pending.push(sgExtension.extendParams(materialParams, materialDef, parser)) - } else if (materialExtensions[EXTENSIONS.KHR_MATERIALS_UNLIT]) { - var kmuExtension = extensions[EXTENSIONS.KHR_MATERIALS_UNLIT]; - materialType = kmuExtension.getMaterialType(); - pending.push(kmuExtension.extendParams(materialParams, materialDef, parser)) - } else { - materialType = THREE.MeshStandardMaterial; - var metallicRoughness = materialDef.pbrMetallicRoughness || {}; - materialParams.color = new THREE.Color(1.0, 1.0, 1.0); - materialParams.opacity = 1.0; - if (Array.isArray(metallicRoughness.baseColorFactor)) { - var array = metallicRoughness.baseColorFactor; - materialParams.color.fromArray(array); - materialParams.opacity = array[3] - } - if (metallicRoughness.baseColorTexture !== undefined) { - pending.push(parser.assignTexture(materialParams, 'map', metallicRoughness.baseColorTexture)) - } - materialParams.metalness = metallicRoughness.metallicFactor !== undefined ? metallicRoughness.metallicFactor: 1.0; - materialParams.roughness = metallicRoughness.roughnessFactor !== undefined ? metallicRoughness.roughnessFactor: 1.0; - if (metallicRoughness.metallicRoughnessTexture !== undefined) { - pending.push(parser.assignTexture(materialParams, 'metalnessMap', metallicRoughness.metallicRoughnessTexture)); - pending.push(parser.assignTexture(materialParams, 'roughnessMap', metallicRoughness.metallicRoughnessTexture)) - } - } - if (materialDef.doubleSided === true) { - materialParams.side = THREE.DoubleSide - } - var alphaMode = materialDef.alphaMode || ALPHA_MODES.OPAQUE; - if (alphaMode === ALPHA_MODES.BLEND) { - materialParams.transparent = true - } else { - materialParams.transparent = false; - if (alphaMode === ALPHA_MODES.MASK) { - materialParams.alphaTest = materialDef.alphaCutoff !== undefined ? materialDef.alphaCutoff: 0.5 - } - } - if (materialDef.normalTexture !== undefined && materialType !== THREE.MeshBasicMaterial) { - pending.push(parser.assignTexture(materialParams, 'normalMap', materialDef.normalTexture)); - materialParams.normalScale = new THREE.Vector2(1, 1); - if (materialDef.normalTexture.scale !== undefined) { - materialParams.normalScale.set(materialDef.normalTexture.scale, materialDef.normalTexture.scale) - } - } - if (materialDef.occlusionTexture !== undefined && materialType !== THREE.MeshBasicMaterial) { - pending.push(parser.assignTexture(materialParams, 'aoMap', materialDef.occlusionTexture)); - if (materialDef.occlusionTexture.strength !== undefined) { - materialParams.aoMapIntensity = materialDef.occlusionTexture.strength - } - } - if (materialDef.emissiveFactor !== undefined && materialType !== THREE.MeshBasicMaterial) { - materialParams.emissive = new THREE.Color().fromArray(materialDef.emissiveFactor) - } - if (materialDef.emissiveTexture !== undefined && materialType !== THREE.MeshBasicMaterial) { - pending.push(parser.assignTexture(materialParams, 'emissiveMap', materialDef.emissiveTexture)) - } - return Promise.all(pending).then(function() { - var material; - if (materialType === THREE.ShaderMaterial) { - material = extensions[EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS].createMaterial(materialParams) - } else { - material = new materialType(materialParams) - } - if (materialDef.name !== undefined) material.name = materialDef.name; - if (material.map) material.map.encoding = THREE.sRGBEncoding; - if (material.emissiveMap) material.emissiveMap.encoding = THREE.sRGBEncoding; - if (material.specularMap) material.specularMap.encoding = THREE.sRGBEncoding; - assignExtrasToUserData(material, materialDef); - if (materialDef.extensions) addUnknownExtensionsToUserData(extensions, material, materialDef); - return material - }) - }; - function addPrimitiveAttributes(geometry, primitiveDef, parser) { - var attributes = primitiveDef.attributes; - var pending = []; - function assignAttributeAccessor(accessorIndex, attributeName) { - return parser.getDependency('accessor', accessorIndex).then(function(accessor) { - geometry.addAttribute(attributeName, accessor) - }) - } - for (var gltfAttributeName in attributes) { - var threeAttributeName = ATTRIBUTES[gltfAttributeName] || gltfAttributeName.toLowerCase(); - if (threeAttributeName in geometry.attributes) continue; - pending.push(assignAttributeAccessor(attributes[gltfAttributeName], threeAttributeName)) - } - if (primitiveDef.indices !== undefined && !geometry.index) { - var accessor = parser.getDependency('accessor', primitiveDef.indices).then(function(accessor) { - geometry.setIndex(accessor) - }); - pending.push(accessor) - } - assignExtrasToUserData(geometry, primitiveDef); - return Promise.all(pending).then(function() { - return primitiveDef.targets !== undefined ? addMorphTargets(geometry, primitiveDef.targets, parser) : geometry - }) - } - GLTFParser.prototype.loadGeometries = function(primitives) { - var parser = this; - var extensions = this.extensions; - var cache = this.primitiveCache; - function createDracoPrimitive(primitive) { - return extensions[EXTENSIONS.KHR_DRACO_MESH_COMPRESSION].decodePrimitive(primitive, parser).then(function(geometry) { - return addPrimitiveAttributes(geometry, primitive, parser) - }) - } - var pending = []; - for (var i = 0, - il = primitives.length; i < il; i++) { - var primitive = primitives[i]; - var cacheKey = createPrimitiveKey(primitive); - var cached = cache[cacheKey]; - if (cached) { - pending.push(cached.promise) - } else { - var geometryPromise; - if (primitive.extensions && primitive.extensions[EXTENSIONS.KHR_DRACO_MESH_COMPRESSION]) { - geometryPromise = createDracoPrimitive(primitive) - } else { - geometryPromise = addPrimitiveAttributes(new THREE.BufferGeometry(), primitive, parser) - } - cache[cacheKey] = { - primitive: primitive, - promise: geometryPromise - }; - pending.push(geometryPromise) - } - } - return Promise.all(pending) - }; - GLTFParser.prototype.loadMesh = function(meshIndex) { - var parser = this; - var json = this.json; - var meshDef = json.meshes[meshIndex]; - var primitives = meshDef.primitives; - var pending = []; - for (var i = 0, - il = primitives.length; i < il; i++) { - var material = primitives[i].material === undefined ? createDefaultMaterial() : this.getDependency('material', primitives[i].material); - pending.push(material) - } - return Promise.all(pending).then(function(originalMaterials) { - return parser.loadGeometries(primitives).then(function(geometries) { - var meshes = []; - for (var i = 0, - il = geometries.length; i < il; i++) { - var geometry = geometries[i]; - var primitive = primitives[i]; - var mesh; - var material = originalMaterials[i]; - if (primitive.mode === WEBGL_CONSTANTS.TRIANGLES || primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP || primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN || primitive.mode === undefined) { - mesh = meshDef.isSkinnedMesh === true ? new THREE.SkinnedMesh(geometry, material) : new THREE.Mesh(geometry, material); - if (mesh.isSkinnedMesh === true && !mesh.geometry.attributes.skinWeight.normalized) { - mesh.normalizeSkinWeights() - } - if (primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP) { - mesh.drawMode = THREE.TriangleStripDrawMode - } else if (primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN) { - mesh.drawMode = THREE.TriangleFanDrawMode - } - } else if (primitive.mode === WEBGL_CONSTANTS.LINES) { - mesh = new THREE.LineSegments(geometry, material) - } else if (primitive.mode === WEBGL_CONSTANTS.LINE_STRIP) { - mesh = new THREE.Line(geometry, material) - } else if (primitive.mode === WEBGL_CONSTANTS.LINE_LOOP) { - mesh = new THREE.LineLoop(geometry, material) - } else if (primitive.mode === WEBGL_CONSTANTS.POINTS) { - mesh = new THREE.Points(geometry, material) - } else { - throw new Error('THREE.GLTFLoader: Primitive mode unsupported: ' + primitive.mode); - } - if (Object.keys(mesh.geometry.morphAttributes).length > 0) { - updateMorphTargets(mesh, meshDef) - } - mesh.name = meshDef.name || ('mesh_' + meshIndex); - if (geometries.length > 1) mesh.name += '_' + i; - assignExtrasToUserData(mesh, meshDef); - parser.assignFinalMaterial(mesh); - meshes.push(mesh) - } - if (meshes.length === 1) { - return meshes[0] - } - var group = new THREE.Group(); - for (var i = 0, - il = meshes.length; i < il; i++) { - group.add(meshes[i]) - } - return group - }) - }) - }; - GLTFParser.prototype.loadCamera = function(cameraIndex) { - var camera; - var cameraDef = this.json.cameras[cameraIndex]; - var params = cameraDef[cameraDef.type]; - if (!params) { - console.warn('THREE.GLTFLoader: Missing camera parameters.'); - return - } - if (cameraDef.type === 'perspective') { - camera = new THREE.PerspectiveCamera(THREE.Math.radToDeg(params.yfov), params.aspectRatio || 1, params.znear || 1, params.zfar || 2e6) - } else if (cameraDef.type === 'orthographic') { - camera = new THREE.OrthographicCamera(params.xmag / -2, params.xmag / 2, params.ymag / 2, params.ymag / -2, params.znear, params.zfar) - } - if (cameraDef.name !== undefined) camera.name = cameraDef.name; - assignExtrasToUserData(camera, cameraDef); - return Promise.resolve(camera) - }; - GLTFParser.prototype.loadSkin = function(skinIndex) { - var skinDef = this.json.skins[skinIndex]; - var skinEntry = { - joints: skinDef.joints - }; - if (skinDef.inverseBindMatrices === undefined) { - return Promise.resolve(skinEntry) - } - return this.getDependency('accessor', skinDef.inverseBindMatrices).then(function(accessor) { - skinEntry.inverseBindMatrices = accessor; - return skinEntry - }) - }; - GLTFParser.prototype.loadAnimation = function(animationIndex) { - var json = this.json; - var animationDef = json.animations[animationIndex]; - var pendingNodes = []; - var pendingInputAccessors = []; - var pendingOutputAccessors = []; - var pendingSamplers = []; - var pendingTargets = []; - for (var i = 0, - il = animationDef.channels.length; i < il; i++) { - var channel = animationDef.channels[i]; - var sampler = animationDef.samplers[channel.sampler]; - var target = channel.target; - var name = target.node !== undefined ? target.node: target.id; - var input = animationDef.parameters !== undefined ? animationDef.parameters[sampler.input] : sampler.input; - var output = animationDef.parameters !== undefined ? animationDef.parameters[sampler.output] : sampler.output; - pendingNodes.push(this.getDependency('node', name)); - pendingInputAccessors.push(this.getDependency('accessor', input)); - pendingOutputAccessors.push(this.getDependency('accessor', output)); - pendingSamplers.push(sampler); - pendingTargets.push(target) - } - return Promise.all([Promise.all(pendingNodes), Promise.all(pendingInputAccessors), Promise.all(pendingOutputAccessors), Promise.all(pendingSamplers), Promise.all(pendingTargets)]).then(function(dependencies) { - var nodes = dependencies[0]; - var inputAccessors = dependencies[1]; - var outputAccessors = dependencies[2]; - var samplers = dependencies[3]; - var targets = dependencies[4]; - var tracks = []; - for (var i = 0, - il = nodes.length; i < il; i++) { - var node = nodes[i]; - var inputAccessor = inputAccessors[i]; - var outputAccessor = outputAccessors[i]; - var sampler = samplers[i]; - var target = targets[i]; - if (node === undefined) continue; - node.updateMatrix(); - node.matrixAutoUpdate = true; - var TypedKeyframeTrack; - switch (PATH_PROPERTIES[target.path]) { - case PATH_PROPERTIES.weights: - TypedKeyframeTrack = THREE.NumberKeyframeTrack; - break; - case PATH_PROPERTIES.rotation: - TypedKeyframeTrack = THREE.QuaternionKeyframeTrack; - break; - case PATH_PROPERTIES.position: - case PATH_PROPERTIES.scale: - default: - TypedKeyframeTrack = THREE.VectorKeyframeTrack; - break - } - var targetName = node.name ? node.name: node.uuid; - var interpolation = sampler.interpolation !== undefined ? INTERPOLATION[sampler.interpolation] : THREE.InterpolateLinear; - var targetNames = []; - if (PATH_PROPERTIES[target.path] === PATH_PROPERTIES.weights) { - node.traverse(function(object) { - if (object.isMesh === true && object.morphTargetInfluences) { - targetNames.push(object.name ? object.name: object.uuid) - } - }) - } else { - targetNames.push(targetName) - } - var outputArray = outputAccessor.array; - if (outputAccessor.normalized) { - var scale; - if (outputArray.constructor === Int8Array) { - scale = 1 / 127 - } else if (outputArray.constructor === Uint8Array) { - scale = 1 / 255 - } else if (outputArray.constructor == Int16Array) { - scale = 1 / 32767 - } else if (outputArray.constructor === Uint16Array) { - scale = 1 / 65535 - } else { - throw new Error('THREE.GLTFLoader: Unsupported output accessor component type.'); - } - var scaled = new Float32Array(outputArray.length); - for (var j = 0, - jl = outputArray.length; j < jl; j++) { - scaled[j] = outputArray[j] * scale - } - outputArray = scaled - } - for (var j = 0, - jl = targetNames.length; j < jl; j++) { - var track = new TypedKeyframeTrack(targetNames[j] + '.' + PATH_PROPERTIES[target.path], inputAccessor.array, outputArray, interpolation); - if (sampler.interpolation === 'CUBICSPLINE') { - track.createInterpolant = function InterpolantFactoryMethodGLTFCubicSpline(result) { - return new GLTFCubicSplineInterpolant(this.times, this.values, this.getValueSize() / 3, result) - }; - track.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline = true - } - tracks.push(track) - } - } - var name = animationDef.name !== undefined ? animationDef.name: 'animation_' + animationIndex; - return new THREE.AnimationClip(name, undefined, tracks) - }) - }; - GLTFParser.prototype.loadNode = function(nodeIndex) { - var json = this.json; - var extensions = this.extensions; - var parser = this; - var meshReferences = json.meshReferences; - var meshUses = json.meshUses; - var nodeDef = json.nodes[nodeIndex]; - return (function() { - var pending = []; - if (nodeDef.mesh !== undefined) { - pending.push(parser.getDependency('mesh', nodeDef.mesh).then(function(mesh) { - var node; - if (meshReferences[nodeDef.mesh] > 1) { - var instanceNum = meshUses[nodeDef.mesh]++; - node = mesh.clone(); - node.name += '_instance_' + instanceNum; - node.onBeforeRender = mesh.onBeforeRender; - for (var i = 0, - il = node.children.length; i < il; i++) { - node.children[i].name += '_instance_' + instanceNum; - node.children[i].onBeforeRender = mesh.children[i].onBeforeRender - } - } else { - node = mesh - } - if (nodeDef.weights !== undefined) { - node.traverse(function(o) { - if (!o.isMesh) return; - for (var i = 0, - il = nodeDef.weights.length; i < il; i++) { - o.morphTargetInfluences[i] = nodeDef.weights[i] - } - }) - } - return node - })) - } - if (nodeDef.camera !== undefined) { - pending.push(parser.getDependency('camera', nodeDef.camera)) - } - if (nodeDef.extensions && nodeDef.extensions[EXTENSIONS.KHR_LIGHTS_PUNCTUAL] && nodeDef.extensions[EXTENSIONS.KHR_LIGHTS_PUNCTUAL].light !== undefined) { - pending.push(parser.getDependency('light', nodeDef.extensions[EXTENSIONS.KHR_LIGHTS_PUNCTUAL].light)) - } - return Promise.all(pending) - } ()).then(function(objects) { - var node; - if (nodeDef.isBone === true) { - node = new THREE.Bone() - } else if (objects.length > 1) { - node = new THREE.Group() - } else if (objects.length === 1) { - node = objects[0] - } else { - node = new THREE.Object3D() - } - if (node !== objects[0]) { - for (var i = 0, - il = objects.length; i < il; i++) { - node.add(objects[i]) - } - } - if (nodeDef.name !== undefined) { - node.userData.name = nodeDef.name; - node.name = THREE.PropertyBinding.sanitizeNodeName(nodeDef.name) - } - assignExtrasToUserData(node, nodeDef); - if (nodeDef.extensions) addUnknownExtensionsToUserData(extensions, node, nodeDef); - if (nodeDef.matrix !== undefined) { - var matrix = new THREE.Matrix4(); - matrix.fromArray(nodeDef.matrix); - node.applyMatrix(matrix) - } else { - if (nodeDef.translation !== undefined) { - node.position.fromArray(nodeDef.translation) - } - if (nodeDef.rotation !== undefined) { - node.quaternion.fromArray(nodeDef.rotation) - } - if (nodeDef.scale !== undefined) { - node.scale.fromArray(nodeDef.scale) - } - } - return node - }) - }; - GLTFParser.prototype.loadScene = function() { - function buildNodeHierachy(nodeId, parentObject, json, parser) { - var nodeDef = json.nodes[nodeId]; - return parser.getDependency('node', nodeId).then(function(node) { - if (nodeDef.skin === undefined) return node; - var skinEntry; - return parser.getDependency('skin', nodeDef.skin).then(function(skin) { - skinEntry = skin; - var pendingJoints = []; - for (var i = 0, - il = skinEntry.joints.length; i < il; i++) { - pendingJoints.push(parser.getDependency('node', skinEntry.joints[i])) - } - return Promise.all(pendingJoints) - }).then(function(jointNodes) { - node.traverse(function(mesh) { - if (!mesh.isMesh) return; - var bones = []; - var boneInverses = []; - for (var j = 0, - jl = jointNodes.length; j < jl; j++) { - var jointNode = jointNodes[j]; - if (jointNode) { - bones.push(jointNode); - var mat = new THREE.Matrix4(); - if (skinEntry.inverseBindMatrices !== undefined) { - mat.fromArray(skinEntry.inverseBindMatrices.array, j * 16) - } - boneInverses.push(mat) - } else { - console.warn('THREE.GLTFLoader: Joint "%s" could not be found.', skinEntry.joints[j]) - } - } - mesh.bind(new THREE.Skeleton(bones, boneInverses), mesh.matrixWorld) - }); - return node - }) - }).then(function(node) { - parentObject.add(node); - var pending = []; - if (nodeDef.children) { - var children = nodeDef.children; - for (var i = 0, - il = children.length; i < il; i++) { - var child = children[i]; - pending.push(buildNodeHierachy(child, node, json, parser)) - } - } - return Promise.all(pending) - }) - } - return function loadScene(sceneIndex) { - var json = this.json; - var extensions = this.extensions; - var sceneDef = this.json.scenes[sceneIndex]; - var parser = this; - var scene = new THREE.Scene(); - if (sceneDef.name !== undefined) scene.name = sceneDef.name; - assignExtrasToUserData(scene, sceneDef); - if (sceneDef.extensions) addUnknownExtensionsToUserData(extensions, scene, sceneDef); - var nodeIds = sceneDef.nodes || []; - var pending = []; - for (var i = 0, - il = nodeIds.length; i < il; i++) { - pending.push(buildNodeHierachy(nodeIds[i], scene, json, parser)) - } - return Promise.all(pending).then(function() { - return scene - }) - } - } (); - return GLTFLoader - })(); -} \ No newline at end of file diff --git a/src/components/tem/tem-camera-buffer.vue b/src/components/tem/tem-camera-buffer.vue new file mode 100644 index 0000000..14d20f0 --- /dev/null +++ b/src/components/tem/tem-camera-buffer.vue @@ -0,0 +1,386 @@ +<template> + <view class="page wrap-fix"> + <view class="canvas-wrap"> + <!-- :style="{width: (widthScale * 100)+'%'; height:(heightScale * 100)+'%';}" --> + <canvas type="webgl" id="canvas"></canvas> + </view> + + <!-- <view class="hint-words">鎻愮ず锛氱偣鍑昏幏鍙栵紝浼氬皢鎽勫儚澶磋祫婧愯浆鎴愯创鍥�(闇�鍩虹搴�3.4.4)</view> --> + + <view class="wrap-option"> + <view class="row"> + <button type="primary" bindtap="getJpgImg">鑾峰彇jpg鍥惧儚</button> + <button type="primary" bindtap="getLog">寮�鍏宠皟璇昹og(鏃堕棿鎴�)</button> + </view> + + </view> + + <view class="hint-img-wrap"> + <view class="hint-img-box"> + <image class="hint-img" v-if="jpgUrl !== ''" :src="jpgUrl" mode="aspectFit" /> + </view> + </view> + + + </view> +</template> + +<script> + import arBehavior from '@/components/behavior/behavior-ar' + import threeBehavior from '@/components/behavior/behavior-three' + export default { + mixins: [arBehavior, threeBehavior], + onLoad() { + // if (wx.offThemeChange) { + // wx.offThemeChange() + // } + // this.theme = wx.getSystemInfoSync().theme || 'light' + // if (wx.onThemeChange) { + // wx.onThemeChange(({ + // theme + // }) => { + // this.theme = theme + // }) + // } + this.getAuthSetting() + wx.getSetting({ + success: (res) => { + console.log(res, 'rlsb'); + }, + }) + }, + data() { + return { + theme: 'light', + widthScale: 1 * 100, // canvas瀹藉害缂╂斁鍊� + heightScale: 0.57 * 100, // canvas楂樺害缂╂斁鍊� + jpgUrl: '', + } + }, + methods: { + getAuthSetting() { + wx.getSetting({ + success: (res) => { + console.log(res, 'rlsb'); + if (!res.authSetting['scope.camera']) { + wx.showModal({ + title: '璇峰厑璁歌幏鍙栨憚鍍忓ご鏉冮檺', + showCancel: false, + complete: (modalRes) => { + if (modalRes.confirm) { + wx.openSetting({ + success: (settingRes) => { + if (!settingRes.authSetting[ + 'scope.camera']) { + this.getAuthSetting() + } else { + wx.navigateBack() + } + } + }) + } + } + }) + } + } + }) + }, + // 瀵瑰簲妗堜緥鐨勫垵濮嬪寲閫昏緫锛岀敱缁熶竴鐨� behavior 瑙﹀彂 + init() { + // 鍒濆鍖� Three.js锛岀敤浜庢ā鍨嬬浉鍏崇殑娓叉煋 + this.initTHREE() + + // 鍒濆鍖� GL锛屽熀浜� Three.js 鐨� Context锛岀敤浜庣浉鏈篩UV娓叉煋 + this.initYUV() + + // 鍒濆鍖朧K + // start瀹屾瘯鍚庯紝杩涜鏇存柊娓叉煋寰幆 + this.initVK(); + + this.useLoopLog = false; + this.imgIndex = 0; + }, + initVK() { + // VKSession 閰嶇疆 + const session = this.session = wx.createVKSession({ + track: { + face: { + mode: 1 + }, + }, + version: 'v2', + gl: this.gl + }); + + session.start(err => { + if (err) return console.error('VK error: ', err) + + console.log('@@@@@@@@ VKSession.version', session.version) + + // VKSession EVENT resize + session.on('resize', () => { + this.calcCanvasSize(); + }) + + // VKSession EVENT addAnchors + session.on('addAnchors', anchors => {}) + + // VKSession EVENT updateAnchors + session.on('updateAnchors', anchors => { + + }) + + // VKSession removeAnchors + // 璇嗗埆鐩爣涓㈠け鏃讹紝浼氳Е鍙戜竴娆� + session.on('removeAnchors', anchors => { + // console.log('removeAnchors', anchors) + }); + + + console.log('ready to initloop') + // start 鍒濆鍖栧畬姣曞悗锛岃繘琛屾洿鏂版覆鏌撳惊鐜� + this.initLoop(); + + // 缁樺埗鍙岄潰锛屼互鍙婂幓鎺夋竻灞忥紝鐢ㄤ簬鏄剧ずyuv + this.renderer.state.setCullFace(this.THREE.CullFaceNone) + + }); + }, + loop() { + + // 鑾峰彇 VKFrame + const frame = this.session.getVKFrame(this.canvas.width, this.canvas.height) + + // 鎴愬姛鑾峰彇 VKFrame 鎵嶈繘琛� + if (!frame) { + return; + } + + // 鏇存柊鐩告満 YUV 鏁版嵁 + this.renderYUV(frame) + + // 鑾峰彇 VKCamera + const VKCamera = frame.camera + + if (this.useLoopLog) { + // let transformStr = ''; + // for (let i = 0; i < 16; i++) + // transformStr += VKCamera.transform[i] + ' '; + // console.log('VKCamera.transform', transformStr); + + console.log('timeStamp', frame.timestamp); + + + let viewMatrixStr = ''; + for (let i = 0; i < 16; i++) + viewMatrixStr += VKCamera.viewMatrix[i] + ' '; + // console.log('VKCamera.viewMatrix', viewMatrixStr); + if (this.preTimestamp && this.preTimestamp === frame.timestamp) { + if (this.preViewMatrixStr && this.preViewMatrixStr !== viewMatrixStr) { + console.log('preViewMatrixStr', this.preViewMatrixStr) + console.log('viewMatrixStr', viewMatrixStr) + console.log('Timestamp is same. But viewMatrix is not same'); + } + } + this.preTimestamp = frame.timestamp; + this.preViewMatrixStr = viewMatrixStr; + } + + }, + getJpgImg() { + console.log('Function getJpgImg'); + + // 鎸夐渶鍐欏叆鑾峰彇 jpg 鐨� 澶у皬 鍜岃川閲� + const width = 640; + const height = 480; + const quality = 90; + + // 鑾峰彇 VKFrame + const frame = this.session.getVKFrame(width, height) + + // 鎴愬姛鑾峰彇 VKFrame 鎵嶈繘琛� + if (!frame) { + return; + } + + console.log('getCameraJpgBuffer: ', width, height, quality) + + const t1 = new Date().getTime() + const jpgBuffer = frame.getCameraJpgBuffer(width, height, quality); + const t2 = new Date().getTime() + + console.log(`getCameraJpgBuffer cost ${t2 - t1}ms`) + + // console.log('jpgBuffer', jpgBuffer); + + const jpgUrl = this.saveLocalJPG(jpgBuffer, 'cameraJPG'); + + console.log('jpgUrl', jpgUrl) + + this.setData({ + 'jpgUrl': jpgUrl + }) + + + }, + saveLocalJPG(bufferContent, name) { + var url = `${wx.env.USER_DATA_PATH}/${name + this.imgIndex + '.jpg'}` + + const fs = wx.getFileSystemManager() + try { + // 瀛樺湪鍗冲垹闄� + const unlinkRes = fs.unlinkSync(url) + // console.log('unlinkSync', unlinkRes) + + this.imgIndex++; + const newUrl = `${wx.env.USER_DATA_PATH}/${name + this.imgIndex + '.jpg'}`; + + // console.log('write newUrl', newUrl) + // 鍐欏叆锛屾柊鍥剧墖 + const writeRes = fs.writeFileSync( + newUrl, + bufferContent, + 'utf8' + ) + + return newUrl + + } catch (e) { + // 鍒╃敤catch瀹炵幇锛屾鏃讹紝涓烘柊鍐欏叆 + try { + // console.log('write url', url) + + // 鍐欏叆 + const writeRes = fs.writeFileSync( + url, + bufferContent, + 'utf8' + ) + } catch (e) { + console.error(e); + } + } + + return url + }, + getLog() { + console.log('Function getLog'); + + this.useLoopLog = !this.useLoopLog; + }, + + }, + } +</script> + +<style> + .canvas-wrap { + position: relative; + width: 100%; + background-color: #000; + } + + .canvas-wrap #canvas { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + } + + .hint-box { + position: absolute; + left: 0%; + top: 0%; + width: 0; + height: 0; + } + + .hint-id { + position: absolute; + left: -6rpx; + right: -6rpx; + bottom: 100%; + color: #fff; + font-size: 20rpx; + line-height: 40rpx; + text-align: center; + text-overflow: ellipsis; + background-color: #07c160; + border-radius: 8rpx; + + } + + .wrap-fix { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + } + + .hint-words { + position: absolute; + left: 20rpx; + top: 20rpx; + right: 20rpx; + padding: 10rpx 20rpx; + line-height: 40rpx; + text-align: center; + border-radius: 6rpx; + background-color: rgba(0, 0, 0, .3); + font-size: 26rpx; + color: #fff; + } + + + .hint-img-wrap { + position: absolute; + left: 25%; + bottom: 0%; + width: 50%; + height: 30%; + } + + .hint-img-box { + position: absolute; + left: 5%; + top: 5%; + right: 5%; + bottom: 5%; + background-color: #fafafa; + border: 4rpx solid; + } + + .hint-img { + position: absolute; + left: 4%; + top: 4%; + width: 92%; + height: 92%; + } + + .wrap-option { + position: absolute; + left: 20rpx; + right: 0; + bottom: 30%; + height: 10%; + flex-direction: column; + display: flex; + } + + .wrap-option .row { + flex: 1; + display: flex; + flex-direction: row; + text-align: center; + } + + .wrap-option button { + flex: 1; + margin: 5rpx 20rpx 20rpx 0; + font-size: 30rpx; + line-height: 1.2; + } +</style> \ No newline at end of file diff --git a/src/pages.json b/src/pages.json index b9ae09a..040c095 100644 --- a/src/pages.json +++ b/src/pages.json @@ -85,11 +85,19 @@ "path": "pages/mine/apply", "style": { "navigationBarTitleText": "鐢宠鎺ュ崟" - // "usingComponents":{ - // "camera-buffer-jpg":"/components/cameraBufferJpg/cameraBufferjpg" - // } + } + }, + { + "path" : "pages/test/test", + "style" : + { + "navigationBarTitleText" : "浜鸿劯璇嗗埆" + // "usingComponents":{ + // "camera-buffer-jpg":"../components/cameraBufferJpg/cameraBufferjpg" + // } + } } // { // "path": "pages/enterprise/index", @@ -128,6 +136,12 @@ "path": "record", "style": { "navigationBarTitleText": "鎵撳崱璇︽儏" + } + }, + { + "path": "checkin", + "style": { + "navigationBarTitleText": "鎵撳崱" } } ] @@ -177,6 +191,12 @@ "style": { "navigationBarTitleText": "宸ヤ汉璇︽儏" } + }, + { + "path": "myorder", + "style": { + "navigationBarTitleText": "鎴戠殑璁㈠崟" + } } ] } diff --git a/src/pages/checkin/checkin.vue b/src/pages/checkin/checkin.vue index 8183fd0..d7c1d98 100644 --- a/src/pages/checkin/checkin.vue +++ b/src/pages/checkin/checkin.vue @@ -1,22 +1,131 @@ <template> <view> - + <view class='chuany-flex camera-fill chuany-justify-center chuany-align-center'> + <fui-upload immediate :url="`${apiBaseUrl}api/UpFile/UpdateFile`" ref="uploadB" max='1' @success="success" + @error="error" @complete="complete" width="300" height="300"> + <image v-if="src" :src="src" mode="widthFix" style="width: 300rpx;height: 300rpx;"></image> + <fui-icon v-else name="camera-fill"></fui-icon> + </fui-upload> + </view> + <view class="c-m-30 c-p-t-20 c-p-b-20"> + 涓轰簡淇濊瘉鎵撳崱鐨勬纭�э紝鈥屽缓璁湪鍏徃闂ㄥ彛鎴栬繘鍏ュ姙鍏鐨勯棬鍙e啀鎵撳崱銆傗�屽悓鏃讹紝鈥岀‘淇濈収鐗囩殑娓呮櫚銆佲�屾槑浜紝鈥岄潰閮ㄥ彲瑙併�� + </view> + <view class="c-p-20"> + <view class="chuany-flex chuany-justify-between c-p-t-20"> + <view class="chuany-flex chuany-flex-direction chuany-align-center textclo chuany-font24 step_item" + v-for="(item,index) in 4"> + <up-avatar shape="square" size="38" src="https://uview-plus.jiangruyi.com/album/1.jpg" + @click="previewImage"></up-avatar> + <view class="line line-active" v-if="index!==3"> + + </view> + <up-icon name="checkmark-circle-fill" color="#2979ff" size="22"></up-icon> + <text>宸叉墦鍗�</text> + <text>10:00</text> + </view> + + </view> + </view> + <view class="tabbtns"> + <up-button color='#fece01' class="text-69" text="纭鎵撳崱" @click="enroll"></up-button> + </view> </view> </template> <script> + import { + apiBaseUrl + } from '@/common/setting/constVarsHelper.js'; export default { data() { return { - + src: '' } }, + onLoad(option) { + let { + orderid + } = option + this.$api.getDaka({ + orderId: orederid + }).then(res => { + console.log(res, '鎵撳崱'); + }) + }, methods: { - + openCamera() { + console.log('-----------------') + // 鎷嶇収鍜岀浉鍐� + uni.chooseImage({ + count: 1, + sizeType: ["original", "compressed"], + sourceType: ["camera"], + success: (res) => { + const { + tempFilePaths + } = res; + console.log(tempFilePaths); + }, + }); + + }, + success(e) { + //e.res 涓烘湇鍔″櫒杩斿洖鏁版嵁 + //涓婁紶鎴愬姛鍥炶皟锛屽鐞嗘湇鍔″櫒杩斿洖鏁版嵁銆愭澶勬牴鎹疄闄呰繑鍥炴暟鎹繘琛屽鐞嗐�� + let res = JSON.parse(e.res.data.replace(/\ufeff/g, "") || "{}") + console.log(res.data); + if (res.data.url) { + enterpriseInfo.businessLicense = res.data.url + enterpriseInfo.suppliername = res.data.info.name //浼佷笟鍚嶇О + enterpriseInfo.regtime = res.data.info.setDate //娉ㄥ唽鏃堕棿 + enterpriseInfo.address = res.data.info.address //鑱旂郴鍦板潃 + enterpriseInfo.suppliercode = res.data.info.regNum //浼佷笟娉ㄥ唽鍙� + enterpriseInfo.contact = res.data.info.person //鑱旂郴浜� + } + }, + error() { + + }, + complete(e) { + if (e.action == 'delete') { + // 鍒犻櫎澶勭悊 + } + console.log(e, '鍒犻櫎') + }, + previewImage() { + uni.previewImage({ + urls: ['https://uview-plus.jiangruyi.com/album/1.jpg'] + }) + } } } </script> -<style> +<style lang="scss"> + .camera-fill { + width: 400rpx; + height: 400rpx; + margin: 20rpx auto; + border-radius: 20rpx; + } -</style> + .step_item { + position: relative; + /* width: 144rpx; */ + display: flex; + + .line { + position: absolute; + top: 92rpx; + left: 52rpx; + content: ""; + height: 4rpx; + width: 192rpx; + background-color: #e9e8e8; + } + + .line-active { + background-color: #2979ff; + } + } +</style> \ No newline at end of file diff --git a/src/pages/detail/detail.vue b/src/pages/detail/detail.vue index 6f99c28..2f36422 100644 --- a/src/pages/detail/detail.vue +++ b/src/pages/detail/detail.vue @@ -13,7 +13,7 @@ <view class="chuany-flex chuany-justify-between"> <view class=""> <view class="chuany-flex chuany-justify-between chuany-align-center"> - <view class="c-p-18 chuany-font44 chuany-text-bold"> + <view class="c-p-18 chuany-font34"> {{orderObj.orderName}} </view> <view class="c-p-l-108"> diff --git a/src/pages/enterprise/enterprise.vue b/src/pages/enterprise/enterprise.vue index ea58d0b..d5c536f 100644 --- a/src/pages/enterprise/enterprise.vue +++ b/src/pages/enterprise/enterprise.vue @@ -2,7 +2,7 @@ <view class="full-page"> <view class="content"> <up-form labelPosition="left" :model="enterpriseInfo" :rules="rules" ref="formRef" labelWidth='90'> - <up-form-item label="鍏徃钀ヤ笟鎵х収" prop="enterpriseInfo.businessLicense" required borderBottom ref="item1"> + <up-form-item label="鍏徃钀ヤ笟鎵х収" prop="enterpriseInfo.businessLicense" required ref="item1"> <fui-upload immediate :url="`${apiBaseUrl}api/UpFile/UpBizLicense`" ref="uploadB" max='1' background='#fff' @success="success" @error="error" @complete="complete" width="300" height="150"> @@ -14,32 +14,33 @@ <up-icon name="arrow-right"></up-icon> </template> --> </up-form-item> - <up-form-item label="浼佷笟鍚嶇О" required prop="suppliername" borderBottom ref="item1"> + <up-form-item label="浼佷笟鍚嶇О" required prop="suppliername" ref="item1"> <up-input v-model="enterpriseInfo.suppliername" border="none" placeholder="璇疯緭鍏ヤ紒涓氬悕绉�" readonly></up-input> </up-form-item> - <up-form-item label="浼佷笟娉ㄥ唽鍙�" required prop="suppliercode" borderBottom ref="item1"> + <up-form-item label="浼佷笟娉ㄥ唽鍙�" required prop="suppliercode" ref="item1"> <up-input v-model="enterpriseInfo.suppliercode" border="none" placeholder="璇疯緭鍏ヤ紒涓氭敞鍐屽彿" readonly></up-input> </up-form-item> - <up-form-item label="娉ㄥ唽鏃堕棿" required prop="regtime" borderBottom ref="item1"> + <up-form-item label="娉ㄥ唽鏃堕棿" required prop="regtime" ref="item1"> <up-input v-model="enterpriseInfo.regtime" border="none" placeholder="璇疯緭鍏ヤ紒涓氭敞鍐屽彿" readonly></up-input> </up-form-item> - <up-form-item label="浼佷笟娉ㄥ唽鍦板潃" required prop="address" borderBottom ref="item1"> + <up-form-item label="浼佷笟娉ㄥ唽鍦板潃" required prop="address" ref="item1"> <up-input v-model="enterpriseInfo.address" border="none" placeholder="璇疯緭鍏ヤ紒涓氭敞鍐屽湴鍧�" readonly></up-input> </up-form-item> - <up-form-item label="鑱旂郴浜�" required prop="contact" borderBottom ref="item1"> + <up-form-item label="鑱旂郴浜�" required prop="contact" ref="item1"> <up-input v-model="enterpriseInfo.contact" border="none" placeholder="璇疯緭鍏ヨ仈绯讳汉"></up-input> </up-form-item> - <up-form-item label="鑱旂郴鐢佃瘽" required prop="phone" borderBottom ref="item1"> + <up-form-item label="鑱旂郴鐢佃瘽" required prop="phone" ref="item1"> <up-input v-model="enterpriseInfo.phone" border="none" placeholder="璇疯緭鍏ヨ仈绯荤數璇�"></up-input> </up-form-item> - <up-form-item label="鍏徃绠�浠�" required prop="resume" borderBottom ref="item1"> - <up-textarea v-model="enterpriseInfo.resume" count placeholder="璇疯緭鍏ュ叕鍙哥畝浠�" - maxlength='800'></up-textarea> + <up-form-item label="鍏徃绠�浠�" required prop="resume" ref="item1"> + </up-form-item> + <up-textarea v-model="enterpriseInfo.resume" count placeholder="璇疯緭鍏ュ叕鍙哥畝浠�" height='200' + maxlength='800'></up-textarea> <view class="tabbtns"> <up-button color='#fece01' class="text-69" text="淇濆瓨" @click="saveUserCompany"></up-button> </view> diff --git a/src/pages/enterprise/index.vue b/src/pages/enterprise/index.vue index 8c24870..df971e0 100644 --- a/src/pages/enterprise/index.vue +++ b/src/pages/enterprise/index.vue @@ -3,32 +3,27 @@ <view class="content chuany-flex chuany-align-end chuany-justify-center"> <up-avatar src="/static/avatar.jpg" shape="circle" size='80'></up-avatar> </view> - <fui-list> - <fui-list-cell arrow> + <fui-list :topBorder='false'> + <fui-list-cell arrow :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']"> <view class="fui-list__item"> - <text>浼佷笟鍚嶇О</text> + <text class="chuany-font30">浼佷笟鍚嶇О</text> <text class="fui-text__explain">{{enterpriseInfo.suppliername}}</text> </view> </fui-list-cell> - <fui-list-cell arrow> + <fui-list-cell arrow :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']"> <view class="fui-list__item"> - <text>浼佷笟娉ㄥ唽鍦板潃</text> + <text class="chuany-font30">浼佷笟娉ㄥ唽鍦板潃</text> <text class="fui-text__explain address">{{enterpriseInfo.address}}</text> </view> </fui-list-cell> - <fui-list-cell arrow> + <fui-list-cell arrow :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']"> <view class="fui-list__item"> - <text>鑱旂郴鐢佃瘽</text> + <text class="chuany-font30">鑱旂郴鐢佃瘽</text> <text class="fui-text__explain">{{enterpriseInfo.phone}}</text> </view> </fui-list-cell> - <up-collapse> - <up-collapse-item title="鍏徃绠�浠�" name="Numerous tools"> - <text class="u-collapse-content">{{enterpriseInfo.resume}}</text> - </up-collapse-item> - </up-collapse> - <fui-list-cell arrow @click="goApply"> - <text>瀹屽杽浼佷笟璧勬枡</text> + <fui-list-cell arrow @click="goApply" :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']"> + <text class="chuany-font30">瀹屽杽浼佷笟璧勬枡</text> </fui-list-cell> </fui-list> </view> diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index fdce52c..f363e5f 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -7,21 +7,21 @@ </view> </up-sticky> <scroll-view enable-flex="true"> - <view class="list chuany-flex chuany-flex-direction chuany-align-center c-p-b-30" + <view class="list chuany-flex chuany-flex-direction chuany-align-center c-p-b-30 " v-if="listO.orderList&&listO.orderList.length>0"> <view class="content c-p-b-18" v-for="(item,index) in listO.orderList" @click='toDetail(item.id)' :key='item.id'> - <view class="bgblue c-p-18 chuany-flex chuany-justify-between chuany-font34 chuany-text-bold"> + <view class="bgblue c-p-l-18 c-p-r-18 c-p-t-10 c-p-b-10 chuany-flex chuany-justify-between chuany-font30"> <view class="chuany-flex chuany-flex-direction"> <text class=''> - {{$util.formatDate(detailItem.wordStartTime,true)}} + {{$util.formatDate(item.wordStartTime,true)}} </text> - <text>{{$util.formatDate(detailItem.wordEndTime,true)}}</text> + <text>{{$util.formatDate(item.wordEndTime,true)}}</text> </view> <text> 鎷泏{item.worderCounted}}/{{item.worderCount}}浜� </text> </view> - <view class="c-p-18 chuany-font44 chuany-text-bold"> + <view class="c-p-l-18 c-p-b-14 c-p-t-14 c-p-r-18 chuany-font34"> {{item.orderName}} </view> <!-- <view class="chuany-flex c-p-l-18"> @@ -29,10 +29,10 @@ </up-tag> </view> --> <view class="chuany-flex chuany-flex-direction"> - <text class='c-p-18'> + <text class='c-p-l-18 c-p-b-14 c-p-r-18'> 瑕佹眰锛歿{item.demand}} </text> - <text class='c-p-l-18 c-p-b-16'> + <text class='c-p-l-18 c-p-b-14 c-p-r-18'> 鍦板潃锛歿{item.worderAddress}} </text> </view> @@ -138,8 +138,8 @@ } loadStatus.value = 'loading'; $api.PostListPage(data).then(res => { - console.log(res, res.code, '-----------123鈥�'); if (res.code == 1) { + console.log(res, res.code, '-----------123鈥�'); if (state.pageIndex == 1) { listO.orderList = res.data.items } else { @@ -186,7 +186,7 @@ } .content { - min-height: 430rpx; + min-height: 330rpx; width: 90%; background-color: #fff; border-radius: 20rpx; diff --git a/src/pages/mine/apply.vue b/src/pages/mine/apply.vue index 022d2c0..045224c 100644 --- a/src/pages/mine/apply.vue +++ b/src/pages/mine/apply.vue @@ -2,7 +2,7 @@ <view class="full-page"> <view class="content"> <up-form labelPosition="left" :model="userInfo" :rules="rules" ref="form1" labelWidth='90'> - <up-form-item label="韬唤璇佹闈�" prop="userInfo.idCardFace" required borderBottom> + <up-form-item label="韬唤璇佹闈�" prop="userInfo.idCardFace" required> <fui-upload immediate :url="`${apiBaseUrl}api/UpFile/UploadIdCord?PageName=FRONT`" ref="uploadF" max='1' background='#fff' @success="success('FRONT',$event)" @error="error" @complete="complete" width="300" height="150"> @@ -13,7 +13,7 @@ <up-icon name="arrow-right"></up-icon> </template> --> </up-form-item> - <up-form-item label="韬唤璇佸弽闈�" prop="userInfo.idCardBack" required borderBottom> + <up-form-item label="韬唤璇佸弽闈�" prop="userInfo.idCardBack" required> <fui-upload immediate :url="`${apiBaseUrl}api/UpFile/UploadIdCord?PageName=Back`" ref="uploadB" max='1' background='#fff' @success="success('Back',$event)" @error="error" @complete="complete" width="300" height="150"> @@ -21,22 +21,22 @@ style="width: 300rpx;height: 150rpx;"></image> </fui-upload> </up-form-item> - <up-form-item label="濮撳悕" required prop="userInfo.name" borderBottom ref="item1"> + <up-form-item label="濮撳悕" required prop="userInfo.name" ref="item1"> <up-input v-model="userInfo.name" border="none" placeholder="璇疯緭鍏ュ鍚�" readonly></up-input> </up-form-item> - <up-form-item label="鑱旂郴鐢佃瘽" required prop="userInfo.phone" borderBottom ref="item1"> + <up-form-item label="鑱旂郴鐢佃瘽" required prop="userInfo.phone" ref="item1"> <up-input v-model="userInfo.phone" border="none" placeholder="璇疯緭鍏ヨ仈绯荤數璇�"></up-input> </up-form-item> - <up-form-item label="韬唤璇佸彿" required prop="userInfo.idCode" borderBottom ref="item1"> + <up-form-item label="韬唤璇佸彿" required prop="userInfo.idCode" ref="item1"> <up-input v-model="userInfo.idCode" border="none" placeholder="璇疯緭鍏ヨ韩浠借瘉鍙�" readonly></up-input> </up-form-item> - <up-form-item label="鑱旂郴鍦板潃" required prop="userInfo.address" borderBottom ref="item1"> + <up-form-item label="鑱旂郴鍦板潃" required prop="userInfo.address" ref="item1"> <up-input v-model="userInfo.address" border="none" placeholder="璇疯緭鍏ヨ仈绯诲湴鍧�"></up-input> </up-form-item> - <up-form-item label="绠�鍘嗘弿杩�" required prop="userInfo.resume" borderBottom ref="item1"> + <up-form-item label="绠�鍘嗘弿杩�" required prop="userInfo.resume" ref="item1"> <up-textarea v-model="userInfo.resume" placeholder="璇疯緭鍏ョ畝鍘嗘弿杩�"></up-textarea> </up-form-item> - <!-- <up-form-item label="鎬у埆" required prop="Gender" borderBottom ref="item2"> + <!-- <up-form-item label="鎬у埆" required prop="Gender" ref="item2"> <up-radio-group v-model="userInfo.Gender"> <up-radio :customStyle="{marginRight: '16px'}" v-for="(item, index) in radiolist1" :key="index" :label="item.name" :name="item.name"> diff --git a/src/pages/mine/index.vue b/src/pages/mine/index.vue index 62c8609..c93d820 100644 --- a/src/pages/mine/index.vue +++ b/src/pages/mine/index.vue @@ -76,7 +76,7 @@ </view> --> <inner-banner className="mg32" :list="bannerList" ptpId="1ab7-1b95-8e0e-3b22"></inner-banner> <view class="nav-box" v-if="identity=='enterprise'"> - <view @tap="navTap" class="nav-item" :data-index="index" data-ptpid="58ac-1481-a7d3-b98e" + <view @tap="item.cb" class="nav-item" :data-index="index" data-ptpid="58ac-1481-a7d3-b98e" v-for="(item, index) in navList" :key="item.name"> <view class="nav-title"> <view :class="'iconfont ' + item.icon"></view> @@ -90,13 +90,13 @@ </view> </view> <view class="nav-box" v-else> - <view @tap="navTap" class="nav-item" :data-index="index" data-ptpid="58ac-1481-a7d3-b98e" + <view @tap="item.cb" class="nav-item" :data-index="index" data-ptpid="58ac-1481-a7d3-b98e" v-for="(item, index) in navList1" :key="item.name"> <view class="nav-title"> <view :class="'iconfont ' + item.icon"></view> {{ item.name }} </view> - + <view class="nav-icon"> <view v-if="item.num || item.num === 0">{{ item.num }}</view> <view class="iconfont iconarrow"></view> @@ -146,11 +146,7 @@ { icon: 'icon-huabanfuben', name: '鐢ㄦ埛璁剧疆', - cb: function() { - uni.navigateTo({ - url: '/mine/setting/index' - }); - } + cb: this.pushImg } ], navList1: [{ @@ -159,7 +155,7 @@ num: 0, cb: function() { uni.navigateTo({ - url: '/pages/collect/collect' + url: '/pages/order/myorder' }); } }, @@ -178,9 +174,15 @@ icon: 'icon-huabanfuben', name: '鐢ㄦ埛璁剧疆', cb: function() { - uni.navigateTo({ - url: '/mine/setting/index' - }); + let obj = { + imgBase64: 'data:image/jpeg;base64,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', //鏁版嵁base64 + cordId: '511322199705264526', //韬唤璇佸彿鐮� + name: '寮犱笁', //濮撳悕 + gender: 2 //鎬у埆 + } + this.$api.IaiAddPersoBase64(obj).then(res => { + console.log(res, '----------------'); + }) } } ], @@ -216,9 +218,9 @@ }, onShow: function() { this.resourceBanner(); - + this.token = this.$db.get('userToken') ? this.$db.get('userToken') : '' - this.isLogin = this.token?true:false; + this.isLogin = this.token ? true : false; }, onShareAppMessage: function() { return { @@ -228,12 +230,23 @@ }; }, methods: { + pushImg(){ + let obj = { + imgBase64: 'data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAZABkAAD/2wBDAAIBAQEBAQIBAQECAgICAgQDAgICAgUEBAMEBgUGBgYFBgYGBwkIBgcJBwYGCAsICQoKCgoKBggLDAsKDAkKCgr/2wBDAQICAgICAgUDAwUKBwYHCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgr/wAARCAEsAREDAREAAhEBAxEB/8QAHgABAAEDBQEAAAAAAAAAAAAAAAkGBwgBAwQFCgL/xABcEAABAgUBAwYICAgLAwoHAAABAgMABAUGEQcIEiEJEzFBUWEUFSJUcZSh0QoXGTJSV4GRI0JTVZKxstMWGDM0YnJzk5aiwTZDgiQnN3SDo7PS1PA1SFZYY3XC/8QAHQEBAAEFAQEBAAAAAAAAAAAAAAYCAwQFBwEICf/EAFARAAIBAgIGBgYFCAcGBQUAAAABAgMRBAUGEiExQVETYXGBkaEHIjKxwdEUF1JU8BUWI1NictLhGDM0QlWSkwgkNYKy8TZDg6LCJTdEY7P/2gAMAwEAAhEDEQA/AJzI0ZtBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBkDrgDTeSegwBrkdsAfPON/THDpgDUKSr5pz6IA1gBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAfDz7TDSnnXUoQhJUta1AJSkDJJJ4AAAkk8AOMAYD7Z3whvYy2aKlN2PpCzN6sXPKrU2+i3JtDFIlnRwKXJ9QUl0g9IYQ4OreBjVYrOMLh3aPrPq3eJKst0PzPHxVSr+ii+ftP/AJeHe12GA+qPwmLlBLxnXDpxbWntmSZJ5lmWoC6k8kd7s04Uk94bHojT1M/xMm9WKS/HMluH0Hyimv0kpTfbbyXzKLp3whrlUJCbE09rJbc4nOSxN2BT+bPd5CEqx9sWY55jVvd+5fIypaHZDKNlBr/mZc2n/CfttdvT2pW7VdHdOn7hflebpVzystNMpk3CRl1cmXVtvkDOE7yE5wSFAFJvx0gr6jTirmBPQTLXWUo1J6vFbNvfZNGMN0crdymd31xdw1Pbdv8Al3lr3gzSqsmSl2+5LLCENgd2IwJZrj5O+u/cbyno7kdOGqsPHvV34vaXV0D+EIcpLoxUmE3lqPTNR6UhQ56nXtSmy8tPWEzcsGnknHWorHcYyaOeYynL13rLr/F/MwMXodkuJi+ji6b5xezwd17iUzYD5c/ZI22ahI6c3C+5pzf02Q2xbVxziFS1RdP4snO4Sh1R6mnA26epKokGEzXDYvZulyfwZA820XzHKk6i/SU/tJbu1b12q67DNfoJSoEEHBBGCDGyI5vEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAbFTqVOo1OmKvV59iUlJRhb81NTLoQ2y0hJUta1HglKUgkk8AATBtJXZ6k5NJK7ZA5yyfK+6x7VlfqmgGgbVbt3SOUeVLzU80w4zM3cUnBdeUni3JkjyGMjfGFu5yEJiGZZvLEN06L9T3nVdG9G8PgIrEYm0qu9Leodn7XN8NyI5klCcNggbvAJBxjuxGjuTI+8j/wBiPAaZHbA9sxvDtgeWZrmANFLSn5xA9JgLXOZSbauC4VBFEoc1N+UOLLJKQeo73QPTmPU2nsKZSgltZMFyPHKz6s2GxTtmzbrutE9RFluVtO9qhOF2cph4JRKz7nEOsdCUvqJW3wCypHFEkyzOLWo132P59XXw7N3OtI9G6M08VgI2e+UVufXHk+a48NpLklWQOjiOBBzmJOc+RrACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAJxAEYHL58pJbWmj8psM2xcj8vO1SQZqd+TMo2Vc3KLOZaQUU8Rzm7zzgxxQGgeCyIjmfYxxisPB79r7OC+JOdD8mddvHzWyLtHt4vu3LruRjU/Uqw6kQZK75LKvxVv8ANq+5WIixPnTmt6OVMUy1bgTmZkadO56y224fv4wPE5x3HWTmjenM6ecVaTbZ7Zdbjf6jiBWq1RcTgOaAaeLPkyU+juTOq/1Bge9PUNEbP+nySD4HUFemdV7oDp6hyGNEtNZQ5coC1gdb824R9vlCA6aq+JyWqJpVbH4YSNDlFJ/GdU2VD9IkwKW6suZtT+sem9LbLf8ACRt7d6G5NpTn3YGPbAqVGq+BTdY2jqY2lTVDtp584wFzjobSR/VTkwK1h3xZLX8H+5VCp7QNKf2Ltdqq2booEgqasOoLWc1KltAc5JKKiSp6WHlJJJKmSfyRzLskx3TU+gm9q3dnLu9xznS7IY4Of02gvUk7SXKT49kvf2knwOY3xCBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIA6fUK+rZ0vsOt6l3rOiWo1u0iZqdWmFHHNy0u0p1w+ndQcd5EeSlGEXKW5bSulSqV6sacPak0l2t2R5StovXW7dp3Xi7toS+nlKql4V5+pzCFKyGELV+CYT2JbaDbYHYgRzzFVpYivKo+LO94LCU8Bg6eHhuikv5972lFlIIwePpjHMq58pbDat9vyT2pOIA76yLX1LvuemaZp5SK3VX5KRdnZ1qmc654NLNIK3HnCk4bbSlJJUogcO3hDdvKWoLedei5rjKApu5KhhQyMTznR98D3VhyL8ubD2u/8RZ3banqzU0yXjlsMUhT7nOLo6gW1VInOQjnyhIHQW8udGIt9LDp+i42/CKLw1rWMfXZibf8A5xNPLPXzjqj+sxcLlktxthtAOdwZ9EAa47z98AawBUujWrt+6A6s25rZpfVlSNwWtV2KlSZgKIHOtqzuK7ULTvIWOgoWodcXsPWlh6yqR3ox8VhqONw06FVXjJWf49x6oNmPX6zdqbZ+tDaHsFQFLu6hsz7LG9lUq4obr0ur+k06lxo96I6FRqwr0o1I7mcHxmEq4DFzw9T2otrt5PvW3vK7i4Y4gBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAMEvhEu0AvRnk5arZFMneaqOpVelLcaCV4UZQEzU2fQWmEtnuex1xq84r9DgWlvls+JJ9EMH9KzqM2tlNOXfuXm/I89gJPlE8T0xBzsIJx0wBkVsB8nRqZtvXQqqKmHaBY1MmubrVzrZ3lOrGCZWUSrg69jGSfIbBBVkkINqtXp0Ft38imUrbFvM8NvtjQjk7OT6rOjWh9sStFnr6aNCkQ2rfnJ8uJHhc3MOny3lIY3hvHgFOoSkJBAjBw7qYmvrz2pfhFFm5K5hDyZfJ/1fbM1SFwXhIPy+ndtzSFXDNjKPGLowpNPaV9JQwXFD5jZ6lLTGbiK8aEL8Xu+ZXJvct5NPPWZatTs92wKhbkk5Q5immnvUjmAmXVKFvmixuDgEbnk4HQOjojRqTUta+0aq1bEGfKB7El07FGtT1shqYmrQrC3Jmzqy4M89Lg5VLOK6OfZyEqH4yd1Y4KON9RqqvT1lv4iLutu8sRFwqEAIAEZgCaX4LrtNv3HpTf+yPXqiVu2tUWrjt1tauIk5w81NNp/opmENrx2zB7Yl2QYhzoypPhtXx/HWcy06wUaeKp4qK9par7VtXls7iVsRviCCAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAD0QBCd8Ka1fVWtd9LdB5aayzb1qTdcm2kq6H52Z5lskdoalD9i4i+kNX14U+q/j/wBjpegeG1cNWxD4tR8Fd+bIsOiI2T0vVsG7Gt0ba2uctp7IvPyVv05CZy7a00jJk5PewEIJ4c86rKGwf6SjkIMW6tWNGGs+4plLVRMBdW0hsPbDFoU7SOv6rWpZ8tRJAM0y1WZ1Ls6ltIzgSze86pajklSgCtSiSckmNZDC4vFJ1NVtcXw8THdenGSineT/AB4EVmrm0Ra3KSba0nUNe9bqPpjY7QMvR1V6c3fF9NSsEtt8CgzbxO8payGweklLYB29DC1YUGqUHK2+3MVcRRw1lN7X+PAmU0M040s0n0ooViaKU6SlrXkpBBpHgD6Xm32lgL5/nQTzynM75dyd8qznoiP1pVJ1G57y9Ts1rJ3uVbFsuFA7Smz/AKS7S2klT0u1mpSHqO+2XxOc4lt2mvISSmaZdP8AJLQMnePklO8lQKSRF2jUqUp3hvKJtJXIA9W7e09sfVKs2PpprHRr6pNPmSmQuSiJcQzNtccHdcSMKHQrdKkZ4pUoEGJJOjWpxUqkXG/Mt0MTRxF9R7UdACDFovmsAIAzF5BTWZ7R3lPrBlHJotSV6NztrzwzgL8KYK2M9uJhlnHeY2+S1OjxyXPZ+O+xG9LcN9JyKo7bYWl4Pb5Nno6QoLSFDrETU42awAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgDRZ3UlXYMwB5weXr1Dc1B5VDUloPb7FuN0uhS4zkJEtItKWB/wBo65EKzqbnjpJ8Le47JolRVHIaT+1eXi38LGHqjgfNJ7kjJPcB1mNSiSEjUzpPrdsbbFktptQNTabotTarLtVTVbViotqeq1Qn32gpuiUSVbIddcZZKW1vbzYCysIUPwixTQlhJ1OkqLXf92PDtk/h3vgavEfScRV1Kexc/wAfjkWu2FuRlu/X+5XdWtUnrktiwZ2YL8rN11CEXDX2iche7hSWEq+cXV7xOcJDnz4qzDNde0dl1wW5F/DYWGFTUNsnvZerWX4ODotcEq/UNEtoa6qJU1Altq6JZipSy1dQUppLLqR3jex2GPMPpBOmlGdNWXLZ80YmIy2VSTmpNvrMueTx0B1S2XdkO0tBdYbjkKpWrbE5L+E0x9bjCZUzbq5dtClpSopS0pIwQN35v4sanMcRSxWLlVp7nbf2bTMwdGpRoKMt/wDMvbGCZhQ+0ppRVNdtAbz0Wo92GhTN123NUpqsCXLvgnPtlCnNwKSVeSSMBQznpEZGFrLD4iNRq+q72LGIpurScE7XME7R+DZ6AUxlty69pq+52ZQP5SlU6Rk0JPcFJdOPSqN5V0iqVI6qpq3Xdmtp5VqO+s7riv8AsU/tC8gRc1v0FNZ2YdXHrgmmEHn6Fd6WZZ5/sLMwylLe9/RcSkH6Y6Iw4ZhSm/Wjq9m1G0g6kVae3rMEdWdFtXdB7hVams2m9YtqfSrCWqvJKaS73tucUOjvQpQjMi4yV4u5cTTWwpnrwemB6Vls437M6VbRNganyjxbct696TUQsHoDU4ytX+UKH2xkYWfR4mEuTRi4+j9IwNWk/wC9GS8mes93m+fc5o+RzitzHZk49kdFe84BG9jSPD0QAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQBqlvnlpZ+moJ+84geN2VzyvcoRd6r928tZ7vU7vid1Pre4rtSiccaT/AJWxHP8AMJueNqPrfvO75NT6HKKEOUI+6/xGwNo1cWu+1rZ9l23SKbPOSk8avMS9ZecRKKakxzx54tJUvcKkoBSkZVndynO8MCrNQpOTNhN2iTDW5sa2OL8G0JtO3grUW8ZBC3pSqXCwhikW+gZWoSEhvFmWQnBJdcLjpxvKXmNVLE1JR6OkrJ8t77XxLT1acG5OyX42spKm8plT9Xq7NUvYv2Q9YtdJOTfW1MXXYttts0NbiFFK0tT0640iYwQfKbCknHBRGDEkwmhea4mmp1HGF+DvfvS3eNyG43TrKcNNwpJztxSVvFteWwqvSXbmti9L/k9H9Y9Fb90ku+pOKao1H1Do7bTFXdCSpTUnPSzjsq+8ACeY30vEAkIUAcYma6K5rlNLpZx1oc1fZ2ppNdu4zco0wynNqnRRerPk7bexpted+ovmkpIynH2RGiWGsAaLIAycfbAGMe03yktsaP33M6Q6S2rQ7ouOnPBmt1C6b/kLZoNHeIB8HenpslT8wAQVMSzTqmwRzimyQIm+jmgmc6Q0enpwkqfBqLk33bvFkD0j09yjIK/QOSlPirpJd/yTOCja/wBvfT+zWdadW+T1kbq00cQp2ZvnQLVKTuwSjScbzhlUobW8lI4q5tRUAD5MbHHej3E4ZOMajU1/dlFx/wC3garA+kejXadSleL4xkn5WXvL62bduh+1hozTL4tl+iXrZVzyImZByZlETMrMtHIILbqTurSQpKkqSFIUlSSAQYgFehiMFiJUqicZR2M6NhcThsdQjXou8ZbmiOzlN+SloFmJc1Z2QrBqAbabXMXFaFNPOsysultxxyblwtW+hKdwBTKd/O+CgDBEZGFxzqV3RqW3XT5u+4z3T1cKqrf963kR2OzJYl1TjKuLbZcQodw3gfZG1inrJFu19h67dP6sa/YVBrxOTPUKSmSe9yXbWf2o6TF3imfPNRatSUeTfvZ28elIgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgD7lP56x/1hv9oR7HeUz9hnki1tqTlZ1tvWsPK3lzd5Vd5R7SqeeV/rHOsU08RJo+gsItXCU1yivcjMXkCbYZndpm7bweaClUyzxLMqI+aqYmAT/lYIjTZlU1Ywhzb8l/MzYw1qU3yt7zPbbgsuf15RplscNTz8vTdYtS5Wh3auVeU247QZaVmalUJcLSQUh9uURLqI47j6x1xu9DMJTxOb681fUi5Lt2Je+5BNOsbUw2UdHB212k+za37rFg+Xf2pLtszWmh8l7s9zzlkac2faElNXNTbYX4Cao48nLEmotbpTKttc0eaThKlOHeB3E4+vfRvo3hMavpddXbbt1JW3dbey/Bbj5E9I2kuKyvD9BQdr2Xe9vfZbuveRSaKbROmd97SVN2f01aQ06tqq1nwKa1AnJ6ZbRTltFS251xuXQoncdbSUEgqSrdXvJwSKs701yDG4qpltbAKpQu4XulJ8LpNWW3dd36yzkmh+kuBwtPMaeYuFeynq2vBcbN3ve3FLuJ+tizV65dcNma0tQr2cacrr9O8HrUwwjdbmpllZaVMoGBhDwSl4DAxzuMDEfHOmeQfmxpPissT2U5NL917V322PrR9maE5+tJtF8NmNrOpFX7dz89q6rF1IjBKyidoy9bq070Lu687FYQ5XKdb04/R0uI3kpmEMLWlxQ60t7pcI6w2R1xvNGsp/LmfYbAN2VScYt8k3tfgaDSfNvyHkOJxyV3ThJpc2lsXieaa89sS87W1cnLYpdsSU9JSlUclp12rNlydqTpdJeeceUryVuOKWvsyvJzkx9lV9OamjGZPLMvw0I4ag9TVa9aSjsb1uDdtmx9dz4spaEQ0oy5ZlmGJqPE110msperFyV0lHilez23fBolr5JnXGh7MPKx0HZ/2dLguWb0r1YaXS69b1zS7DTnjBuRU6Zosy61socbmG1thxB8ppRyTwxtdN8reKyCONxMIwrJa3q3tZy3bbPbFptcJbjC0Hzbo82ngqM5TpJqN5Wu3bqutkk0n9neZf6U6X0vZy24tojZ7s1hMra7tYol8UKmNjDUi9V5eZbnm20jghC5mnl/dGBvPrOOMfIenlCnDF0aq3yTT7ns959cejyvUqYWtSb2Raa71/LzLizi3kX2gy8uHFmnEBKlYA8s8SeyObNyWMVlw+J1eKi8rak7LW+BB/ypGznI7M+1pdtoW9TkytCrMt49oLDYwhmXmUrUtlPc28l5A7EhMSvCVHVhGT37ma6DurM9LegJUdCLHKycmy6RnPTnwFiOmU/wCqj2L3Hz9if7VU/el72VbFZZEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAfcsMzjAH5dH7Qj1bymfss8iupTa2dS7lacJKk3JUQontE27mOcYi6qu59C4e30eFuS9xnhyATrTN/ahEnyyxSkj0EzY/XiNBmrarUeV37kbGik8HW7E/BkkF6WTU53VfTDWehhD83pteLlZNMWoINQYep81JPMocPBtzdmA4lSvJJb3TuhW8Nvo1m9HJ8c6lVNxkrO29bU79e4helOS1s6wChRaUotNX3PY1bzMceWo2Gbq2stWaVtv7HEiqs3QihNUq+NOZ0pk6nNNMlXMzUql1QRMLSlXNrQ2tRIQ2pG/5Qj6i9HPpGyPBfoJ146t7pt237009q2q6fO9z5d9IPo7zjMKTfQyUupXV1xTWx7NjV72I9NnnkSdpbW7aFlbotLZkv2xprxgXKhXL1aXRaNSlKJDj7i3Alx4YUolhneLmd3ASTiU5tiPRpgsW826TWnfWVNTi4OV73sttr7bXS7thE8owXpKxeFWUziowtqOpqS19W1rK6SvbZeza62Tjy2jOm2z9a1r6QaVV9qp0u3LSkKWudQRvTD8ulSFvL3eG+5kLOOAJx1R8mekHNqGeZ9LGwmpSndys7pO7dr9jPrf0dZXismyL6JUpuEYtaqextWSvbtRrEFJ+dtYjdhuXSlGpcl4TRnpGblpyWUypaXUvy62FJUE8d0tuuA448YkWi+ZYbKc1jiazaSTs0r2eyzIzpblmLzfKHh8Ok22m03a6V7rb3ERe1z8H9vqz9bZq+tnawrV1VoK5ouUOpLuqXptTlmgfwbc9Kza223nGxhPPo3g4EhSkpJKY+rsr9JXo0zScMdmaprExteT1kpNbm4rY3s4rxPk3NvRp6SMuhPB5ZOosPK9opJ6qe9RlvS6k7crGT/JO8nJVNkPWobZW11PSdTvSmU5+VsiwrReTON0lTyC25MzU4rdY53m1LQlDa1hPOKUSTupTo9O/S7kObU3Qw9bWi99k9ttqSXK+1t2ub/Qf0RZ7lCU6lFqX7TS2tWbfuSV/EyeTbE9Wdfb62jriWhmrXwxS5VVKlnC4zT5OntvpYaDhCS6tSpl5a1bqU5UAkYTlXzfpFnizuvBxjqxhe197vz+R9IaMaPyyGhNTnrSna9t2zclx/G43FqSL9SonA8WnJ/4jES//M/5fiThf8Lf7/wI2/hC1nMuP6Y6ltsgOzlLq1KeXjpSksvtg/3jn3xv8sqXj4MwLalRrrJytKaeaTpba9KUkgy1s05kgjoKZRpP+kdYgrQS6l7j56qy1q031v3s7+KigQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQB9ypAnGSegPoP+YR6t5TP2WeTHaVoa7Z2kdRLccQUmQv6ty5SR0blQfH+kc7xitiZrrPoDAyU8DSkuMY+5GVfITXSim7Q912wt0JM/bsrMoBPSWJxKT/lfiPZyrQpT5S96/kbnBrWhVj+y/Il3aDW/h4K3c8dzGfbGLHVv6241stbV9U1mESjmEMIWU/jB3B4+iPZ9G/Z8zymqm3Wt3HyWW1Y3kg46MjOIo2FaVgcJGYDcdaq5JRSyllpS90kK8oAg9hHVFCqwe4y1hKlrt2OTTanLVNKiwrO4cLHTg+noj2M4zWwtVaM6LSlxOUUJV0xVcs2Rq2UNrCnGg4PokkfqiqLSe1XKZxclZOwfW04oFmWDQA6AonP3xVOUW/VVjyEZx9qVyn6hLpm72YlitYC6eoLCDxUN75v29HbGBNa2MXYbSnPo8tlJ/aVvDeROcsZtZUDaV2raFsxab1Jqeo1hTAlKlNyywpt+szT7bTzaVDgoMtpQ0ccN9Tg/FiYYPAyo4aM5e1N+S+ZH6eKVSvUtujE9E8rJpp0u3TU9Es2lkehACf9I6Wzg99babkAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIA0WooTvjpTxEAeX7lVrKOnvKT63WwWihI1Fn5tpOPxJopmkn7Q9EDzSCp4+olzv4ncNH6vTZHh5fspeGz4GxyaOqUnpLtnWjVqpOhiTq7j1FmXFKwlJmk7rRPdzyWvvjQZnSlVwUlHetq7v5EiwdSNPELW3PZ4k7VOnET8m1OI6HWwrHYSOI++NTGSnFSXEsVKbpVHB8Gb8elBoVAdMACpOOJgDhT1BoNScD9Qpcu6vqWtrift64tToUakrzimy9SxOJoK1ObS6mcmXalZVtLEuhDaEjCEISAB6AIuRioq0VZFqTlKWtJ3fWbm8ntj08NYA0V82AI5+Xf20NTtnu2bf0x0Tv2YoFYu0zTdXnqcUpmkU1ptKVpbcxvMlbroTvowrCFAEZMbjR7BUsRjqtaorqCSXK729+wx84rzoZbSoxdtduT7FsRG5ydtlOaibY+m1koa3/G2o1AlSnPSlVQaUr2AmJdXvPFUY82R2nU6HLsVU5QfuZ65n1h2YddT0LdUofaTEre85BFWVj5jw9EAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAaKGRiAPPf8ACONM12JymVUupMtuM3nZtHq6FgcFuIbXJun070qnPpiG57T1MZrc0n8Pgdc0Lr9Lkih9iUl8V7zA/febUHJeYWy4k5beaVhTahxCknqIOCD2iNPF6skyWOKlGzJvuS52zaXtebOchWajPNi6KMfF91SQICmp5tI3nAOpDww8nq8tY/EMaDGYN5di3R/uP1oPqfDtW4rjWWMw6r/3l6s+1bE+8ybByMxYKDgVekvzyedkatMSUwkYbfYwoehSFApWO48ewiPSqE1B+tFSXJ7PBran5c0yz2p52vbh1CZ010svyyJafmGEvUmlPvKps3Wk9Cww7MlbS1pVwUylxCwClQ3knI2GBy+tj3qUZR1+EW9Vvsb2PsumT3JqmgOByuWYZthsRKnF2nOKVWFJ71rwhqzUZL2ZuEot3TtJWKJuHSHleKVUEtMaK3chxKjlylVGQfbX1cSubWkjr6BGdW0e0gTt9Ffdq/xEmwmlH+zxXo3eNpNcpxqxa7LUovzOXbezvyqNvyjuoN/3GbMo0mOdqNU1Bu6RTKMN9ZcbbLxx3BOT0DjiKoaLZ1GDqVoKnFb3OSSXg2zGx2m/oHxk44DL6LxVaWyMMNRqa8nyjJ9Ht627Le9hefR+4LtvuzKfddwV6RfamUKMs/SqY7KtzzYUUpmN19RcbQ4BvJRhJ3SCcZ3Ro6sYQm1GWsudmr9z2nO8+wmEy7M6mGo05RcbXU5xm4Nq7g3BKMnHc2m1e6V7XdZpGBFo05xqxU5Sj056pzryG2mGyta3FYSMdp6h3xTOShByZVTg6tRQXE87XKWbU6Nrna2r+oVHqCn7fph8UWwrPkuSjKlZfA//ACuqcc/qqR2RPcmwMsvwEYT9t+tLtfDuWwjWa4tYzGOUfZj6sexfN7S8Pwf7Thd/8pzpQ2pjnG6bX5qtP8OARJSLzoV/ebn2xnULzzWmrbEv5/A12Zy6DRnES+1aK72l8z06tjCAOwRJzlZrACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEARG/CotFnJm19JNoyRkyRJT1QtmpvBPQl5KZuWyf6zUyB/WiPaQUr0oVOV18vidA0CxVq1fDPilJd2x+9EOB4iIodIKn2TtsC/thXaOZ1UtBtyapc8lDdx0Pnd1NRld7JAJ4JeQrK21noJIPkrVGxng6eaZcqcnaUfZfJ8O57muRpp4meW5i5pXjJbVzXHvXBk+uzntF6XbT+ldM1c0luVmpUuos5yjyXGXB89pxB4tuJPBSDxB7RgmG1KVWjVlSqxtKO9fFc0+DNzeEoqpTd4vc/g+tcUV70iKAUdrVoxaeuFnLtK6ULaUh0P0+oMAc9JPjocRn7iOgjhwOCBvNHtIcfozmKxeF27LSi/ZnHjF/B8Ht5p25tC7eUO0Hpv8DaVel23JJMLKZGpUq4JSYBa/FQpqoNLW1juVj09MSLCaSZlhafRurN96f/Un7yWY/K/RBpTW+mVcPRw837UJ06kfW4tSoSjGV+teB0vxG7Te0vebVybWuo1ZdoErNc/K25PVlMw4oZ4I3GAllrPQpYTvkZAA6Y1mOzLHZjU1q9RyXBN7F3bF5GzjpLoRoVlrw2ieEhHESVpVY03Fdt5t1JdUW9Xi77jIyTlZeTlm5WVl0NNNNpQy02nCUJAwEgdQAAAHdGC2cllKc5OU3dva297b3t9puKWEjJ+2PDy5GRy4vKY0+06BPbGmhtwh2uVFotXrVJN3/wCGyqxxlEqH+/dScK60NqOfKWMb3JMseJqrFVV6kfZX2nz7Fw5vqRgZhjVhqLowfry3/srl2vjyREaEhCQAAAB0DqETN7SMsls+CpaQGtbV12aqzMmVNWlpytlDhTwTM1GabQPt5pl6KMqXS5hVqX2LZ8PmYels3h8koUOMpX8E38UTzDoiRnOBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAYwcsjs7P7THJzak2VSaf4TV6PS03HQm0pypU1T1eEFKe9bKX0d+/GFmNH6RgpxW/f4fyubrR3GLBZ1Rm3ZN6r7JbPfY8zja0uJC2zlKgFJPaD0RAGrM7cU5qJIFckzUUp4tL3F/wBVXR7R7Y2eW1LVHB8TU5tS1qcai4bPErfYx25tdNh3UP8AhnpNVw/T5taRXbanlqMnU0Dh5QHFt0Dgl1PlDoO8nyYysdl2HzCmo1NjW6S3r5rmns7HtNZhMbWwjerti96e5/J8mTb7EPKebNG27SWJCzblRRbuDIVPWXWnktziFdZZ47syj+k3k9qUnhENxmXYrBP9Itn2lufy7H3XJBQxVHEK9N9z3r5rrXfYyO3gTgj74wDITuN1J/FH3QPRhIHQPugDj1Sr0yiU2YrNZqMvJycoyp2am5t5LbTLYGSta1EJSkDrJAj1Jt2R45JEYvKUcurb9Ip1Q0S2IKy3Uai6FS9U1CQnMtKDoUmRCh+Gc6ueI5tP4u+eIkeXZHOo1UxKtH7PF9vJdW99RqsTmcaV40dsufBfN+S6yJ6dnJ6pzz1Uqc69MzUy8p6ZmZl0uOPOKJUpa1KJKlEkkkkkk5MStJRVluRoW3KV3vElKLn59mSR0uupST2DPH2RRVmqdNyfAuUabq1YwXFnoc+C/wCif8C9jm8NapqT3Hr4vcy8m4U8VSdOZDKcHsL70x+jGVkVJwwjm98n+PeRrTjE9JmcKC3Qj5y2+5IkwjdEMEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQB8vNsvNqamJdLra0lLjSxlK0kYKSOsEZB7jDYeO/A8tvKMbLc5sa7ad/aB+CrRS6dWVTdtOLTgPUqZ/Dyih24bXzZ/pNKHVEBzDDPC4qUOHDsO65Jj1mWV06/Fqz/AHlsfzLEVmnpqdNekVf7xBCT2K6vbiMajU6Kqp8jPr0lXoShzRbndUklCxgg4UOwxJltRELNOzPuWmJqRmmp+QmnWH5dwOMPsOlDjSxxCkqTgpUO0EGPWk1Znqbi7reTxcinrBqtrjsG0259Q77n65Wabc9UpgqNbfVMOvsNLbU0hbh8o7qXN0KJJwBnMQXPcPChjbUUo3SduH8u4k2V1+lpfprvr4/z7zKGcvKo0hfNVi3lIPUtt7KFegkRHJYupRfrw8yQUsvpYhXpVfFbfecKZ1Hm1oKZCmtoJ6FOuFWPsAEWZZg2vVj5mVDJop+vPwViCDlN9sfaK152j770yvrViqzNo2/d87IUa2GHQxItNMPKbSVsthIeX5Od9zfPHqjpuT4WhSwVKqorXlFNvjdq+zl3HPsyqz+mVKafqqTVuznzMZgMRtjXiAO+0+pj85VVzjMsp5TSdxhlCclx1RwEjtJ6PtEa7MKj1FTW9+42uVUlOq6j3R97/ketXYK2fEbKuxtptoAthLc3blqSzdWwMb0+6C/NKPfz7rg+wRKsLS6DDQp8l58TkmaYx4/MauI4Sk7di2LySLuxfMEQAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAIsvhNOxk7f2j1u7atmUkuVGx1Cj3eWkZU5SJh3LD6u5iZUUk9SZonoTGhz3COrRVaK2x2PsJxoRmXQYqWDm9k9sf3lvXevNEJagcEdnTEROoFDXpTFU+tKfSn8HMDfScfjfje/wC2N/gKvSULPevwiN5nQ6LEay3S2/M6hR4ZOcE44DpJ6AB1nujNW12Rrz0Lckps8XNs0bB9l2FfFMcka7UEzNcrMi+nDks9OOl1LKx1LQ1zSVDqUFDqiBZviI4jHylF3S2LuJLl1F0sOm97MkHWGnkFpxtKkkcUrTkH7DGsdmrMz03F3Ww6mbsq33yVpkC2ekBlZSD9nRGNLCUJ8DNhmOMpq2tft2nnn5TzSK4NFdvXU62q5SZmWl6jdMzV6K7MNqCZuSmlc8262ojC05WpBI6FIUDgjEdLyyUJZdS1XeyS8NhB8Y5yxc5TVm234liM5jOMY0UQBAGdvIWbH69pvbvsi3a1SPCKDaT38LbrC0ZQWZRSFMMq/tJky7eOsb/ZGBgofTcz1n7MfcvmZOdYn8kaPyV7Tn6q7Zb/AAiemTeUslazlSiSo9pPSYl5yFWSED0QAgBACAEAIAQAgBACAEAIAQAgBACAEAIAQAgBACAOm1CsK0NU7ErOmd/0RqpUK4aW/TqxIPDyZiWeQW3EdxKVHB6jg9IjyUI1IuMldPeXKVWpQqxqU3aUWmn1o81e0RyWO1To3tX3Tsy2ZpjWrjZo06F0i4G5YNyk3TXsrlZhb7hS2hRbwFpKshaFjHARyHSrP9HtD6so5nioU+KTd5NdUEnLyt1nd8lxf5awEMRSjv2Pqkt68dxcjTvkKL0vOSZe2gdXZKiICkrNOteX8MmUnrBedCW0nHDglYjiea/7Q+XYCo45RhJVXu1qj1I9urG8n3uJuqmRPGUtWo7cdm/8dxmtsecl9sQbOKmbhtDSFisXNIOhbdyXY74wm21A5S40FgNMEEcC2hJBHTEp0C9JuY6dZbVWKlGNam/WjBaqcX7LSu3zi7t7VfiYOJyTDYGotVXT3XMpkgYyOvriZHqNYAEZ4GALabTeyNs+bX1lJsTX7TuUrcswVKp07vFmcp7ihxcl5hGFtHtAO6rHlJVGXhcbiMHPWpStz5d6MbEYWjiFaSI39Zvg99qLdmJjZ92ip+X3XFcxI3jS0PoUMnA5+W3FJ4cMltXbHI4/7SOGw2bVqOJwOvQjJqM6c7ScU7XcZJxd96tJbC5LROpKkpQnZ8n89hi3qNyT22topU1VO5NJjXqPKZcXVLSmRUG1AdGW0gPIHWct9A6Y6XlXpi0Cz+lqUMX0VSWzVqro3t/ad4PlskYFPIcbRxC6WN4rltv3bybf4PLsRzmzLsgua3X5Q3JS7dVnWqitqaaKHpOjtbwkmFAjKSvecmFJ6fwrYPFMdfyTDRpYJVVt19t1ua4We5ric20wzNY7M+gg/VpbP+Z+14bu5kgEbciggBACAEAIAQAgBACAEAIAQAgBACAEAIAE4gCl7s1t0ZsOqJod8auWtRp1RATJ1W4ZaXdyejKFrCh9ojGq4zB0JatSpGL5OST82Y88VhqTtOaT62kVFJT8lUpNqo02cZmJd9sLYmJd1LjbiT0KSpJIUO8GMhSjJXTui9GUZq6ZvR6VCABgC2W0VqrULOtyaoVqTfN1RySW6uYQfKlkbpIx2LVjgeoceyIFp/neJwGRYmjgZuNd05tSW+Hqtpr9q62PhvJxoXo9SzPGwxGLjekpJWe6Tur36lx5vYYrOz8xVD4dMzTjynvwhcecKlKKhnJJOSY/MjFV8RicRKrXk5Tb2ybbbfNt7WfQUKNPDrUjFJLZZKy2HzGOVHLotVeo1QROtDeAOHEfST1iJNolpLitFc7p46jtS2Sj9qD3r4p8GkyxicPHE0XB7+BX8lOS89LpmZZzfQsZSr398fbGW5lgs4wFPGYSetTmrp/Brg09jXBkUnCVObjJbUb0ZxSCQOmAOkvKtimyBlGV/h30kJGeKU9Z/wBBHLvSnphDR3JHg6Ev94rppc4weyUuq69WPXd/3TPy7DOvW1n7K95RUfIhJrj5p3k8COgjpEDzerFxNnjVm4LKu12Rdnn5ilCWSucklOFQBUvAWgH5qgAo9/QY+nv9nbP81wONxUJ1ZSwyjH9G23FNy9qKexStfda62MhOmmjmDzXL41IxUa13qytbctqfNPZ2GV8jOS1QlGp6SfS4y82FtOJPBSSMgiPtyE4VYKcHdPan1Hz5Up1KNR05q0k2muTRuxUUCAEAIAQAgBACAEAIAQAgBACAEAIA2p2dk6dKOz9Qm2mGGGlOPvvOBCG0JBKlKUeCUgAkk8AATHjaim3uR5JqKu3ZEXW37yu136g1ae0l2UrimKNbTSlMT12yhLc5VupXg6umXY7FDDjg45QkgHmmfaWVa8nh8E9WG5y4y7OS6976iFZnntStJ0sM7R58X2cl5mCsyVTsw5OTii888sqeeeO+txR6SpRyVHvJiDv1ndkde13ZmRyO21xdel2vVO2dbhrjz9pXm8qWkZF90qbp1S3SplxoH+TDhSW1pGASpCsZHGYaI5tWw2OjhJv9HPYlylwt27n3M32Q46dDFKg36svJ8Ldu4lrSd4Ax1QnRrAGxUp6Xpkg/UppWGpdlTrh/opGT+qKKtWFGlKpLdFNvuLlGlOvWjShvk0l2vYYx3HUpu6alOVWonednlqU4CejeyAn0AYH2RxfHVJ5jOpKrvne/ereR3rA4anl+Gp0aS2QSt3ce97SzluuLVSW2XPnMKU0r/hJH6o/PzMqEsPjZ05b0/wCR0jFpdO5Lc9vic6MExRAHYUK4pyhu+Qd9pR8tpR4HvHYYnOhmnmbaHYh9F+koyfrU23Z9cX/dl12afFPYYmLwVPFRvufMqiUvWhPo3nJpTRxxS6g/rEfROW+lrQrH0VKrWdGXGM4v3xUk/wAbDRzy7FwdrX7Dj1S+6ew2U09KnnMeSSkhI+/iY0ukPpmyDA0JQytOvV4Npxgut3tKXYkr80XqGV16kr1Ni8ylJycmZ+YVNTbpWtRySY+ac2zbH53j54zGTc6k3tfuSW5JbklsSN9TpU6MFCC2I2o1pWDAI7nSZImJytVEnh4S2wj0ISc+0x9PehDCKnlOKr/alBeCb+KNZn71I0KfVJ+L/kZK7Ol0uz9HmrUmnN5UgQ7LZPHmlnin7FftR9X6JYyVXDSw0n7G1dj4dz95w3TbL40MXDFwWyex9q4969xcoRLyECAEAIAQAgBACAEAIAQAgBACAEADwgCOPlntt+bamHNjrTGrKbBaQ7fs7LucVBQC2qdkdAwUuOjryhB4bwjn2mOdSi3l9F/vv3R+L7lzIjpBmV39Fpv975fMjn9Mc8IqIArDZ2qU5RtoSw6rT1EPy960lbRT0g+GNe+MzLnKOYUZLhOPvRfwrccXTa36y95O5rTrbpHs82XO6ma16hUu2KBJvbjtSq0xuIKyTutoAypxxWDhCApRwcDgY79ToVa9XUpq7Ol1a9KhT16jsjHE8uPyZYUQNoObOD0psypkHvH/ACeM38j5h9jzRgflrLvt+T+R0movLacnDWbIqVKomvU67NTLHNto/gfU072VDPEsYHDMa/NshzfEZbVpUYXlJWW1c1fjyNpkukOTYXNaVavUtGLu9j4J24cyzfyrWw0CD8bc305/2Yn/ANzHPVoHpSnfoF/nh8zp31j6J/r3/kn/AAlv5TlHdj6Xnahu6mzPMuz7jkuRb05xQTno5rhHyxpN/s5+lfGZ3XrYTAqVOU5OL6akrpybWxzT3PiS2fpc0EnSpf7y7qKT9SpvX/Kcj5SbY8+s6a/w7O/uo0H9Gr0x/wCHr/Wo/wAZa+tnQX7y/wDJP+EfKTbHn1nTX+HZ391D+jV6Y/8AD1/rUf4x9bOgv3l/5J/wj5SbY8+s6a/w7O/uof0avTH/AIev9aj/ABj62dBfvL/yT/hNPlJdjz6zpr/Ds7+6j3+jV6Y/8PX+tR/jH1s6C/ef/ZP+EfKS7Hn1nTX+HZ391D+jV6Y/8PX+tR/jH1s6C/ef/ZP+E1+Um2PPrOmv8Ozv7qPP6NXpj/w9f61H+MfWzoL95f8Akn/CPlJtjz6zpr/Ds7+6h/Rq9Mf+Hr/Wo/xj62dBfvL/AMk/4QOUl2O8jOp010//AE7O/uof0avTJb/h6/1qP8Z4/SzoLb+0v/JP+E7bTTlN9iy26E9LVfVWabmHp5x1SRbc8rgcAcQ13R9F+jv0Sab6O6P/AEfGYZRqObk1rwey0Utqk1w5mvzr0paF4zFKVHENxUUvYn13/ulzNHeWE2BbRvLxjW9aJxiVclHGnVi1KgricFPAM56RHVtH9EdIsvzDpK1K0Wmvaj1W3Mg+k2mujOZ5Z0VGteakmvVkup71yZdX5cfkzP8A7gZ3/BdU/wDTxN/yPmH2PNHPvyzl32/J/I0+XI5Mwf8AzAzv+C6p/wCnh+R8w+x5oflrLvt+T+ReLZq22dlza8lpx7Z61hp1wPU5AXUKaG3ZaclkE4C1y76UOBBPDfAKckDOYxcRg8ThbdLG1zKw2Ow2KbVOV7eJdXpjGMsQAgBACAEAIAQAgB17oHE9EAYn6/crVotpRc81ZmntrTt5zki6pqcnZWdRLSKHEnCkIdKVKewcglKd3I4KMRDMdMcBg6zpUYuo1sbTsr9u2/dsIvjdKMJhqjhSi5tdy8dt/CxTVgctHpnVqiiS1K0brNFYWrCp6l1BueS33qbKW1kf1cnujFw2nOEnJKvScVzTUvLYzHoaXUJztVpOK5p3+TL76mbZWkNqbLdw7UNkXbIV6l0inKVJCWd/lZ5WEMSq0HCm1qdWgFCgCBk4xxiR185wUMrnjqU1KMVstz4J8ne2xm9qZphfoMsTSkpJLz4LmiDe57mr963LUbyuyqOTtUq087OVGcdVlTz7iytaz6VE+gcI4pVq1K9WVSo7ybu31s55Ocqk3OW97WcEkDpMUFIgC7GwhYz2o22XppazTJWhV3yk1MADoZlleErJ7t1oxtcioPE5zQh+0n3La/cZmXUnVx9KP7S8tvwKl+FQav39Q9crAsVufcRSWbPM9SpfP4NM5MTb7b8wU9BWG2G0AnoBPUTn6ZyKMfo8pcW/gSLPHKWLjB7kr+bIwLO0jve+rfZut2/FS4nCooQ6t5aiAopySFAccGNw52djXQoOSudr/F2u76zP8j3/AJ486Qr+j9Zo5s8Xc2guL1OSEpGSpSXgAO0nf4R70g6DrKQuCkUugOKY+OQTrqDgtyDL7mD2b2+E+2PU2+BbcIp+0U87WKoHCliuTqk9SlPrSfu3jHpbZ8+OK1+eZv1lfvj3YB44rX55m/WV++GwDxxWvzzN+sr98NgHjitfnmb9ZX74bAPHFa/PM36yv3w2AeOK1+eZv1lfvhsA8cVr88zfrK/fDYB44rX55m/WV++FwPHFa/PM36yv3wuB44rX55m/WV++FwPHFa/PM36yv3wuDJHkgtX9UtOOUy0UnLFuadbdqt/SNHqMv4QpSJuRm1hiZZWCeKS2pR7ihJ6QIw8wjGeCqa3BN+BlYFuOLg1vueqJHzfnZ7D2xBibGsAIAQAgBACAEAIAtPtz3pXdPtke/rptqYWxPNUFTDEw2cKa55xDClg9RCXFEHq6Y1Gf16mGyavUg7NR2d7S+Jq86rToZXVnDel79hDklCUp3UpAA4AdgHVHEjk+7YCkEYxAHzUDOztAnLaFUmWpKeW05NS7T6ktuuNElpa0A4WUlRxkHGTjGYqU5qDinsdrrnbd4FynVnTuovY9/WW2npR+mzbkjMpwtpWDjoPf6D/rFJnRkpK6OC1OKnJtbUsfwbCt15f0l/QHo4ZP2dsXHBQgnLe9y6uffwKjlssvTCw1LsrcV9FCST7ItlMpJIy45I6q6N6Q69VXWPXy+qfbgpdBXKW8iphYU/MTKglxaQlKsBDSVJJOOLoiU6J18vwmOniMVUULK0b32t7+HBe82+SYrBYfFOrXmlZbO1/jzLX/AAou7dL9X5nSbVfSi+6TcEoxTJ+nVCapU4l0S6kzDbjaXMcW8h1WN4DODjoMd20ZzLA42nONCrGTunZPb4b/ACNnmmIw2KrwnRmpbHufYYO6LHOl9Fx5qoH+8VEjl7TLdP2EdvdV0Uez6K9X65Mc2wyMYSMqcUehCR1qP/vhHiTbK5SjFXZj9qBqvc+oMwpqZfVK0/P4Knsr8nHas/jq9PDsEXkkjEnUcimQkDo6o9LZrACAEAIAQAgBACAEAIAQAgDKTkSra/hXysehVN5oqEvepnlDHQJaTmX8/YWwYw8xergaj6jLwMb4uC/G49SzIIbAPTgRB2TU+oAQAgBACAEAIAQBTGtWmlP1k0kuTSupvBtqv0Z+TDyhwaWpPkOf8KwhX2RjY3Cxx2DqYeW6aa+XmYuMw0cXhZ0X/eTRCjdlqXFYd01Gy7vpjklVKVOOStQlXBgtuoOFDvHWD1gg9ccIrUauHqypVVaUXZrrOQ1aVSjUdOatJbGcDq4RbLZwatVzSGTNzEhMOS6Bl12XTvlsdpQPKIHWU5I7IuU6aqOye3r495XGOtxKM1WqUszIS1w0V9p8zrARKONKCkurUoBBBHSPKz9kXKFHXxGpPYlv7FvMnDqW1M3rGsJCqeyZtahLNpwnBwp5X4yieoE5Oek5i1UqOrUc3xPatZxdlvK1k5CVkWQzJy6GkjqQMff2xQYkpOT2m8Bjo4fbApubM9ISVSlXJGoybMww8jdeYmGgtDiexSVAgj0xVCc6VRTg2pLc1sa7Gtp6m4u6LM6m6M0LT2nM1CxqcmUpfPFC5Bskol1rUVeRk8EEk+T0A8Bw4DuWgel+IzZvAY6WtVirxlxklvT/AGlz4rftW2R5XjpVv0NTfwfMxE1tv1y87uckZOY3qdTVqalkp6FrHBbneSeA7h3mOpRVkZtWetIo7GIqLQgBACAEAIAQAgBACAEAIAQAgDOT4OLbf8IOVusKbUzvJpFv3BUCfolNNcaB+94ffGtzd2wEu73mxytf77HvPSwngB6IhpLxACAEAIAQAgBACABGYAxk28eT4o+0438Y+nk1K0q9pWXDa1zHky1XaSMJbeIBKHEjgl3B4eSoEAFMW0g0cp5sumotRqrwl1Pk+T7mRzO8ijmK6alsqLwfb8GRsan6R6naK11dt6rWPUaFNtqIAn2Clt0fSbdGUOJ7ClREcuxeCxeAqamIg4vrWzue59xz7EYXEYSepWi4vr+e5lMKmpZLanxMICUcVLCxhPpOYxLplhbdxaifkJeqaoydvUvIpaplc8y2OCW1kbq90dSSolYHaTGzdXWwUqj9rZDu3+5WM6KcKTb3l0Zqp0mjIabm5tpgL8hhsnirHUlI4q+wGMCFOdT2UYVnLajfZfDyQoIUkHoC0FJ+48YpaszxqxuR4eCALebVVyNWloDctcUsB1EmlErn8stxKUY+05+yJjoDTq1NK8NqcNZvs1Xf4Gbl2ssXFrhf3EdQGOsnvMfS5vxACAEAIAQAgBACAEAIAQAgBACAJJvgsVs+N+UhrlwKb3hRdJ6q5vH8VT03Isj2KUI0+dythEub+DNrk8dbF35L5HoWiJkrEAIAQAgBACAEAIAQAIzAHHqdJplbklU2s02WnJZXzpebl0utn0pWCPZHkoxnHVkrrk9pTKEJxtJXRi3yiXJy0Hac0xk5nRehUShXfbrrjtNaZlG5SWqbTgHOSzqm0gJVlKVIcUCEqBBwFkiM6QaPUszwyeHio1I3tsST5p2XgzR5rk1LFUU6KUZR3cE+p/AijqOzDtP2htBjSlzRKsfwwAkJOQozqEfhH5pb62cuBe5zaky769/e3dxlw5ATEEjkmZOMcLOk1Jyu9262zq27bd5DpYHFSn0Li1L8d3BlQT+k1x6Q3ZUrW1Cp0w1dMk+ZetOTyAHUOD8RIGQhrrSEeSUkHJzmNVjVWpVpUKkdTVdtXl28318eBqa8KtGo6c1qtbLfjf2n2AB0RhFg1yO2ANuZmpeTYXMzUw202hJUtx1YSlIAySSegARVCE6s1CCvJ7EltbfUlvPUrmG+15tL0XWG1qla9kLUukUusSrSJziPDlkOKU4AeIbBRhOeJ4q4ZEfQegeidTIcO8VilavUVrfYjy7W9suWxEgwOG6Ck5S9p+SMcx0R0MyxACAEAIAEgDJMAaJWlY3kqBHaDmPWrA1J4ZjwHyhxKwChQIPWDmAPqAEAIAQAgAeAMASzfBJ7bM3tJ6y3epH8wsGmSaVY6C/UVLI+6XjRZ810MF1s3WSp9NJrkTrRGCTCAEAIAQAgBACAEAIAQAgBiAZinp/p9I3HywWpd/1V4LNsaSW0mlSqhwQ/NmcaW+O8NNutg9QfX2mNfCClms5PhGPnf5GmpU1LOJyfCK82y6m0nsY6GbUcs29qHQHZery7PNSdw0laWpxpHUhRIKXUD6CwQOopixmmR5fm6vXj6y3SWx/zXUy7mGT4PMleqrS5rY/595indPIo3W3PKVY+0BTXZYq8hNZobrboHYSytST9wiI1tBKil+irq37UXfyuRmrohV1v0dVNda+TOVZ3IpVIziHNQ9f5cS4Pls0GhKLih2Bb6wB6d0+iKqGgjuumr7P2Y/N/Aqo6Iyv+lq+C+ZcbXbk/NnrSPYh1coentk+E1md02q6TXqw4JmdUUSq3QEqICWgSgcG0pz15ibZBkuXZPi6c6EfWuvWe17+D4dxuVkuBwODqdFH1rPa9r3HmDmJwy8vU6arglU62sf8ACpwfqVHUeJH07xOGDmB4IAQAgBAG9Tn5aWqUtNTjYWy3MNrdQR0pCgSPuBg9x6rJnoO1j5CTYd5SfZ1snaS2X2aVY1erNqyLrszRGS1T6isMoSsPNtD8G8laVJU4lJyQd5JPlRpoYutQm4y2o3c8JRxEFKOw63Yr+Cz7P+kl3t6gbXNzsXuiQcDsrbMu+4ZBxQ4hUytSWy4gfkwkA44qIyD7Vx85rVjsPKWX04O89pD9yqdc0Yr3KCanzGz7QqVTrRl7iXK0eVokqhmUShoBBLSEAJSklOQAMRssOpKitbeavEuLrPV3GP0XiwIAQAgBAA9EATUfBF7a3Lc15vRTf8pUrepyV9yWp14j/OmI7n8rumu34EgyNL132Eyg6OMR0kAgBACAEAIAQAgBACAEAIAQDMa7XmPEPK4XlSVndFy7P9FnWh9NUlVpllWO3AfH3xgRermklzgvJv5mrinHN5LnBPwb+ZkpGebQQAgDp9Qbfbu2w67ajqN5NUok5JqSR0h2XW3j/NFdOWrUUuTLdWGvTceZ47r3pjlHvGqUt1OFMTi21A9oPvjoTd3cgMPZR1keFQgBACAEACMwBl/ydvLX7YXJzUtdjafT8hcdnuvl42tcSVLYZWelTKkkKaJ690gHAznAxjVsLTrO72MyqGLqUNi2ouztj/CYNt7ak05nNLLNt+haeUyqS6peqTFvqdXNzDShhTYdcUShJGQd3GQcHI4RbpYClB3e0u1cfVqKyViOhxbjzqn33VLWtRUtazkqJOSSesxmmAaQAgBACAEAD0GAJ6vgm9s+AbGWpt2qRg1TVRLKVEdKZemSw/W8fviL57L/AHiK6viyS5JH9DKXX8ESpRozdgnEAURqxtLbPOhCf+enXK0rVVjIZr1wS8s6R3NKXzh+xMWK2Jw2H/rZqPa0jc5Vo3pFnr/+m4SrW64QlJeKVvMs7VuWO5MqjPql5rbCttxSTgmTkp59P6TcuQYwpZ3lUX/Wrz+RMKPof9JdeOtHLKi7XTXk5o5Fvcr3yaVzPJl6ftjWm0pZwPGImpQfap5lIH2mPYZzlU91Zd918C1ifRL6SsKryyyo/wB3Ul5Rk2Xu031g0o1ipRrekup1vXRJpTvLmLerTE4lA7Vc0tRT9uIz6VWlXV6clJdTv7iFZjlObZPV6LH4edGXKcZQfdrJX7io856IuGAIAQBpziPpCFgceq1anUWlzNaqk2GZWSlnJiaeIJDbTaCtasDicJSTwyeELAji1T+FO8mjp9OuSNvUnUe5ik+RMSltMyLLg6lJM4+2vB6eKBFxU3LcZjwFeP8AWNRfW/kWqrXwwfZDlHFIouy1fE0AfJMzcdPaJ+xKVx70UuR59EXGrHwZaqe+EpaO3ztV0rbVtnZtr0tJ2NYE9b1w0Jy52FvT8vOzLbrLyXQyEoDTqDkFJzvcCI12Ih0WZ0W17SlHv3mnxeGjQzeg+kVpqUb2ey1mvEufSvhheydMLAq+ylekuOtTF0SDh/zIRGx6KS4G4WEi91WPgy5Wm/wrXk4b2nG5C4LH1NoS3CBzniWUn0Jz2+DzO+R6En0R46clvPVgasvYkpPt/kSJaP6uWDrvpbb+s+l9aVULcuilNVKizzks4wp6XcGUqLbgC0HpBSoAgiKGjElCdObjLetjKmYU2qZayoY51OfRkQKZJtbDyI7alnqsDa11Fs1Te54tvKoy4T2BEy4gexMT+jLXpRlzS9xApRcJyjyb95bCLhSIAQAgBACAEAIAQAgBACAEAIAHoMAeir4MFbiaFyXbFWUndNZ1Jr03nHzghUvLg/8AckREs7d8bbkkSnJk1hO9khNUrFJodNfrNaqktJycq0p2am5t9LTTLaRkrWtRCUpA6SSBGnlKMItydkjd0aNbE1o0qMHKcmkoxTbbe5JK7bfJGM+3tthaYy+xxqI5oFtR2sxeKrcW3QHqFc8s7ONvLdbQSylCyrf3FLwUjeT84cQDGnzLM8PTwFSVGrHWtss1fetx1n0eejrSDFab4Clm2WVlhnU9fpKU1CyjJrWbilbWSvfY9z3nnM1Ktrafar85V560nZ5x55TjtWlFmoPPknitbiyVlR/pJzEMorLKnrSnd9ez8eJ9fZlPTvArosPhIwpR2LokqisvC3ZqKxQU9Uta5Z0ibarzKh0oVSVpx/3cZyw+Aa2KPj/MiNXONMYy9edWP/p2/wDgblNntdJx0Ip1Or0yongnxOtQ/wDDimeHy9L1kl3/AMy7hs300lL9G6s//Tv/APAu7s7Da4sG+JHUK1VzVmz9PeD0vcMrOmSm2iOOQhtRLg4cUKASocDwOIwKtTBYWXSYeo1NbrbfP/uTDLsBpPpFB4PPMFTnhp7JdIlF2fKHrbeWyPU0eqK3Z16et+nz848FvP09h15YAG8tTSVKOBwGSScDgI6dFuUU+pH5x4mnGjiqlOO6MpJdik0vcc3nEfSEe2LI5xH0hCwIrP49W179fdb/ALqW/dREPyjjftvy+R3f81NHvu0fF/M4Ny7a21zXLcqNDd10q7iZ2nvy6m3G5cJUHG1IwSGuAO9FUcyxqkvXfl8imWimj6i9XDxvw2vf4kPd9W7P6X3RM6fXu0zKVKnJbRMS5dS4kAoSpJChkKBSQc98SulVhiKanDcyG4mlPC1nRq7JI6ZRtiZ4uMyC+9TTZ/WIuq6Me1GW1pH0yLdlm3WpZmSbQ+ncfS2hCUup7FAfOHcY8cVJpvbbd1FEqOGk03GOzqXyPlKbVlzvNy9OQe1LTY/0j31uZWo0VuSO1s6nPXrdMhZVoNtTdSqMwGZKUZWlPOLwTjJwBwBOSQOEW6k40oOcnZIvUYOvWVKntb2JEruzTtM7WWiWgFnaRSOsFSprVuUBiRbkJPwdbTAQD5CVFs7wGenJiL18zxMq0nTm9Xh2eBMKGiuTSoxeIoRdRr1nd7X4lcHbr2vkjeGvdbBHR+Cl/wB1Fr8o437b8vkXXopo792j4v5kP/KEzFZqW1td9yXBOrmp6rVN2dnJpwAKedcWXFLISAMkqzwA6Y69kleWJyihUlvcVftWz4HzRpVg6eX6SYvD01aMajsuSdmveWYjaGgEAIAQAgBACAEAIAQAgBACAEACeyAJaeTB2mNofR3Yls6zNPtVqlSaYTPTbMlKts7iVPTjy1HKmyeJ49Mcp0kzDFQzqrCE2krLhyR9F6D6N5NitFsPXxFFSnPWbbv9p248ivdqPav2jdTNFqlZF/au1Wp0mdmJbwyQmEshDwS6FpCtxAJAUkHGcHAzETzTG4qtgZRnNtNrlz7Duvok0eyXBadUK9ChGM4xqWe26eo1dXe+z3mPdnWxSZ/S6uXjPsc7OMz77EqonCWENLQkboHSo5JJOenAwBGlhhqLwMqjW07RmOk2cx9JOHyqFTVoereKS9a8ZPa2m+Cslax3dl2HIT9seOnEtLdWlShzre90dXdFijQTp6xL8fmVSniuiW4pm65BqmT6RJKUhDqN7mws4Sc4OO6MerCMJbDc4KvVq0mpPcdYVLIwp1R9KotGbd8z4WhIaWMcCk5j3eeLZJGb9L25dreXpstLS+u9ZQ21LtoQhLUvgJCQAP5LsETuGY43VXrvy+R8AYrRXR6WKqN4ePtS4vm+s5H8era9+vut/wB1Lfuo9/KON+2/L5Fn81NHvu0fF/Mfx6tr36+63/dS37qH5Rxv235fIfmpo992j4v5lp4wiQmiuiAMAeUgt16Q2k/D2GSTVbfk3khI+cpHONH9gRK8mlrYK3Jv5nO9J4aua3X96Kfhs+BZiQtCbf8AKnnQ0PohOVe4RtLmjVKTW07OWtWkMHK5bnD2ukmPGy4qUDlIpVPaGG5FkehAjy7KtSPIutsV0NmobR9CWiXR/wAjZm5rggcChhYB+9QjAzSergpddvebjIYKWaQ2brvyM8kDAxEROhBXEYgCPPlLKP4v2g1T4TgTcg2vOOn8Gj/UGOu6J1OkyKn1OS/9z+Z8wekel0OmWI2e0oS8YpfAx8iRkGEAIAQAgBACAEAIAQAgBACAEAaHvMD1byUvZFpQo+zDYclu4P8ABiXcUO9eXP8A+o4pnk+kznES/aflsPrLQ6n0OiuCh/8Ari/Hb8Tuta/+j+Z/6wz+3Edx/wDY5dqOz+i7/wAZUf3Kn/SUdYf/AECV3/8Acz3/AIyIx6f/AAyXeS/Mv/vHQ7Yf/wA5FV6d/wCwbX9kv9mLND+pXYTvNP8AiL7UW/vr+ey/9if2owa+9Eny72Zdp0sWDYny5/Jq/qmC3jijIiQ/mjX9kn9US6Pso+IMR/aZ/vS95vRUWhACAEAYnco7Q20XLalyhkbztOmpRbm7x8hxCwM/9oqJDkcnqTj1pkP0np/paVRcmvNP4mN4GBiN2Rc1gBAF9OT4pfhetFRqhRwkrdewewuOtp/UDGpzmVsKlzfzJBo3DWx8pcovzaRmYOjjEZJwD0dEAR58pTq3pLeWsEvQLTuNc1VqGhclXcSxEu26knCEOk4WpOd1QAwCMZJzjqmiFLFUMtca0bRk9aO3bZ81w3XXafN3pOxOXYzSJTw09acY6k1bYnFu1nx2Oz5NbzHYTssRkTLf6Y98S31eZzgeGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5geGS3nLf6Y98Lx5g0M/Sg621P1hmVaccShyYUkrDSSQCspRlSgkEqwBk44RTKSjFtbXy5ldOCnNRb1U3a/Lr2bdm8l700p9BpOnVApVq1NE7TJaiSrVOnWlZTMMJZQEODuUkBX2xwjFzqVcXUnUVpOTbXJt7j7Hyylh6GW0adCWtCMIqL5pJWffvOu1qBNgTGPOGf241WP/scu1HUPRd/4yo/uVP8ApKIsKoSZ0VuKkKmWxMtVSacWwVYWEOONqQrHSQR0HuI6jGLTnB5bJJ7dpNs0wuJh6XMLWcHqS1bSs7O0JJ7d2xlY6df7Btf2S/1Rbof1K7CaZp/xF9qLf31/PZf+xP7UYNfeiT5d7Mu06WLBsT5c/k1f1TBbxxRkRIfzRr+yT+qJdH2UfEGI/tM/3pe83oqLQgDYnalI05sOz040ykngXXAnP3x6ot7kUylGKu2dc7f1oM536+wSPoBSv1CK1SqPgWvpNH7RYDb8rFvXLp3RJ+lTvOuyNbIUObUnCHWVA8SO1CY2+TRnCvJPiviRzSOdKrhoOL3P3oxVCgRkRISIjeAj2wG9wyBHgMluTfpyXKpd1aI+YxJywPpU6s/siNHnkmowj2/AlWjEbyqy7F7zKvPDJiPkuOJV61JUKSXU593cbb4gjpKuoAdZMVRi5OxROpGnHWfAj71o5PyqXzqbWr4sm/ZCRk6zUnp3wCoy7q1y63VlakBaMhad5RIJAODjqzHQMBpNDD4WNKtTbcUldNbbdpw/OfR3Wx2ZVcThqyjGcnK0k2027tXW9X3bilfk0tQ/rNt/1OZ90Zn514T9XLyNZ9WOY/eIeEjT5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JD5NLUP6zbf9TmfdD868J+rl5D6scx+8Q8JG7J8mjfSplCZ3VSitslQ51bEg+pYT1lIOAT6SBHktK8Nq+rSlfraKo+jHHOS18TC3VGVyQXRNi3KDpvRrDt0rQzQKWxItsvL3l7jaAgLJ684zntOI55jJ1K2KnVnvk2/E7nlVKhhcBSw1LdTio7d9kreZ0N93JdE9z1BrlPalpdasc0Gs7wByCFnp6OkYil4fD1qThPamZmCzvNclzGGKwstSpDc7X6mnfY01sa5FHvUljmlKZbVzgHkZV7IwMRk+GVFuknrcNp0zI/TBpBLOKEczqQWHcrTcadmovjsbex2vbhc7a3NRH6DRzRJ1DqUgEJKUAnB6uPQY0KqTorUmrM76sNhM3tjMJUjUi+MXdeVzpq7WDW57whLW42hO62nOTjOcnvixUm5u5t8NRWHp6t7vicMrA6YtmRc3JOSnKtMop9Ol1PPOq3UIQMkkxdpUqlaVoK5rc1znLMjw7r46qqcVze1vlGO+T6kjIWVbU0whpeMpQkHHcIlSVlY+Mas1UrSkuLb8Xc3I9KBAHGn6TTKogN1GnsvpHzQ80FY9GeiPVKUdzKZQhNWkrnWPae2e8cmiITn8mtaf1GK+mqLiWXhaD/ALpwqlo9p/WJVUjVaCJlheN5l9ZWk47lZEVRxFaLumUSwOGmrSV0U5NbIezxOKK3dNpUE/O5txaM/okRfWY41LZMxnkuWPfTXmbCdjLZvBz8XDZ7jPTH/nj38p477fuKPyHln6vzfzObJbJmzpIOBxrSWmLIP+/51z9pZjx5jjZb5suLJ8sX/lLz+ZWdtWdaVmyaqfaNsyFMYUreW1ISaWgo9p3QMnvMYtSrUqu85N9pnUqNGhHVpxSXUrHMqE/KU2Tcnp18NtNJ3lrV1RSk5OyK5SjCN3uLVXddU1dNQ51e8iXaJ8HZPV/SP9I+zojPpU9SPWaevXdaXUdVw6OMXCxdDh3+2B7dDh3+2Auhw7/bAXQ4d/tgLocO/wBsBdDh3+2Auhw7/bAXQ4d/tgLocO/2wF0OHf7YC6HDv9sBdDh3+2Auhw7/AGwF0OHf7YC6GQO2B5dHJpNWnqJUG6lTXdx1s9Y4KHWD2gxTKKkrMrhUdOWtEujb9ao940nnhLtqOAJiWdSFbiu8Hq7D1xgThKnKzNvTqQxEL+RszendoTiipVHDZPWwtSP1HHsj1Vqi4iWGoS3xODMaQ2o/wK5sDs50Ee1MeTn0itJJ9qLuF6fAz18LVnTfOMnF+TRsfEnaGc7819ik/wDlixLD4WX/AJa8CRUtLtL6MdWOYVrdcr+9M3pfRyyGCFOSLzvaHHTg/cBHioYaO6mvD5nlbSvSnExtVx9Zr99r/psd9SbdolDRzdJpbMuCMEtt8T9p4xeu7WWw0M5Tq1HUm3KT4ttvxd2c0EDqP3R4eGuR3/dADI7/ALoAtR8ad6efseqpjN+j0vwzE6WY+NO9PP2PVUw+j0vwx0sx8ad6efseqph9HpfhjpZj40708/Y9VTD6PS/DHSzHxp3p5+x6qmH0el+GOlmPjTvTz9j1VMPo9L8MdLMfGnenn7HqqYfR6X4Y6WZRmqmrF8POykiqpt8yUFZbEskAqzjJ7eEXaVGnG5g4ytU1kr7CkPjGuzzpn1ZMXujgYfSy5j4xrs86Z9WTDo4DpZcx8Y12edM+rJh0cB0suY+Ma7POmfVkw6OA6WXMfGNdnnTPqyYdHAdLLmPjGuzzpn1ZMOjgOllzHxjXZ50z6smHRwHSy5j4xrs86Z9WTDo4DpZcx8Y12edM+rJh0cB0suY+Ma7POmfVkw6OA6WXMfGNdnnTPqyYdHAdLLmPjGuzzpn1ZMOjgOllzHxjXZ50z6smHRwHSy5j4xrs86Z9WTDo4DpZcx8Y12edM+rJh0cB0suY+Ma7POmfVkw6OA6WXMfGNdnnTPqyYdHAdLLmPjGuzzpn1ZMOjgOllzO4sXVW95K55VMtUm0B1e46BLpwtOCcH7YpnRg4u5ew9apGqrMuUNVL1x/P2fVUxjfR6X4ZtOlmPjTvTz9j1VMPo9L8MdLMfGnenn7HqqYfR6X4Y6WY+NO9PP2PVUw+j0vwx0sx8ad6efseqph9HpfhjpZj40708/Y9VTD6PS/DHSzHxp3p5+x6qmH0el+GOlmPjTvTz9j1VMPo9L8MdLM6fwBv8qv2e6L5Y1mPAG/yq/Z7oDWY8Ab/ACq/Z7oDWY8Ab/Kr9nugNZjwBv8AKr9nugNZjwBv8qv2e6A1mPAG/wAqv2e6A1mUdqbTGFVCUBcX/IK6x9L0RdgvVuYOLb112FM+KZb6a/Z7orMS48Uy301+z3QFx4plvpr9nugLjxTLfTX7PdAXHimW+mv2e6AuPFMt9Nfs90BceKZb6a/Z7oC48Uy301+z3QFx4plvpr9nugLjxTLfTX7PdAXHimW+mv2e6AuPFMt9Nfs90BceKZb6a/Z7oC48Uy301+z3QFx4plvpr9nugLjxTLfTX7PdAXHimW+mv2e6AuPFMt9Nfs90Bc7G0qWwi5ZIhxf8t2jsPdFMvZZdot9Ki43gDY/3q/Z7osm01mPAG/yq/Z7oDWY8Ab/Kr9nugNZjwBv8qv2e6A1mPAG/yq/Z7oDWY8Ab/Kr9nugNZjwBv8qv2e6A1mPAG/yq/Z7oDWZ//9k=', //鏁版嵁base64 + cordId: '511322199705264526', //韬唤璇佸彿鐮� + name: '寮犱笁', //濮撳悕 + gender: 2 //鎬у埆 + } + this.$api.IaiAddPersoBase64(obj).then(res => { + console.log(res, '----------------'); + }) + }, tologin() { - if(this.isLogin){ + if (this.isLogin) { uni.navigateTo({ url: '/pages/mine/mine' }) - }else{ + } else { uni.navigateTo({ url: '/pages/login/index' }) @@ -249,7 +262,7 @@ url: '/pages/release/index' }) }, - toEnterprise(){ + toEnterprise() { uni.navigateTo({ url: '/pages/enterprise/index' }) diff --git a/src/pages/mine/mine.vue b/src/pages/mine/mine.vue index 2489f02..c86ad67 100644 --- a/src/pages/mine/mine.vue +++ b/src/pages/mine/mine.vue @@ -7,21 +7,21 @@ </button> </view> - <fui-list> - <fui-list-cell arrow> + <fui-list :topBorder='false'> + <fui-list-cell arrow :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']"> <view class="fui-list__item"> <text>鏄电О</text> <text class="fui-text__explain">{{userInfo.nickname}}</text> <!-- <input type="nickname" class="fui-text__explain weui-input" placeholder="璇疯緭鍏ユ樀绉�" /> --> </view> </fui-list-cell> - <fui-list-cell arrow> + <fui-list-cell arrow :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']"> <view class="fui-list__item"> <text>鎵嬫満鍙�</text> <text class="fui-text__explain">{{userInfo.phone}}</text> </view> </fui-list-cell> - <fui-list-cell arrow @click="goApply"> + <fui-list-cell arrow @click="goApply" :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']"> <text>鐢宠鎺ュ崟</text> </fui-list-cell> </fui-list> @@ -50,7 +50,7 @@ onLoad(() => { // getUser() }) - onShow(()=>{ + onShow(() => { getUser() }) let avatarUrlImg = ref('') diff --git a/src/pages/order/detail.vue b/src/pages/order/detail.vue index 2056ec2..ecb2111 100644 --- a/src/pages/order/detail.vue +++ b/src/pages/order/detail.vue @@ -14,7 +14,7 @@ 鎷泏{detailItem.worderCounted}}/{{detailItem.worderCount}}浜� </text> </view> - <view class="c-p-18 chuany-font44 chuany-text-bold"> + <view class="c-p-18 chuany-font34"> {{detailItem.orderName}} </view> <!-- <view class="chuany-flex c-p-l-18"> diff --git a/src/pages/order/myorder.vue b/src/pages/order/myorder.vue new file mode 100644 index 0000000..d675ddc --- /dev/null +++ b/src/pages/order/myorder.vue @@ -0,0 +1,183 @@ +<template> + <view> + <up-sticky bgColor="#fff"> + <view class="coreshop-ff content c-p-10"> + <up-search placeholder="璇风偣鍑婚�夋嫨鏃ユ湡" @clear='clear' @clickIcon='clickTime' @custom='search' + v-model="workTime" search-icon="calendar" @search='search'></up-search> + </view> + <!-- <up-subsection :list="list" :current="current4" activeColor="#f9ae3d" + @change="sectionChange"></up-subsection> --> + </up-sticky> + <view class="full-page"> + <view class="" v-if="listO.orderList&&listO.orderList.length>0"> + <view class="listrecord c-p-20" v-for="(item,index) in listO.orderList" :key="item.id" + @click="pageToDetail(item)"> + <view class="coreshop-ff chuany-bradius20"> + <view class="c-p-26"> + <view class="chuany-flex chuany-justify-between"> + <text class="chuany-font34 chuany-text-bold"> + {{item.orderName}} + </text> + <view class="chuany-flex chuany-justify-between"> + <!-- 鎷涘伐浜烘暟锛歿{item.worderCount}}浜� --> + <!-- <text class="c-p-r-20"> + + </text> --> + <up-tag class='c-m-r-10' text="鍘绘墦鍗�" shape="circle" type="success" + size='mini'></up-tag> + </view> + </view> + <view class="c-p-t-20"> + {{$util.formatDate(item.wordStartTime,true)}}鑷� + {{$util.formatDate(item.wordEndTime,true)}} + + </view> + <view class="chuany-flex chuany-justify-between c-p-t-20"> + <view class="chuany-width50"> + <text> + 鏂瑰紡锛歿{item.workerType==0?'璁℃椂':'璁′欢'}} + </text> + </view> + <view class="chuany-width50"> + 宸ヤ环锛歿{item.workPrice}}{{item.workerType==0?'鍏�/灏忔椂':'鍏�/浠�'}} + <text></text> + </view> + </view> + </view> + </view> + </view> + <up-loadmore :status="loadStatus" /> + </view> + <view v-else> + <up-empty text='鏆傛棤' icon="/static/order.png"> + </up-empty> + </view> + </view> + <fui-date-picker range :show="datePickerShow" type="5" @change="changePicker" + @cancel="cancel"></fui-date-picker> + </view> +</template> + +<script setup> + import { + onLoad, + onShow, + onReachBottom + } from "@dcloudio/uni-app"; + import { + reactive, + ref, + getCurrentInstance + } from 'vue'; + const { + $upload, + $api, + $util, + $db + } = getCurrentInstance().appContext.config.globalProperties + let state = reactive({ + pageIndex: 1, + pageSize: 20, + }) + let workTime = ref('') + let datePickerShow = ref(false) + let loadStatus = ref('loadmore') + let totalPages = ref(0) + let listO = reactive({ + orderList: [] + }) + onReachBottom(() => { + if (loadStatus.value != 'nomore') { + PostMyListPage(); + } + }) + onLoad(() => { + PostMyListPage() + }) + const current4 = ref(0); + const list = ref(['鍏ㄩ儴', '鍙戝竷', '鎷涘伐瀹屾瘯', '缁撶畻瀹屾瘯']); + const changePicker = (val) => { + console.log(val); + workTime.value = val.startDate.result + '鑷�' + val.endDate.result + state.wordStartTime = new Date(val.startDate.result) //宸ヤ綔寮�濮嬫椂闂� + state.wordEndTime = new Date(val.endDate.result) + } + + const search = (index) => { + console.log(index, '------鈥�'); + if (index == 0) { + PostMyListPage() + } else { + PostMyListPage(index - 1) + } + + } + const clear = () => { + state.wordStartTime = "" + state.wordEndTime = "" + } + const clickTime = () => { + datePickerShow.value = !datePickerShow.value + } + const PostMyListPage = (orderStatus) => { + let data = { + pageIndex: state.pageIndex, + pageSize: state.pageSize, + orderStatus + } + if (state.wordStartTime) { + data.wordStartTime = state.wordStartTime + } + if (state.wordEndTime) { + data.wordEndTime = state.wordEndTime + } + loadStatus.value = 'loading'; + $api.PostMyListPage(data).then(res => { + console.log(res, res.code, '-----------123鈥�'); + if (res.code == 1) { + if (state.pageIndex == 1) { + listO.orderList = res.data.items + } else { + listO.orderList.concat(...res.data.items) + } + console.log(listO.orderList, 'listO.orderList鈥�'); + // totalPages.value = res.data.totalCount + // 鏍规嵁count鏁伴噺鍒ゆ柇鏄惁杩樻湁鏁版嵁 + if (res.data.totalCount > listO.orderList.length) { + loadStatus.value = 'loadmore' + state.pageIndex++ + } else { + // 鏁版嵁宸插姞杞藉畬姣� + loadStatus.value = 'nomore' + } + } else { + // _that.$refs.uToast.show({ message: res.msg, type: 'error' }); + } + }) + } + const pageToDetail = (item) => { + console.log('------------123'); + uni.navigateTo({ + url: `/pages/checkin/checkin?orderid=${item.id}` + }); + // $db.set('detailItem',JSON.stringify(item)) + } +</script> + +<style> + .content { + /* width: 100%; */ + box-sizing: border-box; + } + + .bgblue { + background-color: #4e96f5; + border-radius: 20rpx 20rpx 0 0; + color: #fff; + } + + .listrecord { + width: 100%; + box-sizing: border-box; + } +</style> \ No newline at end of file diff --git a/src/pages/order/order.vue b/src/pages/order/order.vue index 38df8dc..570405d 100644 --- a/src/pages/order/order.vue +++ b/src/pages/order/order.vue @@ -27,8 +27,9 @@ </view> </view> <view class="c-p-t-20"> - {{$util.formatDate(item.wordEndTime,true)}} 鑷� - {{$util.formatDate(item.wordStartTime,true)}} + {{$util.formatDate(item.wordStartTime,true)}}鑷� + {{$util.formatDate(item.wordEndTime,true)}} + </view> <view class="chuany-flex chuany-justify-between c-p-t-20"> <view class="chuany-width50"> diff --git a/src/pages/release/index.vue b/src/pages/release/index.vue index 96ef3b7..ca8a9a4 100644 --- a/src/pages/release/index.vue +++ b/src/pages/release/index.vue @@ -1,8 +1,8 @@ <template> <view class="full-page c-m-b-40"> - <view class="list c-p-t-10"> + <view class="list"> <up-form labelPosition="left" :model="publicJob" ref="form1" labelWidth='160rpx'> - <view class="content c-p-10 c-p-l-24 c-m-t-10 c-m-b-20"> + <view class="content c-p-l-24"> <up-form-item label="宸ヤ綔鍚嶇О" prop="publicJob.orderName" :borderBottom='false' ref="item1"> <up-input v-model="publicJob.orderName" border="none" placeholder="璇峰~鍐欏伐浣滃悕绉�"></up-input> <!-- <template #right> @@ -10,13 +10,13 @@ </template> --> </up-form-item> </view> - <view class="content c-p-10 c-p-l-24 c-m-t-10 c-m-b-20"> + <view class="content c-p-l-24"> <up-form-item label="宸ヤ綔鏃堕棿" prop="workTime" :borderBottom='false' ref="item1" @click="clickTime"> <up-input v-model="workTime" border="none" readonly placeholder="鐐瑰嚮閫夋嫨宸ヤ綔鏃堕棿"></up-input> <up-icon #right name="arrow-right"></up-icon> </up-form-item> </view> - <view class="content c-p-10 c-p-l-24 c-m-t-10 c-m-b-20"> + <view class="content c-p-l-24"> <up-form-item label="鐢ㄥ伐瑕佹眰" prop="publicJob.demand" :borderBottom='false' ref="item1"> <view class="c-p-b-20"> <up-textarea v-model="publicJob.demand" border="none" placeholder="璇疯緭鍏ョ敤宸ヨ姹�" count @@ -35,12 +35,12 @@ </up-form-item> </view> </view> - <view class="content c-p-10 c-p-l-24 c-m-t-10 c-m-b-20"> + <view class="content c-p-l-24"> <up-form-item label="鑱旂郴鐢佃瘽" prop="publicJob.contactPhone" :borderBottom='false' ref="item1"> <up-input v-model="publicJob.contactPhone" border="none" placeholder="璇疯緭鍏ヨ仈绯荤數璇�"></up-input> </up-form-item> </view> - <view class="content c-p-10 c-p-l-24 c-m-t-10 c-m-b-20"> + <view class="content c-p-l-24"> <up-form-item label="鏂瑰紡" prop="publicJob.workerType" :borderBottom='false' ref="item1"> <up-tag class='c-p-r-14' text="璁℃椂" type="warning" :plain='!(publicJob.workerType=="0")' size="large" @click='changStyle(0)'></up-tag> @@ -48,7 +48,7 @@ @click='changStyle(1)'></up-tag> </up-form-item> </view> - <view class="content c-p-10 c-p-l-24 c-m-t-10 c-m-b-20"> + <view class="content c-p-l-24"> <up-form-item label="璁℃椂宸ヤ环" prop="publicJob.workPrice" :borderBottom='false' ref="item1"> <up-input v-model="publicJob.workPrice" border="none" placeholder="璇疯緭鍏ュ伐浠�"> <template #suffix>{{publicJob.workerType=="0"?'鍏�/灏忔椂':'鍏�/浠�'}}</template></up-input> diff --git a/src/pages/test/test.vue b/src/pages/test/test.vue new file mode 100644 index 0000000..c23f9b0 --- /dev/null +++ b/src/pages/test/test.vue @@ -0,0 +1,331 @@ +<template> + <view> + <view class="title">{{verifyText}}</view> + <view class="container"> + <image :src="faceImg" v-if="faceImg" class="faceImg" mode="widthFix" /> + <camera class="camera" device-position="front" flash="off"></camera> + </view> + <!-- <view class="tabbtns"> + <up-button color='#fece01' class="text-69" text="淇濆瓨" @click='getJpgImg'></up-button> + </view> --> + </view> +</template> + +<script> + let listener = null; + let videoCtx = null; + let VKSession = null; + let faceVerifyTime = null; //闈㈠楠岃瘉鍊掕鏃� + export default { + data: { + faceImgHeight: 314, + faceImgWidth: 314, + face: { + origin: { + x: 0, + y: 0 + }, + size: { + width: 0, + height: 0 + }, + points: [] + }, + verifyText: "璇风Щ鍔ㄩ潰瀹瑰埌妗嗗唴", + isCentre: false, //鏄惁闈㈠鍦ㄦ涓棿 + startVerify: false, //鏄惁姝e湪楠岃瘉 + faceImg: "", //闈㈠鍥剧墖鍦板潃 + }, + /** + * 鐢熷懡鍛ㄦ湡鍑芥暟--鐩戝惉椤甸潰鍔犺浇 + */ + onLoad() { + this.getAuthSetting() //鑾峰彇鏉冮檺 + this.initFaceVerify() + }, + methods: { + getAuthSetting() { + wx.getSetting({ + success: (res) => { + if (!res.authSetting['scope.camera']) { + wx.showModal({ + title: '璇峰厑璁歌幏鍙栨憚鍍忓ご鏉冮檺', + showCancel: false, + complete: (modalRes) => { + if (modalRes.confirm) { + wx.openSetting({ + success: (settingRes) => { + if (!settingRes.authSetting[ + 'scope.camera']) { + this.getAuthSetting() + } else { + wx.navigateBack() + } + } + }) + } + } + }) + } + } + }) + }, + initFaceVerify() { + console.log('鎴戞槸initFaceVerify----------------------'); + videoCtx = null; + listener = null; + VKSession = null; + videoCtx = wx.createCameraContext(); + let count = 0; + listener = videoCtx.onCameraFrame((frame) => { + count++; + if (count === 5) { + this.detectFace(frame); + count = 0; + } + }); + VKSession = wx.createVKSession({ + version: 'v1', + track: { + plane: { + mode: 1 + }, + face: { + mode: 2 + } + } + }); + VKSession.on('updateAnchors', (anchors) => { + // 鏈夐潰瀹� + console.log(anchors, '鏈夐潰瀹�') + + if (this.startVerify) { + return; + } + let anchor = anchors[0]; + this.face = { + points: anchor.points, + origin: anchor.origin, + size: anchor.size + } + this.isFaceCentered() + }) + VKSession.on('removeAnchors', (anchors) => { + // 闈㈠娑堝け + if (this.startVerify) { + return; + } + this.verifyText = '璇风Щ鍔ㄩ潰瀹瑰埌妗嗗唴' + this.isCentre = false + this.face = {} + clearTimeout(faceVerifyTime) + faceVerifyTime = null; + }) + setTimeout(() => { + // 鐩存帴寮�濮� + this.handleStart() + }, 500); + }, + onUnload() { + VKSession.destroy(); + }, + async getImageBase64_readFile(tempFilePath) { + const base64 = await new Promise(resolve => { + //鑾峰彇鍏ㄥ眬鍞竴鐨勬枃浠剁鐞嗗櫒 + wx.getFileSystemManager() + .readFile({ //璇诲彇鏈湴鏂囦欢鍐呭 + filePath: tempFilePath, // 鏂囦欢璺緞 + encoding: 'base64', // 杩斿洖鏍煎紡 + success: ({data}) => { + return resolve('data:image/png;base64,' + data); + }, + fail(res) { + console.log('fail', res) + } + }); + }); + + wx.hideLoading() + console.log('base64', base64) + // this.setData({ + // saveImg: base64 + // }) + }, + picture() { + this.startVerify = true + clearTimeout(faceVerifyTime) + faceVerifyTime = null; + videoCtx.takePhoto({ + quality: 'normal', + success: (e) => { + this.getImageBase64_readFile(e.tempImagePath).then(res=>{ + let obj = { + imgBase64:res,//鏁版嵁base64 + cordId:'',//韬唤璇佸彿鐮� + name:'',//濮撳悕 + gender:2//鎬у埆 + } + this.$api.IaiAddPersoBase64(obj).then(res=>{ + console.log(res,'----------------'); + }) + }) + console.log(e.tempImagePath, '涓婁紶鐓х墖鎺ュ彛锛屽浘鐗囨崲鎴愯繙绔痷rl鍦板潃 鑷鏇挎崲'); + //涓婁紶鐓х墖鎺ュ彛锛屽浘鐗囨崲鎴愯繙绔痷rl鍦板潃 鑷鏇挎崲 + // uploadImage(e.tempImagePath).then((res) => { + // this.setData({ + // faceImg: res + // }) + // wx.showLoading({ + // title: '姝e湪楠岃瘉', + // }) + + // try { + // // 鎵ц鍚庣鍒嗘瀽浜鸿劯 + // api({ + // img: res + // }).then((writeoffRes) => { + // //璇嗗埆鎴愬姛 + // //鑷澶勭悊璇嗗埆鎴愬姛缁撴灉 + // }).catch(err => { + // wx.hideLoading(); + // wx.showModal({ + // title: err.msg, + // showCancel: false, + // confirmText: '閲嶆柊鏍搁獙', + // complete: (res) => { + // if (res.confirm) { + // this.setData({ + // startVerify: false, + // faceImg: "", + // verifyText: '璇风Щ鍔ㄩ潰瀹瑰埌妗嗗唴', + // isCentre: false, + // face: {} + // }, () => { + // this.handleStart() + // }) + // } + // } + // }) + // }) + // } catch (error) { + // console.log(error) + // } + // }).catch(() => { + // this.setData({ + // startVerify: false, + // faceImg: "", + // verifyText: '璇风Щ鍔ㄩ潰瀹瑰埌妗嗗唴', + // isCentre: false, + // face: {} + // }, () => { + // this.handleStart() + // wx.showToast({ + // title: '缃戠粶杩炴帴澶辫触锛岃閲嶈瘯', + // }) + // }) + // }) + } + }) + + }, + handleStart() { + VKSession.start((errno) => { + console.warn('VKSession.start errno', errno); + }); + listener.start(); + }, + handleStop() { + listener.stop({ + complete: (res) => { + console.warn('listener.stop', res); + } + }); + VKSession.stop(); + }, + async detectFace(frame) { + // 鑾峰彇闈㈠ + VKSession.detectFace({ + frameBuffer: frame.data, + width: frame.width, + height: frame.height, + scoreThreshold: 0.8, + sourceType: 0, + modelMode: 2 + }); + }, + isFaceCentered() { + // 鍒ゆ柇闈㈠鏄惁鍦ㄤ腑闂� + if (!this.face.points) { + return; + } + let points = this.face.points[43]; //浣嶇疆 + let size = this.face.size; //澶у皬 + if (points.x > 0.65 || points.x < 0.4 || points.y > 0.65 || points.y < 0.35) { + this.verifyText = '璇风Щ鍔ㄩ潰瀹瑰埌妗嗗唴' + this.isCentre = false + this.face = {} + clearTimeout(faceVerifyTime) + faceVerifyTime = null; + return + } else if (size.width > 0.95 || size.width < 0.32) { + this.verifyText = '璇风Щ鍔ㄩ潰瀹规樉绀哄畬鏁撮潰瀹�' + this.isCentre = false + this.face = {} + clearTimeout(faceVerifyTime) + faceVerifyTime = null; + return + } + this.verifyText = '璇蜂繚鎸佷笉鍔�' + this.isCentre = true + this.verifyCentre() + }, + verifyCentre() { + // 寮�濮嬮獙璇侀潰瀹� + if (faceVerifyTime || this.startVerify) { + return + } else { + faceVerifyTime = setTimeout(() => { + if (this.isCentre) { + this.handleStop() + this.picture() + } else { + clearTimeout(faceVerifyTime) + faceVerifyTime = null; + } + }, 1500); + } + } + + }, + } +</script> +<style> + .container { + position: relative; + padding: 200rpx 0; + } + + .title { + position: absolute; + width: 100%; + text-align: center; + padding-top: 100rpx; + font-size: 36rpx; + } + + .camera { + width: 600rpx; + height: 600rpx; + border-radius: 50% 50%; + margin: 0 auto; + } + + .faceImg { + width: 600rpx; + height: 600rpx; + border-radius: 50% 50%; + margin: 0 auto; + position: absolute; + z-index: 999; + } +</style> \ No newline at end of file diff --git a/stats.html b/stats.html index 4e07db4..6a89ee4 100644 --- a/stats.html +++ b/stats.html @@ -4822,7 +4822,7 @@ </script> <script> /*<!--*/ - const data = {"version":2,"tree":{"name":"root","children":[{"name":"app.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src","children":[{"uid":"c061f9e9-1","name":"pages-json-js"},{"uid":"c061f9e9-3","name":"App.vue?vue&type=style&index=0&lang.scss"},{"uid":"c061f9e9-5","name":"App.vue"},{"uid":"c061f9e9-7","name":"main.ts"}]}]},{"name":"common/assets.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/static","children":[{"uid":"c061f9e9-9","name":"logo.png"},{"name":"image","children":[{"uid":"c061f9e9-11","name":"fabu.png"},{"uid":"c061f9e9-13","name":"guanli.png"},{"uid":"c061f9e9-15","name":"qiye.png"},{"uid":"c061f9e9-17","name":"server.png"},{"uid":"c061f9e9-19","name":"dingwei.png"}]}]}]},{"name":"common/locales/en.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","uid":"c061f9e9-21"}]},{"name":"common/locales/zh.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","uid":"c061f9e9-23"}]},{"name":"common/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","uid":"c061f9e9-25"}]},{"name":"common/request/http.api.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","uid":"c061f9e9-27"}]},{"name":"uni_modules/uview-plus/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","uid":"c061f9e9-29"}]},{"name":"common/request/request.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/request/request.js","uid":"c061f9e9-31"}]},{"name":"common/vendor.js","children":[{"name":"node_modules","children":[{"name":"@vue/shared/dist/shared.esm-bundler.js","uid":"c061f9e9-33"},{"name":"@dcloudio","children":[{"name":"uni-i18n/dist/uni-i18n.es.js","uid":"c061f9e9-35"},{"name":"uni-shared/dist/uni-shared.es.js","uid":"c061f9e9-37"},{"name":"uni-app/dist/uni-app.es.js","uid":"c061f9e9-65"}]},{"name":"vuex/dist/vuex.esm-bundler.js","uid":"c061f9e9-47"}]},{"name":"D:/zcweb/uniapp/temporaryworker/node_modules","children":[{"name":"@dcloudio","children":[{"name":"uni-mp-weixin/dist","children":[{"uid":"c061f9e9-39","name":"uni.api.esm.js"},{"uid":"c061f9e9-45","name":"uni.mp.esm.js"}]},{"name":"uni-mp-vue/dist/vue.runtime.esm.js","uid":"c061f9e9-43"},{"name":"uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","uid":"c061f9e9-63"}]},{"name":"@intlify","children":[{"name":"shared/dist/shared.esm-bundler.js","uid":"c061f9e9-49"},{"name":"message-resolver/dist/message-resolver.esm-bundler.js","uid":"c061f9e9-51"},{"name":"runtime/dist/runtime.esm-bundler.js","uid":"c061f9e9-53"},{"name":"message-compiler/dist/message-compiler.esm-bundler.js","uid":"c061f9e9-55"},{"name":"devtools-if/dist/devtools-if.esm-bundler.js","uid":"c061f9e9-57"},{"name":"core-base/dist/core-base.esm-bundler.js","uid":"c061f9e9-59"},{"name":"vue-devtools/dist/vue-devtools.esm-bundler.js","uid":"c061f9e9-61"}]}]},{"uid":"c061f9e9-41","name":"\u0000plugin-vue:export-helper"}]},{"name":"common/setting/constVarsHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","uid":"c061f9e9-67"}]},{"name":"common/utils/dbHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","uid":"c061f9e9-69"}]},{"name":"common/utils/commonHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","uid":"c061f9e9-71"}]},{"name":"common/utils/uploadHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","uid":"c061f9e9-73"}]},{"name":"common/utils/util.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/util.js","uid":"c061f9e9-75"}]},{"name":"store/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","uid":"c061f9e9-77"}]},{"name":"uni_modules/uni-transition/components/uni-transition/createAnimation.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/createAnimation.js","uid":"c061f9e9-79"}]},{"name":"uni_modules/uview-plus/components/u-avatar/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/props.js","uid":"c061f9e9-81"}]},{"name":"uni_modules/uview-plus/libs/vue.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","uid":"c061f9e9-83"}]},{"name":"uni_modules/uview-plus/libs/config/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","uid":"c061f9e9-85"}]},{"name":"uni_modules/uview-plus/libs/function/test.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","uid":"c061f9e9-87"}]},{"name":"uni_modules/uview-plus/components/u-button/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/props.js","uid":"c061f9e9-89"}]},{"name":"uni_modules/uview-plus/components/u-cell/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/props.js","uid":"c061f9e9-91"}]},{"name":"uni_modules/uview-plus/components/u-collapse-item/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse-item/props.js","uid":"c061f9e9-93"}]},{"name":"uni_modules/uview-plus/components/u-collapse/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse/props.js","uid":"c061f9e9-95"}]},{"name":"uni_modules/uview-plus/components/u-empty/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/props.js","uid":"c061f9e9-97"}]},{"name":"uni_modules/uview-plus/components/u-form-item/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/props.js","uid":"c061f9e9-99"}]},{"name":"uni_modules/uview-plus/components/u-form/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/props.js","uid":"c061f9e9-101"}]},{"name":"uni_modules/uview-plus/components/u-icon/icons.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/icons.js","uid":"c061f9e9-103"}]},{"name":"uni_modules/uview-plus/components/u-icon/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/props.js","uid":"c061f9e9-105"}]},{"name":"uni_modules/uview-plus/components/u-input/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/props.js","uid":"c061f9e9-107"}]},{"name":"uni_modules/uview-plus/components/u-line/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/props.js","uid":"c061f9e9-109"}]},{"name":"uni_modules/uview-plus/components/u-link/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/props.js","uid":"c061f9e9-111"}]},{"name":"uni_modules/uview-plus/components/u-list-item/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/props.js","uid":"c061f9e9-113"}]},{"name":"uni_modules/uview-plus/components/u-list/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/props.js","uid":"c061f9e9-115"}]},{"name":"uni_modules/uview-plus/components/u-loading-icon/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/props.js","uid":"c061f9e9-117"}]},{"name":"uni_modules/uview-plus/components/u-loadmore/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/props.js","uid":"c061f9e9-119"}]},{"name":"uni_modules/uview-plus/components/u-number-box/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/props.js","uid":"c061f9e9-121"}]},{"name":"uni_modules/uview-plus/components/u-search/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/props.js","uid":"c061f9e9-123"}]},{"name":"uni_modules/uview-plus/components/u-sticky/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/props.js","uid":"c061f9e9-125"}]},{"name":"uni_modules/uview-plus/components/u-subsection/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/props.js","uid":"c061f9e9-127"}]},{"name":"uni_modules/uview-plus/components/u-tag/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/props.js","uid":"c061f9e9-129"}]},{"name":"uni_modules/uview-plus/components/u-text/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/props.js","uid":"c061f9e9-131"}]},{"name":"uni_modules/uview-plus/components/u-text/value.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/value.js","uid":"c061f9e9-133"}]},{"name":"uni_modules/uview-plus/libs/function/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","uid":"c061f9e9-135"}]},{"name":"uni_modules/uview-plus/components/u-textarea/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/props.js","uid":"c061f9e9-137"}]},{"name":"uni_modules/uview-plus/components/u-transition/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/props.js","uid":"c061f9e9-139"}]},{"name":"uni_modules/uview-plus/components/u-transition/transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/transition.js","uid":"c061f9e9-141"}]},{"name":"uni_modules/uview-plus/libs/mixin/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","uid":"c061f9e9-143"}]},{"name":"uni_modules/uview-plus/libs/mixin/mpMixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","uid":"c061f9e9-145"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/Request.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/Request.js","uid":"c061f9e9-147"}]},{"name":"uni_modules/uview-plus/libs/util/route.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","uid":"c061f9e9-149"}]},{"name":"uni_modules/uview-plus/libs/function/colorGradient.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","uid":"c061f9e9-151"}]},{"name":"uni_modules/uview-plus/libs/function/debounce.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","uid":"c061f9e9-153"}]},{"name":"uni_modules/uview-plus/libs/function/throttle.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","uid":"c061f9e9-155"}]},{"name":"uni_modules/uview-plus/libs/config/config.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","uid":"c061f9e9-157"}]},{"name":"uni_modules/uview-plus/libs/config/zIndex.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","uid":"c061f9e9-159"}]},{"name":"uni_modules/uview-plus/libs/config/color.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","uid":"c061f9e9-161"}]},{"name":"uni_modules/uview-plus/libs/function/platform.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","uid":"c061f9e9-163"}]},{"name":"uni_modules/uview-plus/libs/config/props/actionSheet.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/actionSheet.js","uid":"c061f9e9-165"}]},{"name":"uni_modules/uview-plus/libs/config/props/album.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/album.js","uid":"c061f9e9-167"}]},{"name":"uni_modules/uview-plus/libs/config/props/alert.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/alert.js","uid":"c061f9e9-169"}]},{"name":"uni_modules/uview-plus/libs/config/props/avatar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatar.js","uid":"c061f9e9-171"}]},{"name":"uni_modules/uview-plus/libs/config/props/avatarGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatarGroup.js","uid":"c061f9e9-173"}]},{"name":"uni_modules/uview-plus/libs/config/props/backtop.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/backtop.js","uid":"c061f9e9-175"}]},{"name":"uni_modules/uview-plus/libs/config/props/badge.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/badge.js","uid":"c061f9e9-177"}]},{"name":"uni_modules/uview-plus/libs/config/props/button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/button.js","uid":"c061f9e9-179"}]},{"name":"uni_modules/uview-plus/libs/config/props/calendar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/calendar.js","uid":"c061f9e9-181"}]},{"name":"uni_modules/uview-plus/libs/config/props/carKeyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/carKeyboard.js","uid":"c061f9e9-183"}]},{"name":"uni_modules/uview-plus/libs/config/props/cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cell.js","uid":"c061f9e9-185"}]},{"name":"uni_modules/uview-plus/libs/config/props/cellGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cellGroup.js","uid":"c061f9e9-187"}]},{"name":"uni_modules/uview-plus/libs/config/props/checkbox.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkbox.js","uid":"c061f9e9-189"}]},{"name":"uni_modules/uview-plus/libs/config/props/checkboxGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkboxGroup.js","uid":"c061f9e9-191"}]},{"name":"uni_modules/uview-plus/libs/config/props/circleProgress.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/circleProgress.js","uid":"c061f9e9-193"}]},{"name":"uni_modules/uview-plus/libs/config/props/code.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/code.js","uid":"c061f9e9-195"}]},{"name":"uni_modules/uview-plus/libs/config/props/codeInput.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/codeInput.js","uid":"c061f9e9-197"}]},{"name":"uni_modules/uview-plus/libs/config/props/col.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/col.js","uid":"c061f9e9-199"}]},{"name":"uni_modules/uview-plus/libs/config/props/collapse.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapse.js","uid":"c061f9e9-201"}]},{"name":"uni_modules/uview-plus/libs/config/props/collapseItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapseItem.js","uid":"c061f9e9-203"}]},{"name":"uni_modules/uview-plus/libs/config/props/columnNotice.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/columnNotice.js","uid":"c061f9e9-205"}]},{"name":"uni_modules/uview-plus/libs/config/props/countDown.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countDown.js","uid":"c061f9e9-207"}]},{"name":"uni_modules/uview-plus/libs/config/props/countTo.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countTo.js","uid":"c061f9e9-209"}]},{"name":"uni_modules/uview-plus/libs/config/props/datetimePicker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/datetimePicker.js","uid":"c061f9e9-211"}]},{"name":"uni_modules/uview-plus/libs/config/props/divider.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/divider.js","uid":"c061f9e9-213"}]},{"name":"uni_modules/uview-plus/libs/config/props/empty.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/empty.js","uid":"c061f9e9-215"}]},{"name":"uni_modules/uview-plus/libs/config/props/form.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/form.js","uid":"c061f9e9-217"}]},{"name":"uni_modules/uview-plus/libs/config/props/formItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/formItem.js","uid":"c061f9e9-219"}]},{"name":"uni_modules/uview-plus/libs/config/props/gap.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gap.js","uid":"c061f9e9-221"}]},{"name":"uni_modules/uview-plus/libs/config/props/grid.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/grid.js","uid":"c061f9e9-223"}]},{"name":"uni_modules/uview-plus/libs/config/props/gridItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gridItem.js","uid":"c061f9e9-225"}]},{"name":"uni_modules/uview-plus/libs/config/props/icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/icon.js","uid":"c061f9e9-227"}]},{"name":"uni_modules/uview-plus/libs/config/props/image.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/image.js","uid":"c061f9e9-229"}]},{"name":"uni_modules/uview-plus/libs/config/props/indexAnchor.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexAnchor.js","uid":"c061f9e9-231"}]},{"name":"uni_modules/uview-plus/libs/config/props/indexList.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexList.js","uid":"c061f9e9-233"}]},{"name":"uni_modules/uview-plus/libs/config/props/input.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/input.js","uid":"c061f9e9-235"}]},{"name":"uni_modules/uview-plus/libs/config/props/keyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/keyboard.js","uid":"c061f9e9-237"}]},{"name":"uni_modules/uview-plus/libs/config/props/line.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/line.js","uid":"c061f9e9-239"}]},{"name":"uni_modules/uview-plus/libs/config/props/lineProgress.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/lineProgress.js","uid":"c061f9e9-241"}]},{"name":"uni_modules/uview-plus/libs/config/props/link.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/link.js","uid":"c061f9e9-243"}]},{"name":"uni_modules/uview-plus/libs/config/props/list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/list.js","uid":"c061f9e9-245"}]},{"name":"uni_modules/uview-plus/libs/config/props/listItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/listItem.js","uid":"c061f9e9-247"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadingIcon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingIcon.js","uid":"c061f9e9-249"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadingPage.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingPage.js","uid":"c061f9e9-251"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadmore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadmore.js","uid":"c061f9e9-253"}]},{"name":"uni_modules/uview-plus/libs/config/props/modal.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/modal.js","uid":"c061f9e9-255"}]},{"name":"uni_modules/uview-plus/libs/config/props/navbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/navbar.js","uid":"c061f9e9-257"}]},{"name":"uni_modules/uview-plus/libs/config/props/noNetwork.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noNetwork.js","uid":"c061f9e9-259"}]},{"name":"uni_modules/uview-plus/libs/config/props/noticeBar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noticeBar.js","uid":"c061f9e9-261"}]},{"name":"uni_modules/uview-plus/libs/config/props/notify.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/notify.js","uid":"c061f9e9-263"}]},{"name":"uni_modules/uview-plus/libs/config/props/numberBox.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberBox.js","uid":"c061f9e9-265"}]},{"name":"uni_modules/uview-plus/libs/config/props/numberKeyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberKeyboard.js","uid":"c061f9e9-267"}]},{"name":"uni_modules/uview-plus/libs/config/props/overlay.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/overlay.js","uid":"c061f9e9-269"}]},{"name":"uni_modules/uview-plus/libs/config/props/parse.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/parse.js","uid":"c061f9e9-271"}]},{"name":"uni_modules/uview-plus/libs/config/props/picker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/picker.js","uid":"c061f9e9-273"}]},{"name":"uni_modules/uview-plus/libs/config/props/popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/popup.js","uid":"c061f9e9-275"}]},{"name":"uni_modules/uview-plus/libs/config/props/radio.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radio.js","uid":"c061f9e9-277"}]},{"name":"uni_modules/uview-plus/libs/config/props/radioGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radioGroup.js","uid":"c061f9e9-279"}]},{"name":"uni_modules/uview-plus/libs/config/props/rate.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rate.js","uid":"c061f9e9-281"}]},{"name":"uni_modules/uview-plus/libs/config/props/readMore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/readMore.js","uid":"c061f9e9-283"}]},{"name":"uni_modules/uview-plus/libs/config/props/row.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/row.js","uid":"c061f9e9-285"}]},{"name":"uni_modules/uview-plus/libs/config/props/rowNotice.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rowNotice.js","uid":"c061f9e9-287"}]},{"name":"uni_modules/uview-plus/libs/config/props/scrollList.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/scrollList.js","uid":"c061f9e9-289"}]},{"name":"uni_modules/uview-plus/libs/config/props/search.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/search.js","uid":"c061f9e9-291"}]},{"name":"uni_modules/uview-plus/libs/config/props/section.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/section.js","uid":"c061f9e9-293"}]},{"name":"uni_modules/uview-plus/libs/config/props/skeleton.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/skeleton.js","uid":"c061f9e9-295"}]},{"name":"uni_modules/uview-plus/libs/config/props/slider.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/slider.js","uid":"c061f9e9-297"}]},{"name":"uni_modules/uview-plus/libs/config/props/statusBar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/statusBar.js","uid":"c061f9e9-299"}]},{"name":"uni_modules/uview-plus/libs/config/props/steps.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/steps.js","uid":"c061f9e9-301"}]},{"name":"uni_modules/uview-plus/libs/config/props/stepsItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/stepsItem.js","uid":"c061f9e9-303"}]},{"name":"uni_modules/uview-plus/libs/config/props/sticky.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/sticky.js","uid":"c061f9e9-305"}]},{"name":"uni_modules/uview-plus/libs/config/props/subsection.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/subsection.js","uid":"c061f9e9-307"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipeAction.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeAction.js","uid":"c061f9e9-309"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipeActionItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeActionItem.js","uid":"c061f9e9-311"}]},{"name":"uni_modules/uview-plus/libs/config/props/swiper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swiper.js","uid":"c061f9e9-313"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipterIndicator.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipterIndicator.js","uid":"c061f9e9-315"}]},{"name":"uni_modules/uview-plus/libs/config/props/switch.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/switch.js","uid":"c061f9e9-317"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbar.js","uid":"c061f9e9-319"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabbarItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbarItem.js","uid":"c061f9e9-321"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabs.js","uid":"c061f9e9-323"}]},{"name":"uni_modules/uview-plus/libs/config/props/tag.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tag.js","uid":"c061f9e9-325"}]},{"name":"uni_modules/uview-plus/libs/config/props/text.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/text.js","uid":"c061f9e9-327"}]},{"name":"uni_modules/uview-plus/libs/config/props/textarea.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/textarea.js","uid":"c061f9e9-329"}]},{"name":"uni_modules/uview-plus/libs/config/props/toast.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toast.js","uid":"c061f9e9-331"}]},{"name":"uni_modules/uview-plus/libs/config/props/toolbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toolbar.js","uid":"c061f9e9-333"}]},{"name":"uni_modules/uview-plus/libs/config/props/tooltip.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tooltip.js","uid":"c061f9e9-335"}]},{"name":"uni_modules/uview-plus/libs/config/props/transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/transition.js","uid":"c061f9e9-337"}]},{"name":"uni_modules/uview-plus/libs/config/props/upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/upload.js","uid":"c061f9e9-339"}]},{"name":"uni_modules/uview-plus/libs/function/digit.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","uid":"c061f9e9-341"}]},{"name":"uni_modules/uview-plus/libs/luch-request/adapters/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/adapters/index.js","uid":"c061f9e9-343"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","uid":"c061f9e9-345"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","uid":"c061f9e9-347"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/settle.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/settle.js","uid":"c061f9e9-349"}]},{"name":"uni_modules/uview-plus/libs/luch-request/utils.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils.js","uid":"c061f9e9-351"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","uid":"c061f9e9-353"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","uid":"c061f9e9-355"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","uid":"c061f9e9-357"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/defaults.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/defaults.js","uid":"c061f9e9-359"}]},{"name":"uni_modules/uview-plus/libs/luch-request/utils/clone.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils/clone.js","uid":"c061f9e9-361"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","uid":"c061f9e9-363"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","uid":"c061f9e9-365"}]},{"name":"uni_modules/uview-plus/libs/luch-request/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/index.js","uid":"c061f9e9-367"}]},{"name":"uni_modules/uview-plus/libs/mixin/button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","uid":"c061f9e9-369"}]},{"name":"uni_modules/uview-plus/libs/mixin/mpShare.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","uid":"c061f9e9-371"}]},{"name":"uni_modules/uview-plus/libs/mixin/openType.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","uid":"c061f9e9-373"}]},{"name":"uni_modules/uview-plus/libs/util/async-validator.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/async-validator.js","uid":"c061f9e9-375"}]},{"name":"pages/default/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/default","children":[{"uid":"c061f9e9-377","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"c061f9e9-379","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","uid":"c061f9e9-381"}]},{"name":"pages/index/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/index","children":[{"uid":"c061f9e9-383","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"c061f9e9-385","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvaW5kZXgvaW5kZXgudnVl","uid":"c061f9e9-387"}]},{"name":"pages/login/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/login","children":[{"uid":"c061f9e9-389","name":"index.vue?vue&type=style&index=0&scoped=45258083&lang.scss"},{"uid":"c061f9e9-391","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbG9naW4vaW5kZXgudnVl","uid":"c061f9e9-393"}]},{"name":"pages/release/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/release","children":[{"uid":"c061f9e9-395","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"c061f9e9-397","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","uid":"c061f9e9-399"}]},{"name":"pages/wallet/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet","children":[{"uid":"c061f9e9-401","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"c061f9e9-403","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","uid":"c061f9e9-405"}]},{"name":"pages/mine/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"c061f9e9-407","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"c061f9e9-409","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9pbmRleC52dWU","uid":"c061f9e9-411"}]},{"name":"pages/mine/mine.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"c061f9e9-413","name":"mine.vue?vue&type=style&index=0&lang.css"},{"uid":"c061f9e9-415","name":"mine.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9taW5lLnZ1ZQ","uid":"c061f9e9-417"}]},{"name":"pages/mine/apply.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"c061f9e9-419","name":"apply.vue?vue&type=style&index=0&lang.css"},{"uid":"c061f9e9-421","name":"apply.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9hcHBseS52dWU","uid":"c061f9e9-423"}]},{"name":"pages/checkin/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"c061f9e9-425","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"c061f9e9-427","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxpbmRleC52dWU","uid":"c061f9e9-429"}]},{"name":"pages/checkin/record.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"c061f9e9-431","name":"record.vue?vue&type=style&index=0&lang.scss"},{"uid":"c061f9e9-433","name":"record.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxyZWNvcmQudnVl","uid":"c061f9e9-435"}]},{"name":"pages/enterprise/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"c061f9e9-437","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"c061f9e9-439","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcZW50ZXJwcmlzZVxpbmRleC52dWU","uid":"c061f9e9-441"}]},{"name":"pages/enterprise/enterprise.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"c061f9e9-443","name":"enterprise.vue?vue&type=style&index=0&lang.css"},{"uid":"c061f9e9-445","name":"enterprise.vue"}]},{"name":"uniPage:/cGFnZXNcZW50ZXJwcmlzZVxlbnRlcnByaXNlLnZ1ZQ","uid":"c061f9e9-447"}]},{"name":"pages/detail/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/detail","children":[{"uid":"c061f9e9-449","name":"detail.vue?vue&type=style&index=0&lang.css"},{"uid":"c061f9e9-451","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXNcZGV0YWlsXGRldGFpbC52dWU","uid":"c061f9e9-453"}]},{"name":"pages/order/order.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"c061f9e9-455","name":"order.vue?vue&type=style&index=0&lang.css"},{"uid":"c061f9e9-457","name":"order.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcb3JkZXIudnVl","uid":"c061f9e9-459"}]},{"name":"pages/order/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"c061f9e9-461","name":"detail.vue?vue&type=style&index=0&lang.scss"},{"uid":"c061f9e9-463","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcZGV0YWlsLnZ1ZQ","uid":"c061f9e9-465"}]},{"name":"pages/order/worker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"c061f9e9-467","name":"worker.vue?vue&type=style&index=0&lang.scss"},{"uid":"c061f9e9-469","name":"worker.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcd29ya2VyLnZ1ZQ","uid":"c061f9e9-471"}]},{"name":"uni_modules/uview-plus/components/u-icon/u-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon","children":[{"uid":"c061f9e9-473","name":"u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss"},{"uid":"c061f9e9-475","name":"u-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","uid":"c061f9e9-477"}]},{"name":"uni_modules/uview-plus/components/u-search/u-search.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search","children":[{"uid":"c061f9e9-479","name":"u-search.vue?vue&type=style&index=0&scoped=db25ac38&lang.scss"},{"uid":"c061f9e9-481","name":"u-search.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2VhcmNoL3Utc2VhcmNoLnZ1ZQ","uid":"c061f9e9-483"}]},{"name":"uni_modules/uview-plus/components/u-sticky/u-sticky.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky","children":[{"uid":"c061f9e9-485","name":"u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss"},{"uid":"c061f9e9-487","name":"u-sticky.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","uid":"c061f9e9-489"}]},{"name":"uni_modules/uview-plus/components/u-tag/u-tag.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag","children":[{"uid":"c061f9e9-491","name":"u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss"},{"uid":"c061f9e9-493","name":"u-tag.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","uid":"c061f9e9-495"}]},{"name":"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore","children":[{"uid":"c061f9e9-497","name":"u-loadmore.vue?vue&type=style&index=0&scoped=80ed34f9&lang.scss"},{"uid":"c061f9e9-499","name":"u-loadmore.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZG1vcmUvdS1sb2FkbW9yZS52dWU","uid":"c061f9e9-501"}]},{"name":"uni_modules/uview-plus/components/u-empty/u-empty.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty","children":[{"uid":"c061f9e9-503","name":"u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss"},{"uid":"c061f9e9-505","name":"u-empty.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","uid":"c061f9e9-507"}]},{"name":"components/firstui/fui-date-picker/fui-date-picker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker","children":[{"uid":"c061f9e9-509","name":"fui-date-picker.vue?vue&type=style&index=0&scoped=42055a14&lang.css"},{"uid":"c061f9e9-511","name":"fui-date-picker.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1kYXRlLXBpY2tlci9mdWktZGF0ZS1waWNrZXIudnVl","uid":"c061f9e9-513"}]},{"name":"uni_modules/uni-popup/components/uni-popup/uni-popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup","children":[{"uid":"c061f9e9-515","name":"uni-popup.vue?vue&type=style&index=0&lang.scss"},{"uid":"c061f9e9-517","name":"uni-popup.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXBvcHVwL2NvbXBvbmVudHMvdW5pLXBvcHVwL3VuaS1wb3B1cC52dWU","uid":"c061f9e9-519"}]},{"name":"uni_modules/uview-plus/components/u-input/u-input.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input","children":[{"uid":"c061f9e9-521","name":"u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss"},{"uid":"c061f9e9-523","name":"u-input.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","uid":"c061f9e9-525"}]},{"name":"uni_modules/uview-plus/components/u-form-item/u-form-item.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item","children":[{"uid":"c061f9e9-527","name":"u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss"},{"uid":"c061f9e9-529","name":"u-form-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","uid":"c061f9e9-531"}]},{"name":"uni_modules/uview-plus/components/u-textarea/u-textarea.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea","children":[{"uid":"c061f9e9-533","name":"u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss"},{"uid":"c061f9e9-535","name":"u-textarea.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","uid":"c061f9e9-537"}]},{"name":"uni_modules/uview-plus/components/u-number-box/u-number-box.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box","children":[{"uid":"c061f9e9-539","name":"u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss"},{"uid":"c061f9e9-541","name":"u-number-box.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","uid":"c061f9e9-543"}]},{"name":"uni_modules/uview-plus/components/u-form/u-form.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/u-form.vue","uid":"c061f9e9-545"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","uid":"c061f9e9-547"}]},{"name":"uni_modules/uview-plus/components/u-button/u-button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button","children":[{"uid":"c061f9e9-549","name":"u-button.vue?vue&type=script&lang.ts"},{"uid":"c061f9e9-551","name":"u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss"},{"uid":"c061f9e9-553","name":"u-button.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","uid":"c061f9e9-555"}]},{"name":"uni_modules/uview-plus/components/u-avatar/u-avatar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar","children":[{"uid":"c061f9e9-557","name":"u-avatar.vue?vue&type=style&index=0&scoped=4139b3f3&lang.scss"},{"uid":"c061f9e9-559","name":"u-avatar.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","uid":"c061f9e9-561"}]},{"name":"components/firstui/fui-list-cell/fui-list-cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell","children":[{"uid":"c061f9e9-563","name":"fui-list-cell.vue?vue&type=style&index=0&scoped=77eef2c9&lang.css"},{"uid":"c061f9e9-565","name":"fui-list-cell.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","uid":"c061f9e9-567"}]},{"name":"components/firstui/fui-list/fui-list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list","children":[{"uid":"c061f9e9-569","name":"fui-list.vue?vue&type=style&index=0&scoped=61b84bd4&lang.css"},{"uid":"c061f9e9-571","name":"fui-list.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","uid":"c061f9e9-573"}]},{"name":"components/firstui/fui-upload/fui-upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload","children":[{"uid":"c061f9e9-575","name":"fui-upload.vue?vue&type=style&index=0&scoped=2d5d0fa0&lang.css"},{"uid":"c061f9e9-577","name":"fui-upload.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS11cGxvYWQvZnVpLXVwbG9hZC52dWU","uid":"c061f9e9-579"}]},{"name":"uni_modules/uview-plus/components/u-subsection/u-subsection.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection","children":[{"uid":"c061f9e9-581","name":"u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss"},{"uid":"c061f9e9-583","name":"u-subsection.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","uid":"c061f9e9-585"}]},{"name":"uni_modules/uview-plus/components/u-cell/u-cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell","children":[{"uid":"c061f9e9-587","name":"u-cell.vue?vue&type=style&index=0&scoped=3b946341&lang.scss"},{"uid":"c061f9e9-589","name":"u-cell.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY2VsbC91LWNlbGwudnVl","uid":"c061f9e9-591"}]},{"name":"uni_modules/uview-plus/components/u-list-item/u-list-item.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item","children":[{"uid":"c061f9e9-593","name":"u-list-item.vue?vue&type=style&index=0&scoped=f5ff7ac7&lang.scss"},{"uid":"c061f9e9-595","name":"u-list-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC1pdGVtL3UtbGlzdC1pdGVtLnZ1ZQ","uid":"c061f9e9-597"}]},{"name":"components/tem/tem-steps.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/tem","children":[{"uid":"c061f9e9-599","name":"tem-steps.vue?vue&type=style&index=0&scoped=746e3803&lang.scss"},{"uid":"c061f9e9-601","name":"tem-steps.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy90ZW0vdGVtLXN0ZXBzLnZ1ZQ","uid":"c061f9e9-603"}]},{"name":"uni_modules/uview-plus/components/u-list/u-list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list","children":[{"uid":"c061f9e9-605","name":"u-list.vue?vue&type=style&index=0&scoped=e8455553&lang.scss"},{"uid":"c061f9e9-607","name":"u-list.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC91LWxpc3QudnVl","uid":"c061f9e9-609"}]},{"name":"uni_modules/uview-plus/components/u-collapse-item/u-collapse-item.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse-item","children":[{"uid":"c061f9e9-611","name":"u-collapse-item.vue?vue&type=style&index=0&scoped=d8aaa180&lang.scss"},{"uid":"c061f9e9-613","name":"u-collapse-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY29sbGFwc2UtaXRlbS91LWNvbGxhcHNlLWl0ZW0udnVl","uid":"c061f9e9-615"}]},{"name":"uni_modules/uview-plus/components/u-collapse/u-collapse.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse","children":[{"uid":"c061f9e9-617","name":"u-collapse.vue?vue&type=style&index=0&scoped=e9e3404e&lang.scss"},{"uid":"c061f9e9-619","name":"u-collapse.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY29sbGFwc2UvdS1jb2xsYXBzZS52dWU","uid":"c061f9e9-621"}]},{"name":"uni_modules/uview-plus/components/u-transition/u-transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition","children":[{"uid":"c061f9e9-623","name":"u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss"},{"uid":"c061f9e9-625","name":"u-transition.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","uid":"c061f9e9-627"}]},{"name":"uni_modules/uview-plus/components/u-line/u-line.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line","children":[{"uid":"c061f9e9-629","name":"u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss"},{"uid":"c061f9e9-631","name":"u-line.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","uid":"c061f9e9-633"}]},{"name":"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon","children":[{"uid":"c061f9e9-635","name":"u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss"},{"uid":"c061f9e9-637","name":"u-loading-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","uid":"c061f9e9-639"}]},{"name":"uni_modules/uni-transition/components/uni-transition/uni-transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue","uid":"c061f9e9-641"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXRyYW5zaXRpb24vY29tcG9uZW50cy91bmktdHJhbnNpdGlvbi91bmktdHJhbnNpdGlvbi52dWU","uid":"c061f9e9-643"}]},{"name":"uni_modules/uview-plus/components/u-text/u-text.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text","children":[{"uid":"c061f9e9-645","name":"u-text.vue?vue&type=style&index=0&scoped=8194d41c&lang.scss"},{"uid":"c061f9e9-647","name":"u-text.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","uid":"c061f9e9-649"}]},{"name":"components/firstui/fui-icon/fui-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon","children":[{"uid":"c061f9e9-651","name":"fui-icon.js"},{"uid":"c061f9e9-653","name":"fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css"},{"uid":"c061f9e9-655","name":"fui-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","uid":"c061f9e9-657"}]},{"name":"uni_modules/uview-plus/components/u-link/u-link.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link","children":[{"uid":"c061f9e9-659","name":"u-link.vue?vue&type=style&index=0&scoped=d6e711cb&lang.scss"},{"uid":"c061f9e9-661","name":"u-link.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","uid":"c061f9e9-663"}]}],"isRoot":true},"nodeParts":{"c061f9e9-1":{"renderedLength":485,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-0"},"c061f9e9-3":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-2"},"c061f9e9-5":{"renderedLength":394,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-4"},"c061f9e9-7":{"renderedLength":1450,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-6"},"c061f9e9-9":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-8"},"c061f9e9-11":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-10"},"c061f9e9-13":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-12"},"c061f9e9-15":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-14"},"c061f9e9-17":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-16"},"c061f9e9-19":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-18"},"c061f9e9-21":{"renderedLength":957,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-20"},"c061f9e9-23":{"renderedLength":721,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-22"},"c061f9e9-25":{"renderedLength":82,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-24"},"c061f9e9-27":{"renderedLength":5518,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-26"},"c061f9e9-29":{"renderedLength":2717,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-28"},"c061f9e9-31":{"renderedLength":3781,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-30"},"c061f9e9-33":{"renderedLength":5863,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-32"},"c061f9e9-35":{"renderedLength":982,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-34"},"c061f9e9-37":{"renderedLength":6055,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-36"},"c061f9e9-39":{"renderedLength":32368,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-38"},"c061f9e9-41":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-40"},"c061f9e9-43":{"renderedLength":150964,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-42"},"c061f9e9-45":{"renderedLength":23003,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-44"},"c061f9e9-47":{"renderedLength":20355,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-46"},"c061f9e9-49":{"renderedLength":4688,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-48"},"c061f9e9-51":{"renderedLength":6952,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-50"},"c061f9e9-53":{"renderedLength":3962,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-52"},"c061f9e9-55":{"renderedLength":1681,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-54"},"c061f9e9-57":{"renderedLength":214,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-56"},"c061f9e9-59":{"renderedLength":24721,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-58"},"c061f9e9-61":{"renderedLength":562,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-60"},"c061f9e9-63":{"renderedLength":54238,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-62"},"c061f9e9-65":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-64"},"c061f9e9-67":{"renderedLength":1858,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-66"},"c061f9e9-69":{"renderedLength":1310,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-68"},"c061f9e9-71":{"renderedLength":2078,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-70"},"c061f9e9-73":{"renderedLength":7307,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-72"},"c061f9e9-75":{"renderedLength":16306,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-74"},"c061f9e9-77":{"renderedLength":1998,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-76"},"c061f9e9-79":{"renderedLength":2630,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-78"},"c061f9e9-81":{"renderedLength":2993,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-80"},"c061f9e9-83":{"renderedLength":54,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-82"},"c061f9e9-85":{"renderedLength":5935,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-84"},"c061f9e9-87":{"renderedLength":6180,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-86"},"c061f9e9-89":{"renderedLength":6727,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-88"},"c061f9e9-91":{"renderedLength":4122,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-90"},"c061f9e9-93":{"renderedLength":2382,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-92"},"c061f9e9-95":{"renderedLength":732,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-94"},"c061f9e9-97":{"renderedLength":2129,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-96"},"c061f9e9-99":{"renderedLength":2026,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-98"},"c061f9e9-101":{"renderedLength":1754,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-100"},"c061f9e9-103":{"renderedLength":7521,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-102"},"c061f9e9-105":{"renderedLength":3376,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-104"},"c061f9e9-107":{"renderedLength":7077,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-106"},"c061f9e9-109":{"renderedLength":1312,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-108"},"c061f9e9-111":{"renderedLength":1396,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-110"},"c061f9e9-113":{"renderedLength":274,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-112"},"c061f9e9-115":{"renderedLength":4155,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-114"},"c061f9e9-117":{"renderedLength":2256,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-116"},"c061f9e9-119":{"renderedLength":3587,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-118"},"c061f9e9-121":{"renderedLength":4420,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-120"},"c061f9e9-123":{"renderedLength":5171,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-122"},"c061f9e9-125":{"renderedLength":1300,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-124"},"c061f9e9-127":{"renderedLength":1799,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-126"},"c061f9e9-129":{"renderedLength":3233,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-128"},"c061f9e9-131":{"renderedLength":4129,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-130"},"c061f9e9-133":{"renderedLength":4427,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-132"},"c061f9e9-135":{"renderedLength":13491,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-134"},"c061f9e9-137":{"renderedLength":4447,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-136"},"c061f9e9-139":{"renderedLength":845,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-138"},"c061f9e9-141":{"renderedLength":3135,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-140"},"c061f9e9-143":{"renderedLength":7509,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-142"},"c061f9e9-145":{"renderedLength":221,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-144"},"c061f9e9-147":{"renderedLength":5812,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-146"},"c061f9e9-149":{"renderedLength":4675,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-148"},"c061f9e9-151":{"renderedLength":4601,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-150"},"c061f9e9-153":{"renderedLength":948,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-152"},"c061f9e9-155":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-154"},"c061f9e9-157":{"renderedLength":873,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-156"},"c061f9e9-159":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-158"},"c061f9e9-161":{"renderedLength":488,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-160"},"c061f9e9-163":{"renderedLength":358,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-162"},"c061f9e9-165":{"renderedLength":622,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-164"},"c061f9e9-167":{"renderedLength":615,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-166"},"c061f9e9-169":{"renderedLength":487,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-168"},"c061f9e9-171":{"renderedLength":619,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-170"},"c061f9e9-173":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-172"},"c061f9e9-175":{"renderedLength":585,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-174"},"c061f9e9-177":{"renderedLength":594,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-176"},"c061f9e9-179":{"renderedLength":995,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-178"},"c061f9e9-181":{"renderedLength":1126,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-180"},"c061f9e9-183":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-182"},"c061f9e9-185":{"renderedLength":647,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-184"},"c061f9e9-187":{"renderedLength":383,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-186"},"c061f9e9-189":{"renderedLength":596,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-188"},"c061f9e9-191":{"renderedLength":718,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-190"},"c061f9e9-193":{"renderedLength":353,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-192"},"c061f9e9-195":{"renderedLength":473,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-194"},"c061f9e9-197":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-196"},"c061f9e9-199":{"renderedLength":401,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-198"},"c061f9e9-201":{"renderedLength":374,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-200"},"c061f9e9-203":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-202"},"c061f9e9-205":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-204"},"c061f9e9-207":{"renderedLength":419,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-206"},"c061f9e9-209":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-208"},"c061f9e9-211":{"renderedLength":1010,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-210"},"c061f9e9-213":{"renderedLength":500,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-212"},"c061f9e9-215":{"renderedLength":538,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-214"},"c061f9e9-217":{"renderedLength":492,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-216"},"c061f9e9-219":{"renderedLength":536,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-218"},"c061f9e9-221":{"renderedLength":408,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-220"},"c061f9e9-223":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-222"},"c061f9e9-225":{"renderedLength":357,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-224"},"c061f9e9-227":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-226"},"c061f9e9-229":{"renderedLength":694,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-228"},"c061f9e9-231":{"renderedLength":427,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-230"},"c061f9e9-233":{"renderedLength":478,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-232"},"c061f9e9-235":{"renderedLength":1016,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-234"},"c061f9e9-237":{"renderedLength":720,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-236"},"c061f9e9-239":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-238"},"c061f9e9-241":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-240"},"c061f9e9-243":{"renderedLength":581,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-242"},"c061f9e9-245":{"renderedLength":666,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-244"},"c061f9e9-247":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-246"},"c061f9e9-249":{"renderedLength":702,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-248"},"c061f9e9-251":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-250"},"c061f9e9-253":{"renderedLength":786,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-252"},"c061f9e9-255":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-254"},"c061f9e9-257":{"renderedLength":734,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-256"},"c061f9e9-259":{"renderedLength":28917,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-258"},"c061f9e9-261":{"renderedLength":605,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-260"},"c061f9e9-263":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-262"},"c061f9e9-265":{"renderedLength":835,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-264"},"c061f9e9-267":{"renderedLength":395,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-266"},"c061f9e9-269":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-268"},"c061f9e9-271":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-270"},"c061f9e9-273":{"renderedLength":716,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-272"},"c061f9e9-275":{"renderedLength":684,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-274"},"c061f9e9-277":{"renderedLength":582,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-276"},"c061f9e9-279":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-278"},"c061f9e9-281":{"renderedLength":587,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-280"},"c061f9e9-283":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-282"},"c061f9e9-285":{"renderedLength":348,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-284"},"c061f9e9-287":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-286"},"c061f9e9-289":{"renderedLength":494,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-288"},"c061f9e9-291":{"renderedLength":916,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-290"},"c061f9e9-293":{"renderedLength":535,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-292"},"c061f9e9-295":{"renderedLength":563,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-294"},"c061f9e9-297":{"renderedLength":602,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-296"},"c061f9e9-299":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-298"},"c061f9e9-301":{"renderedLength":474,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-300"},"c061f9e9-303":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-302"},"c061f9e9-305":{"renderedLength":442,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-304"},"c061f9e9-307":{"renderedLength":529,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-306"},"c061f9e9-309":{"renderedLength":342,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-308"},"c061f9e9-311":{"renderedLength":489,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-310"},"c061f9e9-313":{"renderedLength":966,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-312"},"c061f9e9-315":{"renderedLength":468,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-314"},"c061f9e9-317":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-316"},"c061f9e9-319":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-318"},"c061f9e9-321":{"renderedLength":435,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-320"},"c061f9e9-323":{"renderedLength":700,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-322"},"c061f9e9-325":{"renderedLength":574,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-324"},"c061f9e9-327":{"renderedLength":782,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-326"},"c061f9e9-329":{"renderedLength":773,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-328"},"c061f9e9-331":{"renderedLength":617,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-330"},"c061f9e9-333":{"renderedLength":467,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-332"},"c061f9e9-335":{"renderedLength":559,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-334"},"c061f9e9-337":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-336"},"c061f9e9-339":{"renderedLength":785,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-338"},"c061f9e9-341":{"renderedLength":2672,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-340"},"c061f9e9-343":{"renderedLength":2342,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-342"},"c061f9e9-345":{"renderedLength":1984,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-344"},"c061f9e9-347":{"renderedLength":692,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-346"},"c061f9e9-349":{"renderedLength":528,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-348"},"c061f9e9-351":{"renderedLength":3369,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-350"},"c061f9e9-353":{"renderedLength":1199,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-352"},"c061f9e9-355":{"renderedLength":106,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-354"},"c061f9e9-357":{"renderedLength":2368,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-356"},"c061f9e9-359":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-358"},"c061f9e9-361":{"renderedLength":8405,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-360"},"c061f9e9-363":{"renderedLength":545,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-362"},"c061f9e9-365":{"renderedLength":366,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-364"},"c061f9e9-367":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-366"},"c061f9e9-369":{"renderedLength":364,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-368"},"c061f9e9-371":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-370"},"c061f9e9-373":{"renderedLength":706,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-372"},"c061f9e9-375":{"renderedLength":27130,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-374"},"c061f9e9-377":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-376"},"c061f9e9-379":{"renderedLength":1687,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-378"},"c061f9e9-381":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-380"},"c061f9e9-383":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-382"},"c061f9e9-385":{"renderedLength":6727,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-384"},"c061f9e9-387":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-386"},"c061f9e9-389":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-388"},"c061f9e9-391":{"renderedLength":7246,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-390"},"c061f9e9-393":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-392"},"c061f9e9-395":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-394"},"c061f9e9-397":{"renderedLength":9656,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-396"},"c061f9e9-399":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-398"},"c061f9e9-401":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-400"},"c061f9e9-403":{"renderedLength":1495,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-402"},"c061f9e9-405":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-404"},"c061f9e9-407":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-406"},"c061f9e9-409":{"renderedLength":7705,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-408"},"c061f9e9-411":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-410"},"c061f9e9-413":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-412"},"c061f9e9-415":{"renderedLength":2962,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-414"},"c061f9e9-417":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-416"},"c061f9e9-419":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-418"},"c061f9e9-421":{"renderedLength":11467,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-420"},"c061f9e9-423":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-422"},"c061f9e9-425":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-424"},"c061f9e9-427":{"renderedLength":6018,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-426"},"c061f9e9-429":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-428"},"c061f9e9-431":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-430"},"c061f9e9-433":{"renderedLength":3765,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-432"},"c061f9e9-435":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-434"},"c061f9e9-437":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-436"},"c061f9e9-439":{"renderedLength":3734,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-438"},"c061f9e9-441":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-440"},"c061f9e9-443":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-442"},"c061f9e9-445":{"renderedLength":10212,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-444"},"c061f9e9-447":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-446"},"c061f9e9-449":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-448"},"c061f9e9-451":{"renderedLength":2439,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-450"},"c061f9e9-453":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-452"},"c061f9e9-455":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-454"},"c061f9e9-457":{"renderedLength":6820,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-456"},"c061f9e9-459":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-458"},"c061f9e9-461":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-460"},"c061f9e9-463":{"renderedLength":5225,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-462"},"c061f9e9-465":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-464"},"c061f9e9-467":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-466"},"c061f9e9-469":{"renderedLength":2548,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-468"},"c061f9e9-471":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-470"},"c061f9e9-473":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-472"},"c061f9e9-475":{"renderedLength":6290,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-474"},"c061f9e9-477":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-476"},"c061f9e9-479":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-478"},"c061f9e9-481":{"renderedLength":8529,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-480"},"c061f9e9-483":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-482"},"c061f9e9-485":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-484"},"c061f9e9-487":{"renderedLength":6628,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-486"},"c061f9e9-489":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-488"},"c061f9e9-491":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-490"},"c061f9e9-493":{"renderedLength":5580,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-492"},"c061f9e9-495":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-494"},"c061f9e9-497":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-496"},"c061f9e9-499":{"renderedLength":5084,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-498"},"c061f9e9-501":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-500"},"c061f9e9-503":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-502"},"c061f9e9-505":{"renderedLength":4038,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-504"},"c061f9e9-507":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-506"},"c061f9e9-509":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-508"},"c061f9e9-511":{"renderedLength":26981,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-510"},"c061f9e9-513":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-512"},"c061f9e9-515":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-514"},"c061f9e9-517":{"renderedLength":10850,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-516"},"c061f9e9-519":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-518"},"c061f9e9-521":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-520"},"c061f9e9-523":{"renderedLength":14113,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-522"},"c061f9e9-525":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-524"},"c061f9e9-527":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-526"},"c061f9e9-529":{"renderedLength":5696,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-528"},"c061f9e9-531":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-530"},"c061f9e9-533":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-532"},"c061f9e9-535":{"renderedLength":9049,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-534"},"c061f9e9-537":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-536"},"c061f9e9-539":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-538"},"c061f9e9-541":{"renderedLength":11970,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-540"},"c061f9e9-543":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-542"},"c061f9e9-545":{"renderedLength":6533,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-544"},"c061f9e9-547":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-546"},"c061f9e9-549":{"renderedLength":3576,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-548"},"c061f9e9-551":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-550"},"c061f9e9-553":{"renderedLength":2670,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-552"},"c061f9e9-555":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-554"},"c061f9e9-557":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-556"},"c061f9e9-559":{"renderedLength":9787,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-558"},"c061f9e9-561":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-560"},"c061f9e9-563":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-562"},"c061f9e9-565":{"renderedLength":4058,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-564"},"c061f9e9-567":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-566"},"c061f9e9-569":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-568"},"c061f9e9-571":{"renderedLength":3296,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-570"},"c061f9e9-573":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-572"},"c061f9e9-575":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-574"},"c061f9e9-577":{"renderedLength":12586,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-576"},"c061f9e9-579":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-578"},"c061f9e9-581":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-580"},"c061f9e9-583":{"renderedLength":7128,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-582"},"c061f9e9-585":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-584"},"c061f9e9-587":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-586"},"c061f9e9-589":{"renderedLength":5747,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-588"},"c061f9e9-591":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-590"},"c061f9e9-593":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-592"},"c061f9e9-595":{"renderedLength":2507,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-594"},"c061f9e9-597":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-596"},"c061f9e9-599":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-598"},"c061f9e9-601":{"renderedLength":2509,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-600"},"c061f9e9-603":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-602"},"c061f9e9-605":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-604"},"c061f9e9-607":{"renderedLength":5769,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-606"},"c061f9e9-609":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-608"},"c061f9e9-611":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-610"},"c061f9e9-613":{"renderedLength":6932,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-612"},"c061f9e9-615":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-614"},"c061f9e9-617":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-616"},"c061f9e9-619":{"renderedLength":3299,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-618"},"c061f9e9-621":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-620"},"c061f9e9-623":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-622"},"c061f9e9-625":{"renderedLength":2815,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-624"},"c061f9e9-627":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-626"},"c061f9e9-629":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-628"},"c061f9e9-631":{"renderedLength":2603,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-630"},"c061f9e9-633":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-632"},"c061f9e9-635":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-634"},"c061f9e9-637":{"renderedLength":5260,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-636"},"c061f9e9-639":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-638"},"c061f9e9-641":{"renderedLength":7122,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-640"},"c061f9e9-643":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-642"},"c061f9e9-645":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-644"},"c061f9e9-647":{"renderedLength":7024,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-646"},"c061f9e9-649":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-648"},"c061f9e9-651":{"renderedLength":4098,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-650"},"c061f9e9-653":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-652"},"c061f9e9-655":{"renderedLength":2806,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-654"},"c061f9e9-657":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-656"},"c061f9e9-659":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-658"},"c061f9e9-661":{"renderedLength":2880,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-660"},"c061f9e9-663":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c061f9e9-662"}},"nodeMetas":{"c061f9e9-0":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages-json-js","moduleParts":{"app.js":"c061f9e9-1"},"imported":[{"uid":"c061f9e9-664"},{"uid":"c061f9e9-380","dynamic":true},{"uid":"c061f9e9-386","dynamic":true},{"uid":"c061f9e9-392","dynamic":true},{"uid":"c061f9e9-398","dynamic":true},{"uid":"c061f9e9-404","dynamic":true},{"uid":"c061f9e9-410","dynamic":true},{"uid":"c061f9e9-416","dynamic":true},{"uid":"c061f9e9-422","dynamic":true},{"uid":"c061f9e9-428","dynamic":true},{"uid":"c061f9e9-434","dynamic":true},{"uid":"c061f9e9-440","dynamic":true},{"uid":"c061f9e9-446","dynamic":true},{"uid":"c061f9e9-452","dynamic":true},{"uid":"c061f9e9-458","dynamic":true},{"uid":"c061f9e9-464","dynamic":true},{"uid":"c061f9e9-470","dynamic":true}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-2":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue?vue&type=style&index=0&lang.scss","moduleParts":{"app.js":"c061f9e9-3"},"imported":[],"importedBy":[{"uid":"c061f9e9-4"}]},"c061f9e9-4":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue","moduleParts":{"app.js":"c061f9e9-5"},"imported":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-2"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-6":{"id":"D:/zcweb/uniapp/temporaryworker/src/main.ts","moduleParts":{"app.js":"c061f9e9-7"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-44"},{"uid":"c061f9e9-0"},{"uid":"c061f9e9-4"},{"uid":"c061f9e9-76"},{"uid":"c061f9e9-28"},{"uid":"c061f9e9-72"},{"uid":"c061f9e9-70"},{"uid":"c061f9e9-68"},{"uid":"c061f9e9-74"},{"uid":"c061f9e9-66"},{"uid":"c061f9e9-26"},{"uid":"c061f9e9-22"},{"uid":"c061f9e9-20"},{"uid":"c061f9e9-370"},{"uid":"c061f9e9-24"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-62"},{"uid":"c061f9e9-30"}],"importedBy":[],"isEntry":true},"c061f9e9-8":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/logo.png","moduleParts":{"common/assets.js":"c061f9e9-9"},"imported":[],"importedBy":[{"uid":"c061f9e9-390"}]},"c061f9e9-10":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/fabu.png","moduleParts":{"common/assets.js":"c061f9e9-11"},"imported":[],"importedBy":[{"uid":"c061f9e9-408"}]},"c061f9e9-12":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/guanli.png","moduleParts":{"common/assets.js":"c061f9e9-13"},"imported":[],"importedBy":[{"uid":"c061f9e9-408"}]},"c061f9e9-14":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/qiye.png","moduleParts":{"common/assets.js":"c061f9e9-15"},"imported":[],"importedBy":[{"uid":"c061f9e9-408"}]},"c061f9e9-16":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/server.png","moduleParts":{"common/assets.js":"c061f9e9-17"},"imported":[],"importedBy":[{"uid":"c061f9e9-408"}]},"c061f9e9-18":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/dingwei.png","moduleParts":{"common/assets.js":"c061f9e9-19"},"imported":[],"importedBy":[{"uid":"c061f9e9-450"}]},"c061f9e9-20":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","moduleParts":{"common/locales/en.js":"c061f9e9-21"},"imported":[],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-22":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","moduleParts":{"common/locales/zh.js":"c061f9e9-23"},"imported":[],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-24":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","moduleParts":{"common/mixin.js":"c061f9e9-25"},"imported":[],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-26":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","moduleParts":{"common/request/http.api.js":"c061f9e9-27"},"imported":[{"uid":"c061f9e9-28"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-28":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","moduleParts":{"uni_modules/uview-plus/index.js":"c061f9e9-29"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-366"},{"uid":"c061f9e9-148"},{"uid":"c061f9e9-150"},{"uid":"c061f9e9-86"},{"uid":"c061f9e9-152"},{"uid":"c061f9e9-154"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-156"},{"uid":"c061f9e9-84"},{"uid":"c061f9e9-158"},{"uid":"c061f9e9-160"},{"uid":"c061f9e9-162"}],"importedBy":[{"uid":"c061f9e9-6"},{"uid":"c061f9e9-4"},{"uid":"c061f9e9-26"},{"uid":"c061f9e9-30"}]},"c061f9e9-30":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/request/request.js","moduleParts":{"common/request/request.js":"c061f9e9-31"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-28"},{"uid":"c061f9e9-66"},{"uid":"c061f9e9-68"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-32":{"id":"\\node_modules\\@vue\\shared\\dist\\shared.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-33"},"imported":[],"importedBy":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-44"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-36"},{"uid":"c061f9e9-64"}]},"c061f9e9-34":{"id":"\\node_modules\\@dcloudio\\uni-i18n\\dist\\uni-i18n.es.js","moduleParts":{"common/vendor.js":"c061f9e9-35"},"imported":[{"uid":"c061f9e9-38"}],"importedBy":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-44"}]},"c061f9e9-36":{"id":"\\node_modules\\@dcloudio\\uni-shared\\dist\\uni-shared.es.js","moduleParts":{"common/vendor.js":"c061f9e9-37"},"imported":[{"uid":"c061f9e9-32"}],"importedBy":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-44"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-64"}]},"c061f9e9-38":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.api.esm.js","moduleParts":{"common/vendor.js":"c061f9e9-39"},"imported":[{"uid":"c061f9e9-32"},{"uid":"c061f9e9-34"},{"uid":"c061f9e9-36"}],"importedBy":[{"uid":"c061f9e9-6"},{"uid":"c061f9e9-28"},{"uid":"c061f9e9-72"},{"uid":"c061f9e9-70"},{"uid":"c061f9e9-68"},{"uid":"c061f9e9-74"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-30"},{"uid":"c061f9e9-34"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-148"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-378"},{"uid":"c061f9e9-384"},{"uid":"c061f9e9-390"},{"uid":"c061f9e9-396"},{"uid":"c061f9e9-408"},{"uid":"c061f9e9-414"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-432"},{"uid":"c061f9e9-438"},{"uid":"c061f9e9-444"},{"uid":"c061f9e9-456"},{"uid":"c061f9e9-462"},{"uid":"c061f9e9-468"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-480"},{"uid":"c061f9e9-486"},{"uid":"c061f9e9-510"},{"uid":"c061f9e9-516"},{"uid":"c061f9e9-564"},{"uid":"c061f9e9-576"},{"uid":"c061f9e9-582"},{"uid":"c061f9e9-600"},{"uid":"c061f9e9-612"},{"uid":"c061f9e9-342"},{"uid":"c061f9e9-646"},{"uid":"c061f9e9-654"},{"uid":"c061f9e9-78"},{"uid":"c061f9e9-660"}]},"c061f9e9-40":{"id":"\u0000plugin-vue:export-helper","moduleParts":{"common/vendor.js":"c061f9e9-41"},"imported":[],"importedBy":[{"uid":"c061f9e9-6"},{"uid":"c061f9e9-4"},{"uid":"c061f9e9-378"},{"uid":"c061f9e9-384"},{"uid":"c061f9e9-390"},{"uid":"c061f9e9-396"},{"uid":"c061f9e9-402"},{"uid":"c061f9e9-408"},{"uid":"c061f9e9-414"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-432"},{"uid":"c061f9e9-438"},{"uid":"c061f9e9-444"},{"uid":"c061f9e9-450"},{"uid":"c061f9e9-456"},{"uid":"c061f9e9-462"},{"uid":"c061f9e9-468"},{"uid":"c061f9e9-474"},{"uid":"c061f9e9-480"},{"uid":"c061f9e9-486"},{"uid":"c061f9e9-492"},{"uid":"c061f9e9-498"},{"uid":"c061f9e9-504"},{"uid":"c061f9e9-510"},{"uid":"c061f9e9-516"},{"uid":"c061f9e9-522"},{"uid":"c061f9e9-528"},{"uid":"c061f9e9-534"},{"uid":"c061f9e9-540"},{"uid":"c061f9e9-544"},{"uid":"c061f9e9-552"},{"uid":"c061f9e9-558"},{"uid":"c061f9e9-564"},{"uid":"c061f9e9-570"},{"uid":"c061f9e9-576"},{"uid":"c061f9e9-582"},{"uid":"c061f9e9-588"},{"uid":"c061f9e9-594"},{"uid":"c061f9e9-600"},{"uid":"c061f9e9-606"},{"uid":"c061f9e9-612"},{"uid":"c061f9e9-618"},{"uid":"c061f9e9-624"},{"uid":"c061f9e9-630"},{"uid":"c061f9e9-636"},{"uid":"c061f9e9-640"},{"uid":"c061f9e9-646"},{"uid":"c061f9e9-654"},{"uid":"c061f9e9-660"}]},"c061f9e9-42":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-vue/dist/vue.runtime.esm.js","moduleParts":{"common/vendor.js":"c061f9e9-43"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-36"},{"uid":"c061f9e9-32"}],"importedBy":[{"uid":"c061f9e9-6"},{"uid":"c061f9e9-44"},{"uid":"c061f9e9-62"},{"uid":"c061f9e9-46"},{"uid":"c061f9e9-378"},{"uid":"c061f9e9-384"},{"uid":"c061f9e9-390"},{"uid":"c061f9e9-396"},{"uid":"c061f9e9-402"},{"uid":"c061f9e9-408"},{"uid":"c061f9e9-414"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-432"},{"uid":"c061f9e9-438"},{"uid":"c061f9e9-444"},{"uid":"c061f9e9-450"},{"uid":"c061f9e9-456"},{"uid":"c061f9e9-462"},{"uid":"c061f9e9-468"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-474"},{"uid":"c061f9e9-480"},{"uid":"c061f9e9-486"},{"uid":"c061f9e9-492"},{"uid":"c061f9e9-498"},{"uid":"c061f9e9-504"},{"uid":"c061f9e9-510"},{"uid":"c061f9e9-516"},{"uid":"c061f9e9-522"},{"uid":"c061f9e9-528"},{"uid":"c061f9e9-534"},{"uid":"c061f9e9-540"},{"uid":"c061f9e9-552"},{"uid":"c061f9e9-558"},{"uid":"c061f9e9-564"},{"uid":"c061f9e9-570"},{"uid":"c061f9e9-576"},{"uid":"c061f9e9-582"},{"uid":"c061f9e9-588"},{"uid":"c061f9e9-594"},{"uid":"c061f9e9-600"},{"uid":"c061f9e9-606"},{"uid":"c061f9e9-612"},{"uid":"c061f9e9-618"},{"uid":"c061f9e9-624"},{"uid":"c061f9e9-630"},{"uid":"c061f9e9-636"},{"uid":"c061f9e9-640"},{"uid":"c061f9e9-646"},{"uid":"c061f9e9-654"},{"uid":"c061f9e9-140"},{"uid":"c061f9e9-660"}]},"c061f9e9-44":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.mp.esm.js","moduleParts":{"common/vendor.js":"c061f9e9-45"},"imported":[{"uid":"c061f9e9-36"},{"uid":"c061f9e9-32"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-34"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-46":{"id":"\\node_modules\\vuex\\dist\\vuex.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-47"},"imported":[{"uid":"c061f9e9-42"}],"importedBy":[{"uid":"c061f9e9-76"},{"uid":"c061f9e9-396"}]},"c061f9e9-48":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/shared/dist/shared.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-49"},"imported":[],"importedBy":[{"uid":"c061f9e9-62"},{"uid":"c061f9e9-58"},{"uid":"c061f9e9-52"},{"uid":"c061f9e9-54"}]},"c061f9e9-50":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-resolver/dist/message-resolver.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-51"},"imported":[],"importedBy":[{"uid":"c061f9e9-58"}]},"c061f9e9-52":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/runtime/dist/runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-53"},"imported":[{"uid":"c061f9e9-48"}],"importedBy":[{"uid":"c061f9e9-58"}]},"c061f9e9-54":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-compiler/dist/message-compiler.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-55"},"imported":[{"uid":"c061f9e9-48"}],"importedBy":[{"uid":"c061f9e9-58"}]},"c061f9e9-56":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/devtools-if/dist/devtools-if.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-57"},"imported":[],"importedBy":[{"uid":"c061f9e9-58"}]},"c061f9e9-58":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/core-base/dist/core-base.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-59"},"imported":[{"uid":"c061f9e9-48"},{"uid":"c061f9e9-50"},{"uid":"c061f9e9-52"},{"uid":"c061f9e9-54"},{"uid":"c061f9e9-56"}],"importedBy":[{"uid":"c061f9e9-62"}]},"c061f9e9-60":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/vue-devtools/dist/vue-devtools.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-61"},"imported":[],"importedBy":[{"uid":"c061f9e9-62"}]},"c061f9e9-62":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"c061f9e9-63"},"imported":[{"uid":"c061f9e9-48"},{"uid":"c061f9e9-58"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-60"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-64":{"id":"\\node_modules\\@dcloudio\\uni-app\\dist\\uni-app.es.js","moduleParts":{"common/vendor.js":"c061f9e9-65"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-32"},{"uid":"c061f9e9-36"}],"importedBy":[{"uid":"c061f9e9-384"},{"uid":"c061f9e9-396"},{"uid":"c061f9e9-414"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-438"},{"uid":"c061f9e9-444"},{"uid":"c061f9e9-456"},{"uid":"c061f9e9-462"}]},"c061f9e9-66":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","moduleParts":{"common/setting/constVarsHelper.js":"c061f9e9-67"},"imported":[],"importedBy":[{"uid":"c061f9e9-6"},{"uid":"c061f9e9-72"},{"uid":"c061f9e9-30"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-444"}]},"c061f9e9-68":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","moduleParts":{"common/utils/dbHelper.js":"c061f9e9-69"},"imported":[{"uid":"c061f9e9-38"}],"importedBy":[{"uid":"c061f9e9-6"},{"uid":"c061f9e9-72"},{"uid":"c061f9e9-30"}]},"c061f9e9-70":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","moduleParts":{"common/utils/commonHelper.js":"c061f9e9-71"},"imported":[{"uid":"c061f9e9-38"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-72":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","moduleParts":{"common/utils/uploadHelper.js":"c061f9e9-73"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-66"},{"uid":"c061f9e9-68"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-74":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/util.js","moduleParts":{"common/utils/util.js":"c061f9e9-75"},"imported":[{"uid":"c061f9e9-38"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-76":{"id":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","moduleParts":{"store/index.js":"c061f9e9-77"},"imported":[{"uid":"c061f9e9-46"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-78":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/createAnimation.js","moduleParts":{"uni_modules/uni-transition/components/uni-transition/createAnimation.js":"c061f9e9-79"},"imported":[{"uid":"c061f9e9-38"}],"importedBy":[{"uid":"c061f9e9-640"}]},"c061f9e9-80":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/props.js","moduleParts":{"uni_modules/uview-plus/components/u-avatar/props.js":"c061f9e9-81"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"},{"uid":"c061f9e9-86"}],"importedBy":[{"uid":"c061f9e9-558"}]},"c061f9e9-82":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","moduleParts":{"uni_modules/uview-plus/libs/vue.js":"c061f9e9-83"},"imported":[],"importedBy":[{"uid":"c061f9e9-370"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-104"},{"uid":"c061f9e9-122"},{"uid":"c061f9e9-124"},{"uid":"c061f9e9-128"},{"uid":"c061f9e9-118"},{"uid":"c061f9e9-96"},{"uid":"c061f9e9-106"},{"uid":"c061f9e9-98"},{"uid":"c061f9e9-136"},{"uid":"c061f9e9-120"},{"uid":"c061f9e9-100"},{"uid":"c061f9e9-80"},{"uid":"c061f9e9-126"},{"uid":"c061f9e9-90"},{"uid":"c061f9e9-112"},{"uid":"c061f9e9-114"},{"uid":"c061f9e9-92"},{"uid":"c061f9e9-94"},{"uid":"c061f9e9-368"},{"uid":"c061f9e9-372"},{"uid":"c061f9e9-88"},{"uid":"c061f9e9-138"},{"uid":"c061f9e9-108"},{"uid":"c061f9e9-116"},{"uid":"c061f9e9-130"},{"uid":"c061f9e9-110"}]},"c061f9e9-84":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","moduleParts":{"uni_modules/uview-plus/libs/config/props.js":"c061f9e9-85"},"imported":[{"uid":"c061f9e9-156"},{"uid":"c061f9e9-164"},{"uid":"c061f9e9-166"},{"uid":"c061f9e9-168"},{"uid":"c061f9e9-170"},{"uid":"c061f9e9-172"},{"uid":"c061f9e9-174"},{"uid":"c061f9e9-176"},{"uid":"c061f9e9-178"},{"uid":"c061f9e9-180"},{"uid":"c061f9e9-182"},{"uid":"c061f9e9-184"},{"uid":"c061f9e9-186"},{"uid":"c061f9e9-188"},{"uid":"c061f9e9-190"},{"uid":"c061f9e9-192"},{"uid":"c061f9e9-194"},{"uid":"c061f9e9-196"},{"uid":"c061f9e9-198"},{"uid":"c061f9e9-200"},{"uid":"c061f9e9-202"},{"uid":"c061f9e9-204"},{"uid":"c061f9e9-206"},{"uid":"c061f9e9-208"},{"uid":"c061f9e9-210"},{"uid":"c061f9e9-212"},{"uid":"c061f9e9-214"},{"uid":"c061f9e9-216"},{"uid":"c061f9e9-218"},{"uid":"c061f9e9-220"},{"uid":"c061f9e9-222"},{"uid":"c061f9e9-224"},{"uid":"c061f9e9-226"},{"uid":"c061f9e9-228"},{"uid":"c061f9e9-230"},{"uid":"c061f9e9-232"},{"uid":"c061f9e9-234"},{"uid":"c061f9e9-236"},{"uid":"c061f9e9-238"},{"uid":"c061f9e9-240"},{"uid":"c061f9e9-242"},{"uid":"c061f9e9-244"},{"uid":"c061f9e9-246"},{"uid":"c061f9e9-248"},{"uid":"c061f9e9-250"},{"uid":"c061f9e9-252"},{"uid":"c061f9e9-254"},{"uid":"c061f9e9-256"},{"uid":"c061f9e9-258"},{"uid":"c061f9e9-260"},{"uid":"c061f9e9-262"},{"uid":"c061f9e9-264"},{"uid":"c061f9e9-266"},{"uid":"c061f9e9-268"},{"uid":"c061f9e9-270"},{"uid":"c061f9e9-272"},{"uid":"c061f9e9-274"},{"uid":"c061f9e9-276"},{"uid":"c061f9e9-278"},{"uid":"c061f9e9-280"},{"uid":"c061f9e9-282"},{"uid":"c061f9e9-284"},{"uid":"c061f9e9-286"},{"uid":"c061f9e9-288"},{"uid":"c061f9e9-290"},{"uid":"c061f9e9-292"},{"uid":"c061f9e9-294"},{"uid":"c061f9e9-296"},{"uid":"c061f9e9-298"},{"uid":"c061f9e9-300"},{"uid":"c061f9e9-302"},{"uid":"c061f9e9-304"},{"uid":"c061f9e9-306"},{"uid":"c061f9e9-308"},{"uid":"c061f9e9-310"},{"uid":"c061f9e9-312"},{"uid":"c061f9e9-314"},{"uid":"c061f9e9-316"},{"uid":"c061f9e9-318"},{"uid":"c061f9e9-320"},{"uid":"c061f9e9-322"},{"uid":"c061f9e9-324"},{"uid":"c061f9e9-326"},{"uid":"c061f9e9-328"},{"uid":"c061f9e9-330"},{"uid":"c061f9e9-332"},{"uid":"c061f9e9-334"},{"uid":"c061f9e9-336"},{"uid":"c061f9e9-338"}],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-528"},{"uid":"c061f9e9-104"},{"uid":"c061f9e9-122"},{"uid":"c061f9e9-124"},{"uid":"c061f9e9-128"},{"uid":"c061f9e9-118"},{"uid":"c061f9e9-96"},{"uid":"c061f9e9-106"},{"uid":"c061f9e9-98"},{"uid":"c061f9e9-136"},{"uid":"c061f9e9-120"},{"uid":"c061f9e9-100"},{"uid":"c061f9e9-80"},{"uid":"c061f9e9-126"},{"uid":"c061f9e9-90"},{"uid":"c061f9e9-112"},{"uid":"c061f9e9-114"},{"uid":"c061f9e9-92"},{"uid":"c061f9e9-94"},{"uid":"c061f9e9-88"},{"uid":"c061f9e9-138"},{"uid":"c061f9e9-108"},{"uid":"c061f9e9-116"},{"uid":"c061f9e9-130"},{"uid":"c061f9e9-110"}]},"c061f9e9-86":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","moduleParts":{"uni_modules/uview-plus/libs/function/test.js":"c061f9e9-87"},"imported":[],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-492"},{"uid":"c061f9e9-544"},{"uid":"c061f9e9-588"},{"uid":"c061f9e9-612"},{"uid":"c061f9e9-80"},{"uid":"c061f9e9-132"}]},"c061f9e9-88":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/props.js","moduleParts":{"uni_modules/uview-plus/components/u-button/props.js":"c061f9e9-89"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-548"}]},"c061f9e9-90":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/props.js","moduleParts":{"uni_modules/uview-plus/components/u-cell/props.js":"c061f9e9-91"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-588"}]},"c061f9e9-92":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse-item/props.js","moduleParts":{"uni_modules/uview-plus/components/u-collapse-item/props.js":"c061f9e9-93"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-612"}]},"c061f9e9-94":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse/props.js","moduleParts":{"uni_modules/uview-plus/components/u-collapse/props.js":"c061f9e9-95"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-618"}]},"c061f9e9-96":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/props.js","moduleParts":{"uni_modules/uview-plus/components/u-empty/props.js":"c061f9e9-97"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-504"}]},"c061f9e9-98":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/props.js","moduleParts":{"uni_modules/uview-plus/components/u-form-item/props.js":"c061f9e9-99"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-528"}]},"c061f9e9-100":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/props.js","moduleParts":{"uni_modules/uview-plus/components/u-form/props.js":"c061f9e9-101"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-544"}]},"c061f9e9-102":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/icons.js","moduleParts":{"uni_modules/uview-plus/components/u-icon/icons.js":"c061f9e9-103"},"imported":[],"importedBy":[{"uid":"c061f9e9-474"}]},"c061f9e9-104":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/props.js","moduleParts":{"uni_modules/uview-plus/components/u-icon/props.js":"c061f9e9-105"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-474"}]},"c061f9e9-106":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/props.js","moduleParts":{"uni_modules/uview-plus/components/u-input/props.js":"c061f9e9-107"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-522"}]},"c061f9e9-108":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/props.js","moduleParts":{"uni_modules/uview-plus/components/u-line/props.js":"c061f9e9-109"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-630"}]},"c061f9e9-110":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/props.js","moduleParts":{"uni_modules/uview-plus/components/u-link/props.js":"c061f9e9-111"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-660"}]},"c061f9e9-112":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/props.js","moduleParts":{"uni_modules/uview-plus/components/u-list-item/props.js":"c061f9e9-113"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-594"}]},"c061f9e9-114":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/props.js","moduleParts":{"uni_modules/uview-plus/components/u-list/props.js":"c061f9e9-115"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-606"}]},"c061f9e9-116":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/props.js","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/props.js":"c061f9e9-117"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-636"}]},"c061f9e9-118":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/props.js","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/props.js":"c061f9e9-119"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-498"}]},"c061f9e9-120":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/props.js","moduleParts":{"uni_modules/uview-plus/components/u-number-box/props.js":"c061f9e9-121"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-540"}]},"c061f9e9-122":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/props.js","moduleParts":{"uni_modules/uview-plus/components/u-search/props.js":"c061f9e9-123"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-480"}]},"c061f9e9-124":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/props.js","moduleParts":{"uni_modules/uview-plus/components/u-sticky/props.js":"c061f9e9-125"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-486"}]},"c061f9e9-126":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/props.js","moduleParts":{"uni_modules/uview-plus/components/u-subsection/props.js":"c061f9e9-127"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-582"}]},"c061f9e9-128":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/props.js","moduleParts":{"uni_modules/uview-plus/components/u-tag/props.js":"c061f9e9-129"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-492"}]},"c061f9e9-130":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/props.js","moduleParts":{"uni_modules/uview-plus/components/u-text/props.js":"c061f9e9-131"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-646"}]},"c061f9e9-132":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/value.js","moduleParts":{"uni_modules/uview-plus/components/u-text/value.js":"c061f9e9-133"},"imported":[{"uid":"c061f9e9-134"},{"uid":"c061f9e9-86"}],"importedBy":[{"uid":"c061f9e9-646"}]},"c061f9e9-134":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","moduleParts":{"uni_modules/uview-plus/libs/function/index.js":"c061f9e9-135"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-86"},{"uid":"c061f9e9-340"},{"uid":"c061f9e9-156"}],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-370"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-148"},{"uid":"c061f9e9-474"},{"uid":"c061f9e9-480"},{"uid":"c061f9e9-486"},{"uid":"c061f9e9-498"},{"uid":"c061f9e9-504"},{"uid":"c061f9e9-522"},{"uid":"c061f9e9-528"},{"uid":"c061f9e9-534"},{"uid":"c061f9e9-540"},{"uid":"c061f9e9-544"},{"uid":"c061f9e9-558"},{"uid":"c061f9e9-582"},{"uid":"c061f9e9-588"},{"uid":"c061f9e9-594"},{"uid":"c061f9e9-606"},{"uid":"c061f9e9-612"},{"uid":"c061f9e9-548"},{"uid":"c061f9e9-624"},{"uid":"c061f9e9-630"},{"uid":"c061f9e9-636"},{"uid":"c061f9e9-646"},{"uid":"c061f9e9-140"},{"uid":"c061f9e9-132"},{"uid":"c061f9e9-660"}]},"c061f9e9-136":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/props.js","moduleParts":{"uni_modules/uview-plus/components/u-textarea/props.js":"c061f9e9-137"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-534"}]},"c061f9e9-138":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/props.js","moduleParts":{"uni_modules/uview-plus/components/u-transition/props.js":"c061f9e9-139"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-84"}],"importedBy":[{"uid":"c061f9e9-624"}]},"c061f9e9-140":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/transition.js","moduleParts":{"uni_modules/uview-plus/components/u-transition/transition.js":"c061f9e9-141"},"imported":[{"uid":"c061f9e9-42"},{"uid":"c061f9e9-134"}],"importedBy":[{"uid":"c061f9e9-624"}]},"c061f9e9-142":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mixin.js":"c061f9e9-143"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-82"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-86"},{"uid":"c061f9e9-148"}],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-474"},{"uid":"c061f9e9-480"},{"uid":"c061f9e9-486"},{"uid":"c061f9e9-492"},{"uid":"c061f9e9-498"},{"uid":"c061f9e9-504"},{"uid":"c061f9e9-522"},{"uid":"c061f9e9-528"},{"uid":"c061f9e9-534"},{"uid":"c061f9e9-540"},{"uid":"c061f9e9-544"},{"uid":"c061f9e9-558"},{"uid":"c061f9e9-582"},{"uid":"c061f9e9-588"},{"uid":"c061f9e9-594"},{"uid":"c061f9e9-606"},{"uid":"c061f9e9-612"},{"uid":"c061f9e9-618"},{"uid":"c061f9e9-548"},{"uid":"c061f9e9-624"},{"uid":"c061f9e9-630"},{"uid":"c061f9e9-636"},{"uid":"c061f9e9-646"},{"uid":"c061f9e9-660"}]},"c061f9e9-144":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpMixin.js":"c061f9e9-145"},"imported":[{"uid":"c061f9e9-82"}],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-474"},{"uid":"c061f9e9-480"},{"uid":"c061f9e9-486"},{"uid":"c061f9e9-492"},{"uid":"c061f9e9-498"},{"uid":"c061f9e9-504"},{"uid":"c061f9e9-522"},{"uid":"c061f9e9-528"},{"uid":"c061f9e9-534"},{"uid":"c061f9e9-540"},{"uid":"c061f9e9-544"},{"uid":"c061f9e9-558"},{"uid":"c061f9e9-582"},{"uid":"c061f9e9-588"},{"uid":"c061f9e9-594"},{"uid":"c061f9e9-606"},{"uid":"c061f9e9-612"},{"uid":"c061f9e9-618"},{"uid":"c061f9e9-548"},{"uid":"c061f9e9-624"},{"uid":"c061f9e9-630"},{"uid":"c061f9e9-636"},{"uid":"c061f9e9-646"},{"uid":"c061f9e9-660"}]},"c061f9e9-146":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/Request.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/Request.js":"c061f9e9-147"},"imported":[{"uid":"c061f9e9-354"},{"uid":"c061f9e9-352"},{"uid":"c061f9e9-356"},{"uid":"c061f9e9-358"},{"uid":"c061f9e9-350"},{"uid":"c061f9e9-360"}],"importedBy":[{"uid":"c061f9e9-366"}]},"c061f9e9-148":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","moduleParts":{"uni_modules/uview-plus/libs/util/route.js":"c061f9e9-149"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-134"}],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-142"}]},"c061f9e9-150":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","moduleParts":{"uni_modules/uview-plus/libs/function/colorGradient.js":"c061f9e9-151"},"imported":[],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-636"}]},"c061f9e9-152":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","moduleParts":{"uni_modules/uview-plus/libs/function/debounce.js":"c061f9e9-153"},"imported":[],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-522"}]},"c061f9e9-154":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","moduleParts":{"uni_modules/uview-plus/libs/function/throttle.js":"c061f9e9-155"},"imported":[],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-548"}]},"c061f9e9-156":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","moduleParts":{"uni_modules/uview-plus/libs/config/config.js":"c061f9e9-157"},"imported":[],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-84"},{"uid":"c061f9e9-226"},{"uid":"c061f9e9-242"},{"uid":"c061f9e9-248"},{"uid":"c061f9e9-474"}]},"c061f9e9-158":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","moduleParts":{"uni_modules/uview-plus/libs/config/zIndex.js":"c061f9e9-159"},"imported":[],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-486"}]},"c061f9e9-160":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","moduleParts":{"uni_modules/uview-plus/libs/config/color.js":"c061f9e9-161"},"imported":[],"importedBy":[{"uid":"c061f9e9-28"},{"uid":"c061f9e9-256"},{"uid":"c061f9e9-528"},{"uid":"c061f9e9-548"}]},"c061f9e9-162":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","moduleParts":{"uni_modules/uview-plus/libs/function/platform.js":"c061f9e9-163"},"imported":[],"importedBy":[{"uid":"c061f9e9-28"}]},"c061f9e9-164":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/actionSheet.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/actionSheet.js":"c061f9e9-165"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-166":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/album.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/album.js":"c061f9e9-167"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-168":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/alert.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/alert.js":"c061f9e9-169"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-170":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/avatar.js":"c061f9e9-171"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-172":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatarGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/avatarGroup.js":"c061f9e9-173"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-174":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/backtop.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/backtop.js":"c061f9e9-175"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-176":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/badge.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/badge.js":"c061f9e9-177"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-178":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/button.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/button.js":"c061f9e9-179"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-180":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/calendar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/calendar.js":"c061f9e9-181"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-182":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/carKeyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/carKeyboard.js":"c061f9e9-183"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-184":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cell.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/cell.js":"c061f9e9-185"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-186":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cellGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/cellGroup.js":"c061f9e9-187"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-188":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkbox.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/checkbox.js":"c061f9e9-189"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-190":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkboxGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/checkboxGroup.js":"c061f9e9-191"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-192":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/circleProgress.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/circleProgress.js":"c061f9e9-193"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-194":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/code.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/code.js":"c061f9e9-195"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-196":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/codeInput.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/codeInput.js":"c061f9e9-197"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-198":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/col.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/col.js":"c061f9e9-199"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-200":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapse.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/collapse.js":"c061f9e9-201"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-202":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapseItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/collapseItem.js":"c061f9e9-203"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-204":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/columnNotice.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/columnNotice.js":"c061f9e9-205"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-206":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countDown.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/countDown.js":"c061f9e9-207"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-208":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countTo.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/countTo.js":"c061f9e9-209"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-210":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/datetimePicker.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/datetimePicker.js":"c061f9e9-211"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-212":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/divider.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/divider.js":"c061f9e9-213"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-214":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/empty.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/empty.js":"c061f9e9-215"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-216":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/form.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/form.js":"c061f9e9-217"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-218":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/formItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/formItem.js":"c061f9e9-219"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-220":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gap.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/gap.js":"c061f9e9-221"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-222":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/grid.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/grid.js":"c061f9e9-223"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-224":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gridItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/gridItem.js":"c061f9e9-225"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-226":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/icon.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/icon.js":"c061f9e9-227"},"imported":[{"uid":"c061f9e9-156"}],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-228":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/image.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/image.js":"c061f9e9-229"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-230":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexAnchor.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/indexAnchor.js":"c061f9e9-231"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-232":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexList.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/indexList.js":"c061f9e9-233"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-234":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/input.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/input.js":"c061f9e9-235"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-236":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/keyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/keyboard.js":"c061f9e9-237"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-238":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/line.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/line.js":"c061f9e9-239"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-240":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/lineProgress.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/lineProgress.js":"c061f9e9-241"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-242":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/link.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/link.js":"c061f9e9-243"},"imported":[{"uid":"c061f9e9-156"}],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-244":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/list.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/list.js":"c061f9e9-245"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-246":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/listItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/listItem.js":"c061f9e9-247"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-248":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingIcon.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadingIcon.js":"c061f9e9-249"},"imported":[{"uid":"c061f9e9-156"}],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-250":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingPage.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadingPage.js":"c061f9e9-251"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-252":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadmore.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadmore.js":"c061f9e9-253"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-254":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/modal.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/modal.js":"c061f9e9-255"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-256":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/navbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/navbar.js":"c061f9e9-257"},"imported":[{"uid":"c061f9e9-160"}],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-258":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noNetwork.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/noNetwork.js":"c061f9e9-259"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-260":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noticeBar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/noticeBar.js":"c061f9e9-261"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-262":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/notify.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/notify.js":"c061f9e9-263"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-264":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberBox.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/numberBox.js":"c061f9e9-265"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-266":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberKeyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/numberKeyboard.js":"c061f9e9-267"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-268":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/overlay.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/overlay.js":"c061f9e9-269"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-270":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/parse.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/parse.js":"c061f9e9-271"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-272":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/picker.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/picker.js":"c061f9e9-273"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-274":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/popup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/popup.js":"c061f9e9-275"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-276":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radio.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/radio.js":"c061f9e9-277"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-278":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radioGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/radioGroup.js":"c061f9e9-279"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-280":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rate.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/rate.js":"c061f9e9-281"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-282":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/readMore.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/readMore.js":"c061f9e9-283"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-284":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/row.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/row.js":"c061f9e9-285"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-286":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rowNotice.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/rowNotice.js":"c061f9e9-287"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-288":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/scrollList.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/scrollList.js":"c061f9e9-289"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-290":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/search.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/search.js":"c061f9e9-291"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-292":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/section.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/section.js":"c061f9e9-293"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-294":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/skeleton.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/skeleton.js":"c061f9e9-295"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-296":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/slider.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/slider.js":"c061f9e9-297"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-298":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/statusBar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/statusBar.js":"c061f9e9-299"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-300":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/steps.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/steps.js":"c061f9e9-301"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-302":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/stepsItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/stepsItem.js":"c061f9e9-303"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-304":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/sticky.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/sticky.js":"c061f9e9-305"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-306":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/subsection.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/subsection.js":"c061f9e9-307"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-308":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeAction.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipeAction.js":"c061f9e9-309"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-310":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeActionItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipeActionItem.js":"c061f9e9-311"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-312":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swiper.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swiper.js":"c061f9e9-313"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-314":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipterIndicator.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipterIndicator.js":"c061f9e9-315"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-316":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/switch.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/switch.js":"c061f9e9-317"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-318":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabbar.js":"c061f9e9-319"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-320":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbarItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabbarItem.js":"c061f9e9-321"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-322":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabs.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabs.js":"c061f9e9-323"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-324":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tag.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tag.js":"c061f9e9-325"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-326":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/text.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/text.js":"c061f9e9-327"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-328":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/textarea.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/textarea.js":"c061f9e9-329"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-330":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toast.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/toast.js":"c061f9e9-331"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-332":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toolbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/toolbar.js":"c061f9e9-333"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-334":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tooltip.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tooltip.js":"c061f9e9-335"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-336":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/transition.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/transition.js":"c061f9e9-337"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-338":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/upload.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/upload.js":"c061f9e9-339"},"imported":[],"importedBy":[{"uid":"c061f9e9-84"}]},"c061f9e9-340":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","moduleParts":{"uni_modules/uview-plus/libs/function/digit.js":"c061f9e9-341"},"imported":[],"importedBy":[{"uid":"c061f9e9-134"}]},"c061f9e9-342":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/adapters/index.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/adapters/index.js":"c061f9e9-343"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-344"},{"uid":"c061f9e9-346"},{"uid":"c061f9e9-348"},{"uid":"c061f9e9-350"}],"importedBy":[{"uid":"c061f9e9-354"}]},"c061f9e9-344":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js":"c061f9e9-345"},"imported":[{"uid":"c061f9e9-350"}],"importedBy":[{"uid":"c061f9e9-342"}]},"c061f9e9-346":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js":"c061f9e9-347"},"imported":[{"uid":"c061f9e9-362"},{"uid":"c061f9e9-364"}],"importedBy":[{"uid":"c061f9e9-342"}]},"c061f9e9-348":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/settle.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/settle.js":"c061f9e9-349"},"imported":[],"importedBy":[{"uid":"c061f9e9-342"}]},"c061f9e9-350":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/utils.js":"c061f9e9-351"},"imported":[],"importedBy":[{"uid":"c061f9e9-146"},{"uid":"c061f9e9-356"},{"uid":"c061f9e9-342"},{"uid":"c061f9e9-344"}]},"c061f9e9-352":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js":"c061f9e9-353"},"imported":[],"importedBy":[{"uid":"c061f9e9-146"}]},"c061f9e9-354":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js":"c061f9e9-355"},"imported":[{"uid":"c061f9e9-342"}],"importedBy":[{"uid":"c061f9e9-146"}]},"c061f9e9-356":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js":"c061f9e9-357"},"imported":[{"uid":"c061f9e9-350"}],"importedBy":[{"uid":"c061f9e9-146"}]},"c061f9e9-358":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/defaults.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/defaults.js":"c061f9e9-359"},"imported":[],"importedBy":[{"uid":"c061f9e9-146"}]},"c061f9e9-360":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils/clone.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/utils/clone.js":"c061f9e9-361"},"imported":[],"importedBy":[{"uid":"c061f9e9-146"}]},"c061f9e9-362":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js":"c061f9e9-363"},"imported":[],"importedBy":[{"uid":"c061f9e9-346"}]},"c061f9e9-364":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js":"c061f9e9-365"},"imported":[],"importedBy":[{"uid":"c061f9e9-346"}]},"c061f9e9-366":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/index.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/index.js":"c061f9e9-367"},"imported":[{"uid":"c061f9e9-146"}],"importedBy":[{"uid":"c061f9e9-28"}]},"c061f9e9-368":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/button.js":"c061f9e9-369"},"imported":[{"uid":"c061f9e9-82"}],"importedBy":[{"uid":"c061f9e9-548"},{"uid":"c061f9e9-646"}]},"c061f9e9-370":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpShare.js":"c061f9e9-371"},"imported":[{"uid":"c061f9e9-82"},{"uid":"c061f9e9-134"}],"importedBy":[{"uid":"c061f9e9-6"}]},"c061f9e9-372":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/openType.js":"c061f9e9-373"},"imported":[{"uid":"c061f9e9-82"}],"importedBy":[{"uid":"c061f9e9-548"},{"uid":"c061f9e9-646"}]},"c061f9e9-374":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/async-validator.js","moduleParts":{"uni_modules/uview-plus/libs/util/async-validator.js":"c061f9e9-375"},"imported":[],"importedBy":[{"uid":"c061f9e9-544"}]},"c061f9e9-376":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/default/index.js":"c061f9e9-377"},"imported":[],"importedBy":[{"uid":"c061f9e9-378"}]},"c061f9e9-378":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue","moduleParts":{"pages/default/index.js":"c061f9e9-379"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-376"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true}],"importedBy":[{"uid":"c061f9e9-380"}]},"c061f9e9-380":{"id":"uniPage://cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","moduleParts":{"pages/default/index.js":"c061f9e9-381"},"imported":[{"uid":"c061f9e9-378"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-382":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/index/index.js":"c061f9e9-383"},"imported":[],"importedBy":[{"uid":"c061f9e9-384"}]},"c061f9e9-384":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue","moduleParts":{"pages/index/index.js":"c061f9e9-385"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-382"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-482","dynamic":true},{"uid":"c061f9e9-488","dynamic":true},{"uid":"c061f9e9-494","dynamic":true},{"uid":"c061f9e9-500","dynamic":true},{"uid":"c061f9e9-506","dynamic":true},{"uid":"c061f9e9-512","dynamic":true}],"importedBy":[{"uid":"c061f9e9-386"}]},"c061f9e9-386":{"id":"uniPage://cGFnZXMvaW5kZXgvaW5kZXgudnVl","moduleParts":{"pages/index/index.js":"c061f9e9-387"},"imported":[{"uid":"c061f9e9-384"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-388":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue?vue&type=style&index=0&scoped=45258083&lang.scss","moduleParts":{"pages/login/index.js":"c061f9e9-389"},"imported":[],"importedBy":[{"uid":"c061f9e9-390"}]},"c061f9e9-390":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue","moduleParts":{"pages/login/index.js":"c061f9e9-391"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-8"},{"uid":"c061f9e9-388"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-518","dynamic":true}],"importedBy":[{"uid":"c061f9e9-392"}]},"c061f9e9-392":{"id":"uniPage://cGFnZXMvbG9naW4vaW5kZXgudnVl","moduleParts":{"pages/login/index.js":"c061f9e9-393"},"imported":[{"uid":"c061f9e9-390"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-394":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/release/index.js":"c061f9e9-395"},"imported":[],"importedBy":[{"uid":"c061f9e9-396"}]},"c061f9e9-396":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue","moduleParts":{"pages/release/index.js":"c061f9e9-397"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-46"},{"uid":"c061f9e9-394"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-524","dynamic":true},{"uid":"c061f9e9-530","dynamic":true},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-536","dynamic":true},{"uid":"c061f9e9-542","dynamic":true},{"uid":"c061f9e9-494","dynamic":true},{"uid":"c061f9e9-546","dynamic":true},{"uid":"c061f9e9-554","dynamic":true},{"uid":"c061f9e9-512","dynamic":true}],"importedBy":[{"uid":"c061f9e9-398"}]},"c061f9e9-398":{"id":"uniPage://cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","moduleParts":{"pages/release/index.js":"c061f9e9-399"},"imported":[{"uid":"c061f9e9-396"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-400":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/wallet/index.js":"c061f9e9-401"},"imported":[],"importedBy":[{"uid":"c061f9e9-402"}]},"c061f9e9-402":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue","moduleParts":{"pages/wallet/index.js":"c061f9e9-403"},"imported":[{"uid":"c061f9e9-42"},{"uid":"c061f9e9-400"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-554","dynamic":true},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-506","dynamic":true}],"importedBy":[{"uid":"c061f9e9-404"}]},"c061f9e9-404":{"id":"uniPage://cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","moduleParts":{"pages/wallet/index.js":"c061f9e9-405"},"imported":[{"uid":"c061f9e9-402"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-406":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/mine/index.js":"c061f9e9-407"},"imported":[],"importedBy":[{"uid":"c061f9e9-408"}]},"c061f9e9-408":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue","moduleParts":{"pages/mine/index.js":"c061f9e9-409"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-10"},{"uid":"c061f9e9-12"},{"uid":"c061f9e9-14"},{"uid":"c061f9e9-16"},{"uid":"c061f9e9-406"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true}],"importedBy":[{"uid":"c061f9e9-410"}]},"c061f9e9-410":{"id":"uniPage://cGFnZXMvbWluZS9pbmRleC52dWU","moduleParts":{"pages/mine/index.js":"c061f9e9-411"},"imported":[{"uid":"c061f9e9-408"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-412":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/mine.js":"c061f9e9-413"},"imported":[],"importedBy":[{"uid":"c061f9e9-414"}]},"c061f9e9-414":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue","moduleParts":{"pages/mine/mine.js":"c061f9e9-415"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-412"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-560","dynamic":true},{"uid":"c061f9e9-566","dynamic":true},{"uid":"c061f9e9-572","dynamic":true}],"importedBy":[{"uid":"c061f9e9-416"}]},"c061f9e9-416":{"id":"uniPage://cGFnZXMvbWluZS9taW5lLnZ1ZQ","moduleParts":{"pages/mine/mine.js":"c061f9e9-417"},"imported":[{"uid":"c061f9e9-414"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-418":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/apply.js":"c061f9e9-419"},"imported":[],"importedBy":[{"uid":"c061f9e9-420"}]},"c061f9e9-420":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue","moduleParts":{"pages/mine/apply.js":"c061f9e9-421"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-66"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-418"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-578","dynamic":true},{"uid":"c061f9e9-530","dynamic":true},{"uid":"c061f9e9-524","dynamic":true},{"uid":"c061f9e9-536","dynamic":true},{"uid":"c061f9e9-554","dynamic":true},{"uid":"c061f9e9-546","dynamic":true}],"importedBy":[{"uid":"c061f9e9-422"}]},"c061f9e9-422":{"id":"uniPage://cGFnZXMvbWluZS9hcHBseS52dWU","moduleParts":{"pages/mine/apply.js":"c061f9e9-423"},"imported":[{"uid":"c061f9e9-420"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-424":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/checkin/index.js":"c061f9e9-425"},"imported":[],"importedBy":[{"uid":"c061f9e9-426"}]},"c061f9e9-426":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/index.vue","moduleParts":{"pages/checkin/index.js":"c061f9e9-427"},"imported":[{"uid":"c061f9e9-42"},{"uid":"c061f9e9-424"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-482","dynamic":true},{"uid":"c061f9e9-584","dynamic":true},{"uid":"c061f9e9-488","dynamic":true},{"uid":"c061f9e9-494","dynamic":true},{"uid":"c061f9e9-524","dynamic":true},{"uid":"c061f9e9-554","dynamic":true},{"uid":"c061f9e9-500","dynamic":true},{"uid":"c061f9e9-506","dynamic":true},{"uid":"c061f9e9-512","dynamic":true}],"importedBy":[{"uid":"c061f9e9-428"}]},"c061f9e9-428":{"id":"uniPage://cGFnZXNcY2hlY2tpblxpbmRleC52dWU","moduleParts":{"pages/checkin/index.js":"c061f9e9-429"},"imported":[{"uid":"c061f9e9-426"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-430":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/record.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/checkin/record.js":"c061f9e9-431"},"imported":[],"importedBy":[{"uid":"c061f9e9-432"}]},"c061f9e9-432":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/record.vue","moduleParts":{"pages/checkin/record.js":"c061f9e9-433"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-430"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-560","dynamic":true},{"uid":"c061f9e9-590","dynamic":true},{"uid":"c061f9e9-596","dynamic":true},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-602","dynamic":true},{"uid":"c061f9e9-608","dynamic":true},{"uid":"c061f9e9-554","dynamic":true}],"importedBy":[{"uid":"c061f9e9-434"}]},"c061f9e9-434":{"id":"uniPage://cGFnZXNcY2hlY2tpblxyZWNvcmQudnVl","moduleParts":{"pages/checkin/record.js":"c061f9e9-435"},"imported":[{"uid":"c061f9e9-432"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-436":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/index.js":"c061f9e9-437"},"imported":[],"importedBy":[{"uid":"c061f9e9-438"}]},"c061f9e9-438":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue","moduleParts":{"pages/enterprise/index.js":"c061f9e9-439"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-436"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-560","dynamic":true},{"uid":"c061f9e9-566","dynamic":true},{"uid":"c061f9e9-614","dynamic":true},{"uid":"c061f9e9-620","dynamic":true},{"uid":"c061f9e9-572","dynamic":true}],"importedBy":[{"uid":"c061f9e9-440"}]},"c061f9e9-440":{"id":"uniPage://cGFnZXNcZW50ZXJwcmlzZVxpbmRleC52dWU","moduleParts":{"pages/enterprise/index.js":"c061f9e9-441"},"imported":[{"uid":"c061f9e9-438"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-442":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/enterprise.js":"c061f9e9-443"},"imported":[],"importedBy":[{"uid":"c061f9e9-444"}]},"c061f9e9-444":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue","moduleParts":{"pages/enterprise/enterprise.js":"c061f9e9-445"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-66"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-442"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-578","dynamic":true},{"uid":"c061f9e9-530","dynamic":true},{"uid":"c061f9e9-524","dynamic":true},{"uid":"c061f9e9-536","dynamic":true},{"uid":"c061f9e9-554","dynamic":true},{"uid":"c061f9e9-546","dynamic":true}],"importedBy":[{"uid":"c061f9e9-446"}]},"c061f9e9-446":{"id":"uniPage://cGFnZXNcZW50ZXJwcmlzZVxlbnRlcnByaXNlLnZ1ZQ","moduleParts":{"pages/enterprise/enterprise.js":"c061f9e9-447"},"imported":[{"uid":"c061f9e9-444"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-448":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/detail/detail.js":"c061f9e9-449"},"imported":[],"importedBy":[{"uid":"c061f9e9-450"}]},"c061f9e9-450":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue","moduleParts":{"pages/detail/detail.js":"c061f9e9-451"},"imported":[{"uid":"c061f9e9-42"},{"uid":"c061f9e9-18"},{"uid":"c061f9e9-448"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-554","dynamic":true}],"importedBy":[{"uid":"c061f9e9-452"}]},"c061f9e9-452":{"id":"uniPage://cGFnZXNcZGV0YWlsXGRldGFpbC52dWU","moduleParts":{"pages/detail/detail.js":"c061f9e9-453"},"imported":[{"uid":"c061f9e9-450"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-454":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/order/order.js":"c061f9e9-455"},"imported":[],"importedBy":[{"uid":"c061f9e9-456"}]},"c061f9e9-456":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue","moduleParts":{"pages/order/order.js":"c061f9e9-457"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-454"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-482","dynamic":true},{"uid":"c061f9e9-488","dynamic":true},{"uid":"c061f9e9-494","dynamic":true},{"uid":"c061f9e9-500","dynamic":true},{"uid":"c061f9e9-506","dynamic":true},{"uid":"c061f9e9-512","dynamic":true}],"importedBy":[{"uid":"c061f9e9-458"}]},"c061f9e9-458":{"id":"uniPage://cGFnZXNcb3JkZXJcb3JkZXIudnVl","moduleParts":{"pages/order/order.js":"c061f9e9-459"},"imported":[{"uid":"c061f9e9-456"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-460":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/detail.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/order/detail.js":"c061f9e9-461"},"imported":[],"importedBy":[{"uid":"c061f9e9-462"}]},"c061f9e9-462":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/detail.vue","moduleParts":{"pages/order/detail.js":"c061f9e9-463"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-64"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-460"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-560","dynamic":true},{"uid":"c061f9e9-554","dynamic":true},{"uid":"c061f9e9-590","dynamic":true},{"uid":"c061f9e9-596","dynamic":true},{"uid":"c061f9e9-608","dynamic":true}],"importedBy":[{"uid":"c061f9e9-464"}]},"c061f9e9-464":{"id":"uniPage://cGFnZXNcb3JkZXJcZGV0YWlsLnZ1ZQ","moduleParts":{"pages/order/detail.js":"c061f9e9-465"},"imported":[{"uid":"c061f9e9-462"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-466":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/worker.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/order/worker.js":"c061f9e9-467"},"imported":[],"importedBy":[{"uid":"c061f9e9-468"}]},"c061f9e9-468":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/worker.vue","moduleParts":{"pages/order/worker.js":"c061f9e9-469"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-466"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-560","dynamic":true},{"uid":"c061f9e9-590","dynamic":true},{"uid":"c061f9e9-596","dynamic":true},{"uid":"c061f9e9-608","dynamic":true},{"uid":"c061f9e9-554","dynamic":true}],"importedBy":[{"uid":"c061f9e9-470"}]},"c061f9e9-470":{"id":"uniPage://cGFnZXNcb3JkZXJcd29ya2VyLnZ1ZQ","moduleParts":{"pages/order/worker.js":"c061f9e9-471"},"imported":[{"uid":"c061f9e9-468"}],"importedBy":[{"uid":"c061f9e9-0"}]},"c061f9e9-472":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"c061f9e9-473"},"imported":[],"importedBy":[{"uid":"c061f9e9-474"}]},"c061f9e9-474":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/u-icon.vue","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"c061f9e9-475"},"imported":[{"uid":"c061f9e9-102"},{"uid":"c061f9e9-104"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-156"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-472"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-476"}]},"c061f9e9-476":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"c061f9e9-477"},"imported":[{"uid":"c061f9e9-474"}],"importedBy":[{"uid":"c061f9e9-378"},{"uid":"c061f9e9-396"},{"uid":"c061f9e9-402"},{"uid":"c061f9e9-408"},{"uid":"c061f9e9-432"},{"uid":"c061f9e9-450"},{"uid":"c061f9e9-480"},{"uid":"c061f9e9-492"},{"uid":"c061f9e9-504"},{"uid":"c061f9e9-522"},{"uid":"c061f9e9-528"},{"uid":"c061f9e9-540"},{"uid":"c061f9e9-552"},{"uid":"c061f9e9-558"},{"uid":"c061f9e9-588"},{"uid":"c061f9e9-600"},{"uid":"c061f9e9-612"},{"uid":"c061f9e9-646"}]},"c061f9e9-478":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/u-search.vue?vue&type=style&index=0&scoped=db25ac38&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"c061f9e9-479"},"imported":[],"importedBy":[{"uid":"c061f9e9-480"}]},"c061f9e9-480":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/u-search.vue","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"c061f9e9-481"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-122"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-478"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true}],"importedBy":[{"uid":"c061f9e9-482"}]},"c061f9e9-482":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2VhcmNoL3Utc2VhcmNoLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"c061f9e9-483"},"imported":[{"uid":"c061f9e9-480"}],"importedBy":[{"uid":"c061f9e9-384"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-456"}]},"c061f9e9-484":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"c061f9e9-485"},"imported":[],"importedBy":[{"uid":"c061f9e9-486"}]},"c061f9e9-486":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/u-sticky.vue","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"c061f9e9-487"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-124"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-158"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-484"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-488"}]},"c061f9e9-488":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"c061f9e9-489"},"imported":[{"uid":"c061f9e9-486"}],"importedBy":[{"uid":"c061f9e9-384"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-456"}]},"c061f9e9-490":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"c061f9e9-491"},"imported":[],"importedBy":[{"uid":"c061f9e9-492"}]},"c061f9e9-492":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/u-tag.vue","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"c061f9e9-493"},"imported":[{"uid":"c061f9e9-128"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-86"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-490"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-626","dynamic":true}],"importedBy":[{"uid":"c061f9e9-494"}]},"c061f9e9-494":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"c061f9e9-495"},"imported":[{"uid":"c061f9e9-492"}],"importedBy":[{"uid":"c061f9e9-384"},{"uid":"c061f9e9-396"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-456"}]},"c061f9e9-496":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/u-loadmore.vue?vue&type=style&index=0&scoped=80ed34f9&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"c061f9e9-497"},"imported":[],"importedBy":[{"uid":"c061f9e9-498"}]},"c061f9e9-498":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/u-loadmore.vue","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"c061f9e9-499"},"imported":[{"uid":"c061f9e9-118"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-496"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-632","dynamic":true},{"uid":"c061f9e9-638","dynamic":true}],"importedBy":[{"uid":"c061f9e9-500"}]},"c061f9e9-500":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZG1vcmUvdS1sb2FkbW9yZS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"c061f9e9-501"},"imported":[{"uid":"c061f9e9-498"}],"importedBy":[{"uid":"c061f9e9-384"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-456"}]},"c061f9e9-502":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"c061f9e9-503"},"imported":[],"importedBy":[{"uid":"c061f9e9-504"}]},"c061f9e9-504":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/u-empty.vue","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"c061f9e9-505"},"imported":[{"uid":"c061f9e9-96"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-502"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true}],"importedBy":[{"uid":"c061f9e9-506"}]},"c061f9e9-506":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"c061f9e9-507"},"imported":[{"uid":"c061f9e9-504"}],"importedBy":[{"uid":"c061f9e9-384"},{"uid":"c061f9e9-402"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-456"}]},"c061f9e9-508":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker/fui-date-picker.vue?vue&type=style&index=0&scoped=42055a14&lang.css","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"c061f9e9-509"},"imported":[],"importedBy":[{"uid":"c061f9e9-510"}]},"c061f9e9-510":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker/fui-date-picker.vue","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"c061f9e9-511"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-508"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-512"}]},"c061f9e9-512":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1kYXRlLXBpY2tlci9mdWktZGF0ZS1waWNrZXIudnVl","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"c061f9e9-513"},"imported":[{"uid":"c061f9e9-510"}],"importedBy":[{"uid":"c061f9e9-384"},{"uid":"c061f9e9-396"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-456"}]},"c061f9e9-514":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue?vue&type=style&index=0&lang.scss","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"c061f9e9-515"},"imported":[],"importedBy":[{"uid":"c061f9e9-516"}]},"c061f9e9-516":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"c061f9e9-517"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-514"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-642","dynamic":true}],"importedBy":[{"uid":"c061f9e9-518"}]},"c061f9e9-518":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXBvcHVwL2NvbXBvbmVudHMvdW5pLXBvcHVwL3VuaS1wb3B1cC52dWU","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"c061f9e9-519"},"imported":[{"uid":"c061f9e9-516"}],"importedBy":[{"uid":"c061f9e9-390"}]},"c061f9e9-520":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"c061f9e9-521"},"imported":[],"importedBy":[{"uid":"c061f9e9-522"}]},"c061f9e9-522":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/u-input.vue","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"c061f9e9-523"},"imported":[{"uid":"c061f9e9-106"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-152"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-520"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true}],"importedBy":[{"uid":"c061f9e9-524"}]},"c061f9e9-524":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"c061f9e9-525"},"imported":[{"uid":"c061f9e9-522"}],"importedBy":[{"uid":"c061f9e9-396"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-444"}]},"c061f9e9-526":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"c061f9e9-527"},"imported":[],"importedBy":[{"uid":"c061f9e9-528"}]},"c061f9e9-528":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/u-form-item.vue","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"c061f9e9-529"},"imported":[{"uid":"c061f9e9-98"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-84"},{"uid":"c061f9e9-160"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-526"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-632","dynamic":true}],"importedBy":[{"uid":"c061f9e9-530"}]},"c061f9e9-530":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"c061f9e9-531"},"imported":[{"uid":"c061f9e9-528"}],"importedBy":[{"uid":"c061f9e9-396"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-444"}]},"c061f9e9-532":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"c061f9e9-533"},"imported":[],"importedBy":[{"uid":"c061f9e9-534"}]},"c061f9e9-534":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/u-textarea.vue","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"c061f9e9-535"},"imported":[{"uid":"c061f9e9-136"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-532"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-536"}]},"c061f9e9-536":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"c061f9e9-537"},"imported":[{"uid":"c061f9e9-534"}],"importedBy":[{"uid":"c061f9e9-396"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-444"}]},"c061f9e9-538":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"c061f9e9-539"},"imported":[],"importedBy":[{"uid":"c061f9e9-540"}]},"c061f9e9-540":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/u-number-box.vue","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"c061f9e9-541"},"imported":[{"uid":"c061f9e9-120"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-538"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true}],"importedBy":[{"uid":"c061f9e9-542"}]},"c061f9e9-542":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"c061f9e9-543"},"imported":[{"uid":"c061f9e9-540"}],"importedBy":[{"uid":"c061f9e9-396"}]},"c061f9e9-544":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/u-form.vue","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"c061f9e9-545"},"imported":[{"uid":"c061f9e9-100"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-374"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-86"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-546"}]},"c061f9e9-546":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"c061f9e9-547"},"imported":[{"uid":"c061f9e9-544"}],"importedBy":[{"uid":"c061f9e9-396"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-444"}]},"c061f9e9-548":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue?vue&type=script&lang.ts","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"c061f9e9-549"},"imported":[{"uid":"c061f9e9-368"},{"uid":"c061f9e9-372"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-88"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-154"},{"uid":"c061f9e9-160"}],"importedBy":[{"uid":"c061f9e9-552"}]},"c061f9e9-550":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"c061f9e9-551"},"imported":[],"importedBy":[{"uid":"c061f9e9-552"}]},"c061f9e9-552":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"c061f9e9-553"},"imported":[{"uid":"c061f9e9-548"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-550"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-638","dynamic":true},{"uid":"c061f9e9-476","dynamic":true}],"importedBy":[{"uid":"c061f9e9-554"}]},"c061f9e9-554":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"c061f9e9-555"},"imported":[{"uid":"c061f9e9-552"}],"importedBy":[{"uid":"c061f9e9-396"},{"uid":"c061f9e9-402"},{"uid":"c061f9e9-420"},{"uid":"c061f9e9-426"},{"uid":"c061f9e9-432"},{"uid":"c061f9e9-444"},{"uid":"c061f9e9-450"},{"uid":"c061f9e9-462"},{"uid":"c061f9e9-468"}]},"c061f9e9-556":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/u-avatar.vue?vue&type=style&index=0&scoped=4139b3f3&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"c061f9e9-557"},"imported":[],"importedBy":[{"uid":"c061f9e9-558"}]},"c061f9e9-558":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/u-avatar.vue","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"c061f9e9-559"},"imported":[{"uid":"c061f9e9-80"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-556"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-648","dynamic":true}],"importedBy":[{"uid":"c061f9e9-560"}]},"c061f9e9-560":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"c061f9e9-561"},"imported":[{"uid":"c061f9e9-558"}],"importedBy":[{"uid":"c061f9e9-414"},{"uid":"c061f9e9-432"},{"uid":"c061f9e9-438"},{"uid":"c061f9e9-462"},{"uid":"c061f9e9-468"},{"uid":"c061f9e9-600"}]},"c061f9e9-562":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell/fui-list-cell.vue?vue&type=style&index=0&scoped=77eef2c9&lang.css","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"c061f9e9-563"},"imported":[],"importedBy":[{"uid":"c061f9e9-564"}]},"c061f9e9-564":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell/fui-list-cell.vue","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"c061f9e9-565"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-562"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-566"}]},"c061f9e9-566":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"c061f9e9-567"},"imported":[{"uid":"c061f9e9-564"}],"importedBy":[{"uid":"c061f9e9-414"},{"uid":"c061f9e9-438"}]},"c061f9e9-568":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list/fui-list.vue?vue&type=style&index=0&scoped=61b84bd4&lang.css","moduleParts":{"components/firstui/fui-list/fui-list.js":"c061f9e9-569"},"imported":[],"importedBy":[{"uid":"c061f9e9-570"}]},"c061f9e9-570":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list/fui-list.vue","moduleParts":{"components/firstui/fui-list/fui-list.js":"c061f9e9-571"},"imported":[{"uid":"c061f9e9-42"},{"uid":"c061f9e9-568"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-572"}]},"c061f9e9-572":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","moduleParts":{"components/firstui/fui-list/fui-list.js":"c061f9e9-573"},"imported":[{"uid":"c061f9e9-570"}],"importedBy":[{"uid":"c061f9e9-414"},{"uid":"c061f9e9-438"}]},"c061f9e9-574":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload/fui-upload.vue?vue&type=style&index=0&scoped=2d5d0fa0&lang.css","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"c061f9e9-575"},"imported":[],"importedBy":[{"uid":"c061f9e9-576"}]},"c061f9e9-576":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload/fui-upload.vue","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"c061f9e9-577"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-574"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-656","dynamic":true}],"importedBy":[{"uid":"c061f9e9-578"}]},"c061f9e9-578":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS11cGxvYWQvZnVpLXVwbG9hZC52dWU","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"c061f9e9-579"},"imported":[{"uid":"c061f9e9-576"}],"importedBy":[{"uid":"c061f9e9-420"},{"uid":"c061f9e9-444"}]},"c061f9e9-580":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"c061f9e9-581"},"imported":[],"importedBy":[{"uid":"c061f9e9-582"}]},"c061f9e9-582":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/u-subsection.vue","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"c061f9e9-583"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-126"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-580"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-584"}]},"c061f9e9-584":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"c061f9e9-585"},"imported":[{"uid":"c061f9e9-582"}],"importedBy":[{"uid":"c061f9e9-426"}]},"c061f9e9-586":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/u-cell.vue?vue&type=style&index=0&scoped=3b946341&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"c061f9e9-587"},"imported":[],"importedBy":[{"uid":"c061f9e9-588"}]},"c061f9e9-588":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/u-cell.vue","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"c061f9e9-589"},"imported":[{"uid":"c061f9e9-90"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-86"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-586"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-632","dynamic":true}],"importedBy":[{"uid":"c061f9e9-590"}]},"c061f9e9-590":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY2VsbC91LWNlbGwudnVl","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"c061f9e9-591"},"imported":[{"uid":"c061f9e9-588"}],"importedBy":[{"uid":"c061f9e9-432"},{"uid":"c061f9e9-462"},{"uid":"c061f9e9-468"},{"uid":"c061f9e9-612"}]},"c061f9e9-592":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/u-list-item.vue?vue&type=style&index=0&scoped=f5ff7ac7&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"c061f9e9-593"},"imported":[],"importedBy":[{"uid":"c061f9e9-594"}]},"c061f9e9-594":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/u-list-item.vue","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"c061f9e9-595"},"imported":[{"uid":"c061f9e9-112"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-592"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-596"}]},"c061f9e9-596":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC1pdGVtL3UtbGlzdC1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"c061f9e9-597"},"imported":[{"uid":"c061f9e9-594"}],"importedBy":[{"uid":"c061f9e9-432"},{"uid":"c061f9e9-462"},{"uid":"c061f9e9-468"}]},"c061f9e9-598":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/tem/tem-steps.vue?vue&type=style&index=0&scoped=746e3803&lang.scss","moduleParts":{"components/tem/tem-steps.js":"c061f9e9-599"},"imported":[],"importedBy":[{"uid":"c061f9e9-600"}]},"c061f9e9-600":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/tem/tem-steps.vue","moduleParts":{"components/tem/tem-steps.js":"c061f9e9-601"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-598"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-560","dynamic":true}],"importedBy":[{"uid":"c061f9e9-602"}]},"c061f9e9-602":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy90ZW0vdGVtLXN0ZXBzLnZ1ZQ","moduleParts":{"components/tem/tem-steps.js":"c061f9e9-603"},"imported":[{"uid":"c061f9e9-600"}],"importedBy":[{"uid":"c061f9e9-432"}]},"c061f9e9-604":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/u-list.vue?vue&type=style&index=0&scoped=e8455553&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"c061f9e9-605"},"imported":[],"importedBy":[{"uid":"c061f9e9-606"}]},"c061f9e9-606":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/u-list.vue","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"c061f9e9-607"},"imported":[{"uid":"c061f9e9-114"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-604"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-608"}]},"c061f9e9-608":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC91LWxpc3QudnVl","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"c061f9e9-609"},"imported":[{"uid":"c061f9e9-606"}],"importedBy":[{"uid":"c061f9e9-432"},{"uid":"c061f9e9-462"},{"uid":"c061f9e9-468"}]},"c061f9e9-610":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse-item/u-collapse-item.vue?vue&type=style&index=0&scoped=d8aaa180&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-collapse-item/u-collapse-item.js":"c061f9e9-611"},"imported":[],"importedBy":[{"uid":"c061f9e9-612"}]},"c061f9e9-612":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse-item/u-collapse-item.vue","moduleParts":{"uni_modules/uview-plus/components/u-collapse-item/u-collapse-item.js":"c061f9e9-613"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-92"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-86"},{"uid":"c061f9e9-610"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-590","dynamic":true},{"uid":"c061f9e9-632","dynamic":true}],"importedBy":[{"uid":"c061f9e9-614"}]},"c061f9e9-614":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY29sbGFwc2UtaXRlbS91LWNvbGxhcHNlLWl0ZW0udnVl","moduleParts":{"uni_modules/uview-plus/components/u-collapse-item/u-collapse-item.js":"c061f9e9-615"},"imported":[{"uid":"c061f9e9-612"}],"importedBy":[{"uid":"c061f9e9-438"}]},"c061f9e9-616":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse/u-collapse.vue?vue&type=style&index=0&scoped=e9e3404e&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-collapse/u-collapse.js":"c061f9e9-617"},"imported":[],"importedBy":[{"uid":"c061f9e9-618"}]},"c061f9e9-618":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-collapse/u-collapse.vue","moduleParts":{"uni_modules/uview-plus/components/u-collapse/u-collapse.js":"c061f9e9-619"},"imported":[{"uid":"c061f9e9-94"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-616"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-632","dynamic":true}],"importedBy":[{"uid":"c061f9e9-620"}]},"c061f9e9-620":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY29sbGFwc2UvdS1jb2xsYXBzZS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-collapse/u-collapse.js":"c061f9e9-621"},"imported":[{"uid":"c061f9e9-618"}],"importedBy":[{"uid":"c061f9e9-438"}]},"c061f9e9-622":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"c061f9e9-623"},"imported":[],"importedBy":[{"uid":"c061f9e9-624"}]},"c061f9e9-624":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/u-transition.vue","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"c061f9e9-625"},"imported":[{"uid":"c061f9e9-138"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-140"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-622"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-626"}]},"c061f9e9-626":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"c061f9e9-627"},"imported":[{"uid":"c061f9e9-624"}],"importedBy":[{"uid":"c061f9e9-492"}]},"c061f9e9-628":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"c061f9e9-629"},"imported":[],"importedBy":[{"uid":"c061f9e9-630"}]},"c061f9e9-630":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/u-line.vue","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"c061f9e9-631"},"imported":[{"uid":"c061f9e9-108"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-628"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-632"}]},"c061f9e9-632":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"c061f9e9-633"},"imported":[{"uid":"c061f9e9-630"}],"importedBy":[{"uid":"c061f9e9-498"},{"uid":"c061f9e9-528"},{"uid":"c061f9e9-588"},{"uid":"c061f9e9-612"},{"uid":"c061f9e9-618"}]},"c061f9e9-634":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"c061f9e9-635"},"imported":[],"importedBy":[{"uid":"c061f9e9-636"}]},"c061f9e9-636":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"c061f9e9-637"},"imported":[{"uid":"c061f9e9-116"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-150"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-634"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-638"}]},"c061f9e9-638":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"c061f9e9-639"},"imported":[{"uid":"c061f9e9-636"}],"importedBy":[{"uid":"c061f9e9-498"},{"uid":"c061f9e9-552"}]},"c061f9e9-640":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue","moduleParts":{"uni_modules/uni-transition/components/uni-transition/uni-transition.js":"c061f9e9-641"},"imported":[{"uid":"c061f9e9-78"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-642"}]},"c061f9e9-642":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXRyYW5zaXRpb24vY29tcG9uZW50cy91bmktdHJhbnNpdGlvbi91bmktdHJhbnNpdGlvbi52dWU","moduleParts":{"uni_modules/uni-transition/components/uni-transition/uni-transition.js":"c061f9e9-643"},"imported":[{"uid":"c061f9e9-640"}],"importedBy":[{"uid":"c061f9e9-516"}]},"c061f9e9-644":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/u-text.vue?vue&type=style&index=0&scoped=8194d41c&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"c061f9e9-645"},"imported":[],"importedBy":[{"uid":"c061f9e9-646"}]},"c061f9e9-646":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/u-text.vue","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"c061f9e9-647"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-130"},{"uid":"c061f9e9-132"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-368"},{"uid":"c061f9e9-372"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-644"},{"uid":"c061f9e9-40"},{"uid":"c061f9e9-476","dynamic":true},{"uid":"c061f9e9-662","dynamic":true}],"importedBy":[{"uid":"c061f9e9-648"}]},"c061f9e9-648":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"c061f9e9-649"},"imported":[{"uid":"c061f9e9-646"}],"importedBy":[{"uid":"c061f9e9-558"}]},"c061f9e9-650":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.js","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"c061f9e9-651"},"imported":[],"importedBy":[{"uid":"c061f9e9-654"}]},"c061f9e9-652":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"c061f9e9-653"},"imported":[],"importedBy":[{"uid":"c061f9e9-654"}]},"c061f9e9-654":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"c061f9e9-655"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-650"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-652"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-656"}]},"c061f9e9-656":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"c061f9e9-657"},"imported":[{"uid":"c061f9e9-654"}],"importedBy":[{"uid":"c061f9e9-576"}]},"c061f9e9-658":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/u-link.vue?vue&type=style&index=0&scoped=d6e711cb&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"c061f9e9-659"},"imported":[],"importedBy":[{"uid":"c061f9e9-660"}]},"c061f9e9-660":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/u-link.vue","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"c061f9e9-661"},"imported":[{"uid":"c061f9e9-38"},{"uid":"c061f9e9-110"},{"uid":"c061f9e9-144"},{"uid":"c061f9e9-142"},{"uid":"c061f9e9-134"},{"uid":"c061f9e9-42"},{"uid":"c061f9e9-658"},{"uid":"c061f9e9-40"}],"importedBy":[{"uid":"c061f9e9-662"}]},"c061f9e9-662":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"c061f9e9-663"},"imported":[{"uid":"c061f9e9-660"}],"importedBy":[{"uid":"c061f9e9-646"}]},"c061f9e9-664":{"id":"D:/zcweb/uniapp/temporaryworker/src/manifest-json-js","moduleParts":{},"imported":[],"importedBy":[{"uid":"c061f9e9-0"}]}},"env":{"rollup":"4.20.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}}; + const data = {"version":2,"tree":{"name":"root","children":[{"name":"app.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src","children":[{"uid":"028e7b86-1","name":"pages-json-js"},{"uid":"028e7b86-3","name":"App.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-5","name":"App.vue"},{"uid":"028e7b86-7","name":"main.ts"}]}]},{"name":"common/assets.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/static","children":[{"uid":"028e7b86-9","name":"logo.png"},{"name":"image","children":[{"uid":"028e7b86-11","name":"fabu.png"},{"uid":"028e7b86-13","name":"guanli.png"},{"uid":"028e7b86-15","name":"qiye.png"},{"uid":"028e7b86-17","name":"server.png"},{"uid":"028e7b86-19","name":"dingwei.png"}]}]}]},{"name":"common/locales/en.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","uid":"028e7b86-21"}]},{"name":"common/locales/zh.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","uid":"028e7b86-23"}]},{"name":"common/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","uid":"028e7b86-25"}]},{"name":"common/request/http.api.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","uid":"028e7b86-27"}]},{"name":"uni_modules/uview-plus/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","uid":"028e7b86-29"}]},{"name":"common/request/request.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/request/request.js","uid":"028e7b86-31"}]},{"name":"common/vendor.js","children":[{"name":"node_modules","children":[{"name":"@vue/shared/dist/shared.esm-bundler.js","uid":"028e7b86-33"},{"name":"@dcloudio","children":[{"name":"uni-i18n/dist/uni-i18n.es.js","uid":"028e7b86-35"},{"name":"uni-shared/dist/uni-shared.es.js","uid":"028e7b86-37"},{"name":"uni-app/dist/uni-app.es.js","uid":"028e7b86-65"}]},{"name":"vuex/dist/vuex.esm-bundler.js","uid":"028e7b86-47"}]},{"name":"D:/zcweb/uniapp/temporaryworker/node_modules","children":[{"name":"@dcloudio","children":[{"name":"uni-mp-weixin/dist","children":[{"uid":"028e7b86-39","name":"uni.api.esm.js"},{"uid":"028e7b86-45","name":"uni.mp.esm.js"}]},{"name":"uni-mp-vue/dist/vue.runtime.esm.js","uid":"028e7b86-43"},{"name":"uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","uid":"028e7b86-63"}]},{"name":"@intlify","children":[{"name":"shared/dist/shared.esm-bundler.js","uid":"028e7b86-49"},{"name":"message-resolver/dist/message-resolver.esm-bundler.js","uid":"028e7b86-51"},{"name":"runtime/dist/runtime.esm-bundler.js","uid":"028e7b86-53"},{"name":"message-compiler/dist/message-compiler.esm-bundler.js","uid":"028e7b86-55"},{"name":"devtools-if/dist/devtools-if.esm-bundler.js","uid":"028e7b86-57"},{"name":"core-base/dist/core-base.esm-bundler.js","uid":"028e7b86-59"},{"name":"vue-devtools/dist/vue-devtools.esm-bundler.js","uid":"028e7b86-61"}]}]},{"uid":"028e7b86-41","name":"\u0000plugin-vue:export-helper"}]},{"name":"common/setting/constVarsHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","uid":"028e7b86-67"}]},{"name":"common/utils/dbHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","uid":"028e7b86-69"}]},{"name":"common/utils/commonHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","uid":"028e7b86-71"}]},{"name":"common/utils/uploadHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","uid":"028e7b86-73"}]},{"name":"common/utils/util.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/util.js","uid":"028e7b86-75"}]},{"name":"store/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","uid":"028e7b86-77"}]},{"name":"uni_modules/uni-transition/components/uni-transition/createAnimation.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/createAnimation.js","uid":"028e7b86-79"}]},{"name":"uni_modules/uview-plus/components/u-avatar/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/props.js","uid":"028e7b86-81"}]},{"name":"uni_modules/uview-plus/libs/vue.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","uid":"028e7b86-83"}]},{"name":"uni_modules/uview-plus/libs/config/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","uid":"028e7b86-85"}]},{"name":"uni_modules/uview-plus/libs/function/test.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","uid":"028e7b86-87"}]},{"name":"uni_modules/uview-plus/components/u-button/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/props.js","uid":"028e7b86-89"}]},{"name":"uni_modules/uview-plus/components/u-cell/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/props.js","uid":"028e7b86-91"}]},{"name":"uni_modules/uview-plus/components/u-empty/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/props.js","uid":"028e7b86-93"}]},{"name":"uni_modules/uview-plus/components/u-form-item/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/props.js","uid":"028e7b86-95"}]},{"name":"uni_modules/uview-plus/components/u-form/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/props.js","uid":"028e7b86-97"}]},{"name":"uni_modules/uview-plus/components/u-icon/icons.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/icons.js","uid":"028e7b86-99"}]},{"name":"uni_modules/uview-plus/components/u-icon/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/props.js","uid":"028e7b86-101"}]},{"name":"uni_modules/uview-plus/components/u-input/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/props.js","uid":"028e7b86-103"}]},{"name":"uni_modules/uview-plus/components/u-line/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/props.js","uid":"028e7b86-105"}]},{"name":"uni_modules/uview-plus/components/u-link/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/props.js","uid":"028e7b86-107"}]},{"name":"uni_modules/uview-plus/components/u-list-item/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/props.js","uid":"028e7b86-109"}]},{"name":"uni_modules/uview-plus/components/u-list/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/props.js","uid":"028e7b86-111"}]},{"name":"uni_modules/uview-plus/components/u-loading-icon/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/props.js","uid":"028e7b86-113"}]},{"name":"uni_modules/uview-plus/components/u-loadmore/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/props.js","uid":"028e7b86-115"}]},{"name":"uni_modules/uview-plus/components/u-number-box/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/props.js","uid":"028e7b86-117"}]},{"name":"uni_modules/uview-plus/components/u-search/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/props.js","uid":"028e7b86-119"}]},{"name":"uni_modules/uview-plus/components/u-sticky/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/props.js","uid":"028e7b86-121"}]},{"name":"uni_modules/uview-plus/components/u-subsection/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/props.js","uid":"028e7b86-123"}]},{"name":"uni_modules/uview-plus/components/u-tag/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/props.js","uid":"028e7b86-125"}]},{"name":"uni_modules/uview-plus/components/u-text/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/props.js","uid":"028e7b86-127"}]},{"name":"uni_modules/uview-plus/components/u-text/value.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/value.js","uid":"028e7b86-129"}]},{"name":"uni_modules/uview-plus/libs/function/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","uid":"028e7b86-131"}]},{"name":"uni_modules/uview-plus/components/u-textarea/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/props.js","uid":"028e7b86-133"}]},{"name":"uni_modules/uview-plus/components/u-transition/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/props.js","uid":"028e7b86-135"}]},{"name":"uni_modules/uview-plus/components/u-transition/transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/transition.js","uid":"028e7b86-137"}]},{"name":"uni_modules/uview-plus/libs/mixin/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","uid":"028e7b86-139"}]},{"name":"uni_modules/uview-plus/libs/mixin/mpMixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","uid":"028e7b86-141"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/Request.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/Request.js","uid":"028e7b86-143"}]},{"name":"uni_modules/uview-plus/libs/util/route.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","uid":"028e7b86-145"}]},{"name":"uni_modules/uview-plus/libs/function/colorGradient.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","uid":"028e7b86-147"}]},{"name":"uni_modules/uview-plus/libs/function/debounce.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","uid":"028e7b86-149"}]},{"name":"uni_modules/uview-plus/libs/function/throttle.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","uid":"028e7b86-151"}]},{"name":"uni_modules/uview-plus/libs/config/config.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","uid":"028e7b86-153"}]},{"name":"uni_modules/uview-plus/libs/config/zIndex.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","uid":"028e7b86-155"}]},{"name":"uni_modules/uview-plus/libs/config/color.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","uid":"028e7b86-157"}]},{"name":"uni_modules/uview-plus/libs/function/platform.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","uid":"028e7b86-159"}]},{"name":"uni_modules/uview-plus/libs/config/props/actionSheet.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/actionSheet.js","uid":"028e7b86-161"}]},{"name":"uni_modules/uview-plus/libs/config/props/album.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/album.js","uid":"028e7b86-163"}]},{"name":"uni_modules/uview-plus/libs/config/props/alert.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/alert.js","uid":"028e7b86-165"}]},{"name":"uni_modules/uview-plus/libs/config/props/avatar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatar.js","uid":"028e7b86-167"}]},{"name":"uni_modules/uview-plus/libs/config/props/avatarGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatarGroup.js","uid":"028e7b86-169"}]},{"name":"uni_modules/uview-plus/libs/config/props/backtop.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/backtop.js","uid":"028e7b86-171"}]},{"name":"uni_modules/uview-plus/libs/config/props/badge.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/badge.js","uid":"028e7b86-173"}]},{"name":"uni_modules/uview-plus/libs/config/props/button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/button.js","uid":"028e7b86-175"}]},{"name":"uni_modules/uview-plus/libs/config/props/calendar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/calendar.js","uid":"028e7b86-177"}]},{"name":"uni_modules/uview-plus/libs/config/props/carKeyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/carKeyboard.js","uid":"028e7b86-179"}]},{"name":"uni_modules/uview-plus/libs/config/props/cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cell.js","uid":"028e7b86-181"}]},{"name":"uni_modules/uview-plus/libs/config/props/cellGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cellGroup.js","uid":"028e7b86-183"}]},{"name":"uni_modules/uview-plus/libs/config/props/checkbox.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkbox.js","uid":"028e7b86-185"}]},{"name":"uni_modules/uview-plus/libs/config/props/checkboxGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkboxGroup.js","uid":"028e7b86-187"}]},{"name":"uni_modules/uview-plus/libs/config/props/circleProgress.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/circleProgress.js","uid":"028e7b86-189"}]},{"name":"uni_modules/uview-plus/libs/config/props/code.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/code.js","uid":"028e7b86-191"}]},{"name":"uni_modules/uview-plus/libs/config/props/codeInput.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/codeInput.js","uid":"028e7b86-193"}]},{"name":"uni_modules/uview-plus/libs/config/props/col.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/col.js","uid":"028e7b86-195"}]},{"name":"uni_modules/uview-plus/libs/config/props/collapse.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapse.js","uid":"028e7b86-197"}]},{"name":"uni_modules/uview-plus/libs/config/props/collapseItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapseItem.js","uid":"028e7b86-199"}]},{"name":"uni_modules/uview-plus/libs/config/props/columnNotice.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/columnNotice.js","uid":"028e7b86-201"}]},{"name":"uni_modules/uview-plus/libs/config/props/countDown.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countDown.js","uid":"028e7b86-203"}]},{"name":"uni_modules/uview-plus/libs/config/props/countTo.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countTo.js","uid":"028e7b86-205"}]},{"name":"uni_modules/uview-plus/libs/config/props/datetimePicker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/datetimePicker.js","uid":"028e7b86-207"}]},{"name":"uni_modules/uview-plus/libs/config/props/divider.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/divider.js","uid":"028e7b86-209"}]},{"name":"uni_modules/uview-plus/libs/config/props/empty.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/empty.js","uid":"028e7b86-211"}]},{"name":"uni_modules/uview-plus/libs/config/props/form.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/form.js","uid":"028e7b86-213"}]},{"name":"uni_modules/uview-plus/libs/config/props/formItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/formItem.js","uid":"028e7b86-215"}]},{"name":"uni_modules/uview-plus/libs/config/props/gap.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gap.js","uid":"028e7b86-217"}]},{"name":"uni_modules/uview-plus/libs/config/props/grid.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/grid.js","uid":"028e7b86-219"}]},{"name":"uni_modules/uview-plus/libs/config/props/gridItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gridItem.js","uid":"028e7b86-221"}]},{"name":"uni_modules/uview-plus/libs/config/props/icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/icon.js","uid":"028e7b86-223"}]},{"name":"uni_modules/uview-plus/libs/config/props/image.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/image.js","uid":"028e7b86-225"}]},{"name":"uni_modules/uview-plus/libs/config/props/indexAnchor.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexAnchor.js","uid":"028e7b86-227"}]},{"name":"uni_modules/uview-plus/libs/config/props/indexList.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexList.js","uid":"028e7b86-229"}]},{"name":"uni_modules/uview-plus/libs/config/props/input.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/input.js","uid":"028e7b86-231"}]},{"name":"uni_modules/uview-plus/libs/config/props/keyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/keyboard.js","uid":"028e7b86-233"}]},{"name":"uni_modules/uview-plus/libs/config/props/line.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/line.js","uid":"028e7b86-235"}]},{"name":"uni_modules/uview-plus/libs/config/props/lineProgress.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/lineProgress.js","uid":"028e7b86-237"}]},{"name":"uni_modules/uview-plus/libs/config/props/link.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/link.js","uid":"028e7b86-239"}]},{"name":"uni_modules/uview-plus/libs/config/props/list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/list.js","uid":"028e7b86-241"}]},{"name":"uni_modules/uview-plus/libs/config/props/listItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/listItem.js","uid":"028e7b86-243"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadingIcon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingIcon.js","uid":"028e7b86-245"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadingPage.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingPage.js","uid":"028e7b86-247"}]},{"name":"uni_modules/uview-plus/libs/config/props/loadmore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadmore.js","uid":"028e7b86-249"}]},{"name":"uni_modules/uview-plus/libs/config/props/modal.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/modal.js","uid":"028e7b86-251"}]},{"name":"uni_modules/uview-plus/libs/config/props/navbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/navbar.js","uid":"028e7b86-253"}]},{"name":"uni_modules/uview-plus/libs/config/props/noNetwork.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noNetwork.js","uid":"028e7b86-255"}]},{"name":"uni_modules/uview-plus/libs/config/props/noticeBar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noticeBar.js","uid":"028e7b86-257"}]},{"name":"uni_modules/uview-plus/libs/config/props/notify.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/notify.js","uid":"028e7b86-259"}]},{"name":"uni_modules/uview-plus/libs/config/props/numberBox.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberBox.js","uid":"028e7b86-261"}]},{"name":"uni_modules/uview-plus/libs/config/props/numberKeyboard.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberKeyboard.js","uid":"028e7b86-263"}]},{"name":"uni_modules/uview-plus/libs/config/props/overlay.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/overlay.js","uid":"028e7b86-265"}]},{"name":"uni_modules/uview-plus/libs/config/props/parse.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/parse.js","uid":"028e7b86-267"}]},{"name":"uni_modules/uview-plus/libs/config/props/picker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/picker.js","uid":"028e7b86-269"}]},{"name":"uni_modules/uview-plus/libs/config/props/popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/popup.js","uid":"028e7b86-271"}]},{"name":"uni_modules/uview-plus/libs/config/props/radio.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radio.js","uid":"028e7b86-273"}]},{"name":"uni_modules/uview-plus/libs/config/props/radioGroup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radioGroup.js","uid":"028e7b86-275"}]},{"name":"uni_modules/uview-plus/libs/config/props/rate.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rate.js","uid":"028e7b86-277"}]},{"name":"uni_modules/uview-plus/libs/config/props/readMore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/readMore.js","uid":"028e7b86-279"}]},{"name":"uni_modules/uview-plus/libs/config/props/row.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/row.js","uid":"028e7b86-281"}]},{"name":"uni_modules/uview-plus/libs/config/props/rowNotice.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rowNotice.js","uid":"028e7b86-283"}]},{"name":"uni_modules/uview-plus/libs/config/props/scrollList.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/scrollList.js","uid":"028e7b86-285"}]},{"name":"uni_modules/uview-plus/libs/config/props/search.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/search.js","uid":"028e7b86-287"}]},{"name":"uni_modules/uview-plus/libs/config/props/section.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/section.js","uid":"028e7b86-289"}]},{"name":"uni_modules/uview-plus/libs/config/props/skeleton.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/skeleton.js","uid":"028e7b86-291"}]},{"name":"uni_modules/uview-plus/libs/config/props/slider.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/slider.js","uid":"028e7b86-293"}]},{"name":"uni_modules/uview-plus/libs/config/props/statusBar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/statusBar.js","uid":"028e7b86-295"}]},{"name":"uni_modules/uview-plus/libs/config/props/steps.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/steps.js","uid":"028e7b86-297"}]},{"name":"uni_modules/uview-plus/libs/config/props/stepsItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/stepsItem.js","uid":"028e7b86-299"}]},{"name":"uni_modules/uview-plus/libs/config/props/sticky.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/sticky.js","uid":"028e7b86-301"}]},{"name":"uni_modules/uview-plus/libs/config/props/subsection.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/subsection.js","uid":"028e7b86-303"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipeAction.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeAction.js","uid":"028e7b86-305"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipeActionItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeActionItem.js","uid":"028e7b86-307"}]},{"name":"uni_modules/uview-plus/libs/config/props/swiper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swiper.js","uid":"028e7b86-309"}]},{"name":"uni_modules/uview-plus/libs/config/props/swipterIndicator.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipterIndicator.js","uid":"028e7b86-311"}]},{"name":"uni_modules/uview-plus/libs/config/props/switch.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/switch.js","uid":"028e7b86-313"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbar.js","uid":"028e7b86-315"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabbarItem.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbarItem.js","uid":"028e7b86-317"}]},{"name":"uni_modules/uview-plus/libs/config/props/tabs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabs.js","uid":"028e7b86-319"}]},{"name":"uni_modules/uview-plus/libs/config/props/tag.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tag.js","uid":"028e7b86-321"}]},{"name":"uni_modules/uview-plus/libs/config/props/text.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/text.js","uid":"028e7b86-323"}]},{"name":"uni_modules/uview-plus/libs/config/props/textarea.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/textarea.js","uid":"028e7b86-325"}]},{"name":"uni_modules/uview-plus/libs/config/props/toast.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toast.js","uid":"028e7b86-327"}]},{"name":"uni_modules/uview-plus/libs/config/props/toolbar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toolbar.js","uid":"028e7b86-329"}]},{"name":"uni_modules/uview-plus/libs/config/props/tooltip.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tooltip.js","uid":"028e7b86-331"}]},{"name":"uni_modules/uview-plus/libs/config/props/transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/transition.js","uid":"028e7b86-333"}]},{"name":"uni_modules/uview-plus/libs/config/props/upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/upload.js","uid":"028e7b86-335"}]},{"name":"uni_modules/uview-plus/libs/function/digit.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","uid":"028e7b86-337"}]},{"name":"uni_modules/uview-plus/libs/luch-request/adapters/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/adapters/index.js","uid":"028e7b86-339"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","uid":"028e7b86-341"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","uid":"028e7b86-343"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/settle.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/settle.js","uid":"028e7b86-345"}]},{"name":"uni_modules/uview-plus/libs/luch-request/utils.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils.js","uid":"028e7b86-347"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","uid":"028e7b86-349"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","uid":"028e7b86-351"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","uid":"028e7b86-353"}]},{"name":"uni_modules/uview-plus/libs/luch-request/core/defaults.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/defaults.js","uid":"028e7b86-355"}]},{"name":"uni_modules/uview-plus/libs/luch-request/utils/clone.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils/clone.js","uid":"028e7b86-357"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","uid":"028e7b86-359"}]},{"name":"uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","uid":"028e7b86-361"}]},{"name":"uni_modules/uview-plus/libs/luch-request/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/index.js","uid":"028e7b86-363"}]},{"name":"uni_modules/uview-plus/libs/mixin/button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","uid":"028e7b86-365"}]},{"name":"uni_modules/uview-plus/libs/mixin/mpShare.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","uid":"028e7b86-367"}]},{"name":"uni_modules/uview-plus/libs/mixin/openType.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","uid":"028e7b86-369"}]},{"name":"uni_modules/uview-plus/libs/util/async-validator.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/async-validator.js","uid":"028e7b86-371"}]},{"name":"pages/default/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/default","children":[{"uid":"028e7b86-373","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-375","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","uid":"028e7b86-377"}]},{"name":"pages/index/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/index","children":[{"uid":"028e7b86-379","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-381","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvaW5kZXgvaW5kZXgudnVl","uid":"028e7b86-383"}]},{"name":"pages/login/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/login","children":[{"uid":"028e7b86-385","name":"index.vue?vue&type=style&index=0&scoped=45258083&lang.scss"},{"uid":"028e7b86-387","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbG9naW4vaW5kZXgudnVl","uid":"028e7b86-389"}]},{"name":"pages/release/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/release","children":[{"uid":"028e7b86-391","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-393","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","uid":"028e7b86-395"}]},{"name":"pages/wallet/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet","children":[{"uid":"028e7b86-397","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-399","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","uid":"028e7b86-401"}]},{"name":"pages/mine/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"028e7b86-403","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-405","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9pbmRleC52dWU","uid":"028e7b86-407"}]},{"name":"pages/mine/mine.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"028e7b86-409","name":"mine.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-411","name":"mine.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9taW5lLnZ1ZQ","uid":"028e7b86-413"}]},{"name":"pages/mine/apply.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"028e7b86-415","name":"apply.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-417","name":"apply.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9hcHBseS52dWU","uid":"028e7b86-419"}]},{"name":"pages/test/test.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/test","children":[{"uid":"028e7b86-421","name":"test.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-423","name":"test.vue"}]},{"name":"uniPage:/cGFnZXMvdGVzdC90ZXN0LnZ1ZQ","uid":"028e7b86-425"}]},{"name":"pages/checkin/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"028e7b86-427","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-429","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxpbmRleC52dWU","uid":"028e7b86-431"}]},{"name":"pages/checkin/record.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"028e7b86-433","name":"record.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-435","name":"record.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxyZWNvcmQudnVl","uid":"028e7b86-437"}]},{"name":"pages/checkin/checkin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin","children":[{"uid":"028e7b86-439","name":"checkin.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-441","name":"checkin.vue"}]},{"name":"uniPage:/cGFnZXNcY2hlY2tpblxjaGVja2luLnZ1ZQ","uid":"028e7b86-443"}]},{"name":"pages/enterprise/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"028e7b86-445","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-447","name":"index.vue"}]},{"name":"uniPage:/cGFnZXNcZW50ZXJwcmlzZVxpbmRleC52dWU","uid":"028e7b86-449"}]},{"name":"pages/enterprise/enterprise.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"028e7b86-451","name":"enterprise.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-453","name":"enterprise.vue"}]},{"name":"uniPage:/cGFnZXNcZW50ZXJwcmlzZVxlbnRlcnByaXNlLnZ1ZQ","uid":"028e7b86-455"}]},{"name":"pages/detail/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/detail","children":[{"uid":"028e7b86-457","name":"detail.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-459","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXNcZGV0YWlsXGRldGFpbC52dWU","uid":"028e7b86-461"}]},{"name":"pages/order/order.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"028e7b86-463","name":"order.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-465","name":"order.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcb3JkZXIudnVl","uid":"028e7b86-467"}]},{"name":"pages/order/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"028e7b86-469","name":"detail.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-471","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcZGV0YWlsLnZ1ZQ","uid":"028e7b86-473"}]},{"name":"pages/order/worker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"028e7b86-475","name":"worker.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-477","name":"worker.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcd29ya2VyLnZ1ZQ","uid":"028e7b86-479"}]},{"name":"pages/order/myorder.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order","children":[{"uid":"028e7b86-481","name":"myorder.vue?vue&type=style&index=0&lang.css"},{"uid":"028e7b86-483","name":"myorder.vue"}]},{"name":"uniPage:/cGFnZXNcb3JkZXJcbXlvcmRlci52dWU","uid":"028e7b86-485"}]},{"name":"uni_modules/uview-plus/components/u-icon/u-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon","children":[{"uid":"028e7b86-487","name":"u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss"},{"uid":"028e7b86-489","name":"u-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","uid":"028e7b86-491"}]},{"name":"uni_modules/uview-plus/components/u-search/u-search.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search","children":[{"uid":"028e7b86-493","name":"u-search.vue?vue&type=style&index=0&scoped=db25ac38&lang.scss"},{"uid":"028e7b86-495","name":"u-search.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2VhcmNoL3Utc2VhcmNoLnZ1ZQ","uid":"028e7b86-497"}]},{"name":"uni_modules/uview-plus/components/u-sticky/u-sticky.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky","children":[{"uid":"028e7b86-499","name":"u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss"},{"uid":"028e7b86-501","name":"u-sticky.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","uid":"028e7b86-503"}]},{"name":"uni_modules/uview-plus/components/u-tag/u-tag.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag","children":[{"uid":"028e7b86-505","name":"u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss"},{"uid":"028e7b86-507","name":"u-tag.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","uid":"028e7b86-509"}]},{"name":"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore","children":[{"uid":"028e7b86-511","name":"u-loadmore.vue?vue&type=style&index=0&scoped=80ed34f9&lang.scss"},{"uid":"028e7b86-513","name":"u-loadmore.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZG1vcmUvdS1sb2FkbW9yZS52dWU","uid":"028e7b86-515"}]},{"name":"uni_modules/uview-plus/components/u-empty/u-empty.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty","children":[{"uid":"028e7b86-517","name":"u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss"},{"uid":"028e7b86-519","name":"u-empty.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","uid":"028e7b86-521"}]},{"name":"components/firstui/fui-date-picker/fui-date-picker.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker","children":[{"uid":"028e7b86-523","name":"fui-date-picker.vue?vue&type=style&index=0&scoped=42055a14&lang.css"},{"uid":"028e7b86-525","name":"fui-date-picker.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1kYXRlLXBpY2tlci9mdWktZGF0ZS1waWNrZXIudnVl","uid":"028e7b86-527"}]},{"name":"uni_modules/uni-popup/components/uni-popup/uni-popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup","children":[{"uid":"028e7b86-529","name":"uni-popup.vue?vue&type=style&index=0&lang.scss"},{"uid":"028e7b86-531","name":"uni-popup.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXBvcHVwL2NvbXBvbmVudHMvdW5pLXBvcHVwL3VuaS1wb3B1cC52dWU","uid":"028e7b86-533"}]},{"name":"uni_modules/uview-plus/components/u-input/u-input.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input","children":[{"uid":"028e7b86-535","name":"u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss"},{"uid":"028e7b86-537","name":"u-input.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","uid":"028e7b86-539"}]},{"name":"uni_modules/uview-plus/components/u-form-item/u-form-item.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item","children":[{"uid":"028e7b86-541","name":"u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss"},{"uid":"028e7b86-543","name":"u-form-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","uid":"028e7b86-545"}]},{"name":"uni_modules/uview-plus/components/u-textarea/u-textarea.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea","children":[{"uid":"028e7b86-547","name":"u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss"},{"uid":"028e7b86-549","name":"u-textarea.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","uid":"028e7b86-551"}]},{"name":"uni_modules/uview-plus/components/u-number-box/u-number-box.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box","children":[{"uid":"028e7b86-553","name":"u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss"},{"uid":"028e7b86-555","name":"u-number-box.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","uid":"028e7b86-557"}]},{"name":"uni_modules/uview-plus/components/u-form/u-form.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/u-form.vue","uid":"028e7b86-559"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","uid":"028e7b86-561"}]},{"name":"uni_modules/uview-plus/components/u-button/u-button.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button","children":[{"uid":"028e7b86-563","name":"u-button.vue?vue&type=script&lang.ts"},{"uid":"028e7b86-565","name":"u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss"},{"uid":"028e7b86-567","name":"u-button.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","uid":"028e7b86-569"}]},{"name":"uni_modules/uview-plus/components/u-avatar/u-avatar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar","children":[{"uid":"028e7b86-571","name":"u-avatar.vue?vue&type=style&index=0&scoped=4139b3f3&lang.scss"},{"uid":"028e7b86-573","name":"u-avatar.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","uid":"028e7b86-575"}]},{"name":"components/firstui/fui-list-cell/fui-list-cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell","children":[{"uid":"028e7b86-577","name":"fui-list-cell.vue?vue&type=style&index=0&scoped=77eef2c9&lang.css"},{"uid":"028e7b86-579","name":"fui-list-cell.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","uid":"028e7b86-581"}]},{"name":"components/firstui/fui-list/fui-list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list","children":[{"uid":"028e7b86-583","name":"fui-list.vue?vue&type=style&index=0&scoped=61b84bd4&lang.css"},{"uid":"028e7b86-585","name":"fui-list.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","uid":"028e7b86-587"}]},{"name":"components/firstui/fui-upload/fui-upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload","children":[{"uid":"028e7b86-589","name":"fui-upload.vue?vue&type=style&index=0&scoped=2d5d0fa0&lang.css"},{"uid":"028e7b86-591","name":"fui-upload.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS11cGxvYWQvZnVpLXVwbG9hZC52dWU","uid":"028e7b86-593"}]},{"name":"uni_modules/uview-plus/components/u-subsection/u-subsection.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection","children":[{"uid":"028e7b86-595","name":"u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss"},{"uid":"028e7b86-597","name":"u-subsection.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","uid":"028e7b86-599"}]},{"name":"uni_modules/uview-plus/components/u-cell/u-cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell","children":[{"uid":"028e7b86-601","name":"u-cell.vue?vue&type=style&index=0&scoped=3b946341&lang.scss"},{"uid":"028e7b86-603","name":"u-cell.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY2VsbC91LWNlbGwudnVl","uid":"028e7b86-605"}]},{"name":"uni_modules/uview-plus/components/u-list-item/u-list-item.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item","children":[{"uid":"028e7b86-607","name":"u-list-item.vue?vue&type=style&index=0&scoped=f5ff7ac7&lang.scss"},{"uid":"028e7b86-609","name":"u-list-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC1pdGVtL3UtbGlzdC1pdGVtLnZ1ZQ","uid":"028e7b86-611"}]},{"name":"components/tem/tem-steps.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/tem","children":[{"uid":"028e7b86-613","name":"tem-steps.vue?vue&type=style&index=0&scoped=746e3803&lang.scss"},{"uid":"028e7b86-615","name":"tem-steps.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy90ZW0vdGVtLXN0ZXBzLnZ1ZQ","uid":"028e7b86-617"}]},{"name":"uni_modules/uview-plus/components/u-list/u-list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list","children":[{"uid":"028e7b86-619","name":"u-list.vue?vue&type=style&index=0&scoped=e8455553&lang.scss"},{"uid":"028e7b86-621","name":"u-list.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC91LWxpc3QudnVl","uid":"028e7b86-623"}]},{"name":"components/firstui/fui-icon/fui-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon","children":[{"uid":"028e7b86-625","name":"fui-icon.js"},{"uid":"028e7b86-627","name":"fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css"},{"uid":"028e7b86-629","name":"fui-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","uid":"028e7b86-631"}]},{"name":"uni_modules/uview-plus/components/u-transition/u-transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition","children":[{"uid":"028e7b86-633","name":"u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss"},{"uid":"028e7b86-635","name":"u-transition.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","uid":"028e7b86-637"}]},{"name":"uni_modules/uview-plus/components/u-line/u-line.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line","children":[{"uid":"028e7b86-639","name":"u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss"},{"uid":"028e7b86-641","name":"u-line.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","uid":"028e7b86-643"}]},{"name":"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon","children":[{"uid":"028e7b86-645","name":"u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss"},{"uid":"028e7b86-647","name":"u-loading-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","uid":"028e7b86-649"}]},{"name":"uni_modules/uni-transition/components/uni-transition/uni-transition.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue","uid":"028e7b86-651"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXRyYW5zaXRpb24vY29tcG9uZW50cy91bmktdHJhbnNpdGlvbi91bmktdHJhbnNpdGlvbi52dWU","uid":"028e7b86-653"}]},{"name":"uni_modules/uview-plus/components/u-text/u-text.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text","children":[{"uid":"028e7b86-655","name":"u-text.vue?vue&type=style&index=0&scoped=8194d41c&lang.scss"},{"uid":"028e7b86-657","name":"u-text.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","uid":"028e7b86-659"}]},{"name":"uni_modules/uview-plus/components/u-link/u-link.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link","children":[{"uid":"028e7b86-661","name":"u-link.vue?vue&type=style&index=0&scoped=d6e711cb&lang.scss"},{"uid":"028e7b86-663","name":"u-link.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","uid":"028e7b86-665"}]}],"isRoot":true},"nodeParts":{"028e7b86-1":{"renderedLength":573,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-0"},"028e7b86-3":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-2"},"028e7b86-5":{"renderedLength":394,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-4"},"028e7b86-7":{"renderedLength":1450,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-6"},"028e7b86-9":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-8"},"028e7b86-11":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-10"},"028e7b86-13":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-12"},"028e7b86-15":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-14"},"028e7b86-17":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-16"},"028e7b86-19":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-18"},"028e7b86-21":{"renderedLength":957,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-20"},"028e7b86-23":{"renderedLength":721,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-22"},"028e7b86-25":{"renderedLength":82,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-24"},"028e7b86-27":{"renderedLength":5754,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-26"},"028e7b86-29":{"renderedLength":2717,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-28"},"028e7b86-31":{"renderedLength":3781,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-30"},"028e7b86-33":{"renderedLength":5863,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-32"},"028e7b86-35":{"renderedLength":982,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-34"},"028e7b86-37":{"renderedLength":6055,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-36"},"028e7b86-39":{"renderedLength":32368,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-38"},"028e7b86-41":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-40"},"028e7b86-43":{"renderedLength":150964,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-42"},"028e7b86-45":{"renderedLength":23003,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-44"},"028e7b86-47":{"renderedLength":20355,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-46"},"028e7b86-49":{"renderedLength":4688,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-48"},"028e7b86-51":{"renderedLength":6952,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-50"},"028e7b86-53":{"renderedLength":3962,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-52"},"028e7b86-55":{"renderedLength":1681,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-54"},"028e7b86-57":{"renderedLength":214,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-56"},"028e7b86-59":{"renderedLength":24721,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-58"},"028e7b86-61":{"renderedLength":562,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-60"},"028e7b86-63":{"renderedLength":54238,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-62"},"028e7b86-65":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-64"},"028e7b86-67":{"renderedLength":1858,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-66"},"028e7b86-69":{"renderedLength":1310,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-68"},"028e7b86-71":{"renderedLength":2078,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-70"},"028e7b86-73":{"renderedLength":7307,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-72"},"028e7b86-75":{"renderedLength":16306,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-74"},"028e7b86-77":{"renderedLength":1998,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-76"},"028e7b86-79":{"renderedLength":2630,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-78"},"028e7b86-81":{"renderedLength":2993,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-80"},"028e7b86-83":{"renderedLength":54,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-82"},"028e7b86-85":{"renderedLength":5935,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-84"},"028e7b86-87":{"renderedLength":6180,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-86"},"028e7b86-89":{"renderedLength":6727,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-88"},"028e7b86-91":{"renderedLength":4122,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-90"},"028e7b86-93":{"renderedLength":2129,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-92"},"028e7b86-95":{"renderedLength":2026,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-94"},"028e7b86-97":{"renderedLength":1754,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-96"},"028e7b86-99":{"renderedLength":7521,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-98"},"028e7b86-101":{"renderedLength":3376,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-100"},"028e7b86-103":{"renderedLength":7077,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-102"},"028e7b86-105":{"renderedLength":1312,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-104"},"028e7b86-107":{"renderedLength":1396,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-106"},"028e7b86-109":{"renderedLength":274,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-108"},"028e7b86-111":{"renderedLength":4155,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-110"},"028e7b86-113":{"renderedLength":2256,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-112"},"028e7b86-115":{"renderedLength":3587,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-114"},"028e7b86-117":{"renderedLength":4420,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-116"},"028e7b86-119":{"renderedLength":5171,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-118"},"028e7b86-121":{"renderedLength":1300,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-120"},"028e7b86-123":{"renderedLength":1799,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-122"},"028e7b86-125":{"renderedLength":3233,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-124"},"028e7b86-127":{"renderedLength":4129,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-126"},"028e7b86-129":{"renderedLength":4427,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-128"},"028e7b86-131":{"renderedLength":13491,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-130"},"028e7b86-133":{"renderedLength":4447,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-132"},"028e7b86-135":{"renderedLength":845,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-134"},"028e7b86-137":{"renderedLength":3135,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-136"},"028e7b86-139":{"renderedLength":7509,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-138"},"028e7b86-141":{"renderedLength":221,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-140"},"028e7b86-143":{"renderedLength":5812,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-142"},"028e7b86-145":{"renderedLength":4675,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-144"},"028e7b86-147":{"renderedLength":4601,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-146"},"028e7b86-149":{"renderedLength":948,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-148"},"028e7b86-151":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-150"},"028e7b86-153":{"renderedLength":873,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-152"},"028e7b86-155":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-154"},"028e7b86-157":{"renderedLength":488,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-156"},"028e7b86-159":{"renderedLength":358,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-158"},"028e7b86-161":{"renderedLength":622,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-160"},"028e7b86-163":{"renderedLength":615,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-162"},"028e7b86-165":{"renderedLength":487,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-164"},"028e7b86-167":{"renderedLength":619,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-166"},"028e7b86-169":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-168"},"028e7b86-171":{"renderedLength":585,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-170"},"028e7b86-173":{"renderedLength":594,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-172"},"028e7b86-175":{"renderedLength":995,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-174"},"028e7b86-177":{"renderedLength":1126,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-176"},"028e7b86-179":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-178"},"028e7b86-181":{"renderedLength":647,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-180"},"028e7b86-183":{"renderedLength":383,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-182"},"028e7b86-185":{"renderedLength":596,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-184"},"028e7b86-187":{"renderedLength":718,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-186"},"028e7b86-189":{"renderedLength":353,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-188"},"028e7b86-191":{"renderedLength":473,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-190"},"028e7b86-193":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-192"},"028e7b86-195":{"renderedLength":401,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-194"},"028e7b86-197":{"renderedLength":374,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-196"},"028e7b86-199":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-198"},"028e7b86-201":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-200"},"028e7b86-203":{"renderedLength":419,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-202"},"028e7b86-205":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-204"},"028e7b86-207":{"renderedLength":1010,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-206"},"028e7b86-209":{"renderedLength":500,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-208"},"028e7b86-211":{"renderedLength":538,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-210"},"028e7b86-213":{"renderedLength":492,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-212"},"028e7b86-215":{"renderedLength":536,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-214"},"028e7b86-217":{"renderedLength":408,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-216"},"028e7b86-219":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-218"},"028e7b86-221":{"renderedLength":357,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-220"},"028e7b86-223":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-222"},"028e7b86-225":{"renderedLength":694,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-224"},"028e7b86-227":{"renderedLength":427,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-226"},"028e7b86-229":{"renderedLength":478,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-228"},"028e7b86-231":{"renderedLength":1016,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-230"},"028e7b86-233":{"renderedLength":720,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-232"},"028e7b86-235":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-234"},"028e7b86-237":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-236"},"028e7b86-239":{"renderedLength":581,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-238"},"028e7b86-241":{"renderedLength":666,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-240"},"028e7b86-243":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-242"},"028e7b86-245":{"renderedLength":702,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-244"},"028e7b86-247":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-246"},"028e7b86-249":{"renderedLength":786,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-248"},"028e7b86-251":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-250"},"028e7b86-253":{"renderedLength":734,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-252"},"028e7b86-255":{"renderedLength":28917,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-254"},"028e7b86-257":{"renderedLength":605,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-256"},"028e7b86-259":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-258"},"028e7b86-261":{"renderedLength":835,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-260"},"028e7b86-263":{"renderedLength":395,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-262"},"028e7b86-265":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-264"},"028e7b86-267":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-266"},"028e7b86-269":{"renderedLength":716,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-268"},"028e7b86-271":{"renderedLength":684,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-270"},"028e7b86-273":{"renderedLength":582,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-272"},"028e7b86-275":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-274"},"028e7b86-277":{"renderedLength":587,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-276"},"028e7b86-279":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-278"},"028e7b86-281":{"renderedLength":348,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-280"},"028e7b86-283":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-282"},"028e7b86-285":{"renderedLength":494,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-284"},"028e7b86-287":{"renderedLength":916,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-286"},"028e7b86-289":{"renderedLength":535,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-288"},"028e7b86-291":{"renderedLength":563,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-290"},"028e7b86-293":{"renderedLength":602,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-292"},"028e7b86-295":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-294"},"028e7b86-297":{"renderedLength":474,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-296"},"028e7b86-299":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-298"},"028e7b86-301":{"renderedLength":442,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-300"},"028e7b86-303":{"renderedLength":529,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-302"},"028e7b86-305":{"renderedLength":342,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-304"},"028e7b86-307":{"renderedLength":489,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-306"},"028e7b86-309":{"renderedLength":966,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-308"},"028e7b86-311":{"renderedLength":468,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-310"},"028e7b86-313":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-312"},"028e7b86-315":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-314"},"028e7b86-317":{"renderedLength":435,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-316"},"028e7b86-319":{"renderedLength":700,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-318"},"028e7b86-321":{"renderedLength":574,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-320"},"028e7b86-323":{"renderedLength":782,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-322"},"028e7b86-325":{"renderedLength":773,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-324"},"028e7b86-327":{"renderedLength":617,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-326"},"028e7b86-329":{"renderedLength":467,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-328"},"028e7b86-331":{"renderedLength":559,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-330"},"028e7b86-333":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-332"},"028e7b86-335":{"renderedLength":785,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-334"},"028e7b86-337":{"renderedLength":2672,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-336"},"028e7b86-339":{"renderedLength":2342,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-338"},"028e7b86-341":{"renderedLength":1984,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-340"},"028e7b86-343":{"renderedLength":692,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-342"},"028e7b86-345":{"renderedLength":528,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-344"},"028e7b86-347":{"renderedLength":3369,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-346"},"028e7b86-349":{"renderedLength":1199,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-348"},"028e7b86-351":{"renderedLength":106,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-350"},"028e7b86-353":{"renderedLength":2368,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-352"},"028e7b86-355":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-354"},"028e7b86-357":{"renderedLength":8405,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-356"},"028e7b86-359":{"renderedLength":545,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-358"},"028e7b86-361":{"renderedLength":366,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-360"},"028e7b86-363":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-362"},"028e7b86-365":{"renderedLength":364,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-364"},"028e7b86-367":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-366"},"028e7b86-369":{"renderedLength":706,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-368"},"028e7b86-371":{"renderedLength":27130,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-370"},"028e7b86-373":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-372"},"028e7b86-375":{"renderedLength":1687,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-374"},"028e7b86-377":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-376"},"028e7b86-379":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-378"},"028e7b86-381":{"renderedLength":6714,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-380"},"028e7b86-383":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-382"},"028e7b86-385":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-384"},"028e7b86-387":{"renderedLength":7246,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-386"},"028e7b86-389":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-388"},"028e7b86-391":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-390"},"028e7b86-393":{"renderedLength":9656,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-392"},"028e7b86-395":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-394"},"028e7b86-397":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-396"},"028e7b86-399":{"renderedLength":1495,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-398"},"028e7b86-401":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-400"},"028e7b86-403":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-402"},"028e7b86-405":{"renderedLength":70646,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-404"},"028e7b86-407":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-406"},"028e7b86-409":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-408"},"028e7b86-411":{"renderedLength":3242,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-410"},"028e7b86-413":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-412"},"028e7b86-415":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-414"},"028e7b86-417":{"renderedLength":11299,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-416"},"028e7b86-419":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-418"},"028e7b86-421":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-420"},"028e7b86-423":{"renderedLength":7809,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-422"},"028e7b86-425":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-424"},"028e7b86-427":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-426"},"028e7b86-429":{"renderedLength":6018,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-428"},"028e7b86-431":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-430"},"028e7b86-433":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-432"},"028e7b86-435":{"renderedLength":3765,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-434"},"028e7b86-437":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-436"},"028e7b86-439":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-438"},"028e7b86-441":{"renderedLength":3862,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-440"},"028e7b86-443":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-442"},"028e7b86-445":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-444"},"028e7b86-447":{"renderedLength":3468,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-446"},"028e7b86-449":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-448"},"028e7b86-451":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-450"},"028e7b86-453":{"renderedLength":10039,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-452"},"028e7b86-455":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-454"},"028e7b86-457":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-456"},"028e7b86-459":{"renderedLength":2439,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-458"},"028e7b86-461":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-460"},"028e7b86-463":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-462"},"028e7b86-465":{"renderedLength":6820,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-464"},"028e7b86-467":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-466"},"028e7b86-469":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-468"},"028e7b86-471":{"renderedLength":5225,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-470"},"028e7b86-473":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-472"},"028e7b86-475":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-474"},"028e7b86-477":{"renderedLength":2548,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-476"},"028e7b86-479":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-478"},"028e7b86-481":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-480"},"028e7b86-483":{"renderedLength":6742,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-482"},"028e7b86-485":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-484"},"028e7b86-487":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-486"},"028e7b86-489":{"renderedLength":6290,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-488"},"028e7b86-491":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-490"},"028e7b86-493":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-492"},"028e7b86-495":{"renderedLength":8529,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-494"},"028e7b86-497":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-496"},"028e7b86-499":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-498"},"028e7b86-501":{"renderedLength":6628,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-500"},"028e7b86-503":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-502"},"028e7b86-505":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-504"},"028e7b86-507":{"renderedLength":5580,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-506"},"028e7b86-509":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-508"},"028e7b86-511":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-510"},"028e7b86-513":{"renderedLength":5084,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-512"},"028e7b86-515":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-514"},"028e7b86-517":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-516"},"028e7b86-519":{"renderedLength":4038,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-518"},"028e7b86-521":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-520"},"028e7b86-523":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-522"},"028e7b86-525":{"renderedLength":26981,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-524"},"028e7b86-527":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-526"},"028e7b86-529":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-528"},"028e7b86-531":{"renderedLength":10850,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-530"},"028e7b86-533":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-532"},"028e7b86-535":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-534"},"028e7b86-537":{"renderedLength":14113,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-536"},"028e7b86-539":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-538"},"028e7b86-541":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-540"},"028e7b86-543":{"renderedLength":5696,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-542"},"028e7b86-545":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-544"},"028e7b86-547":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-546"},"028e7b86-549":{"renderedLength":9049,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-548"},"028e7b86-551":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-550"},"028e7b86-553":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-552"},"028e7b86-555":{"renderedLength":11970,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-554"},"028e7b86-557":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-556"},"028e7b86-559":{"renderedLength":6533,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-558"},"028e7b86-561":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-560"},"028e7b86-563":{"renderedLength":3576,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-562"},"028e7b86-565":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-564"},"028e7b86-567":{"renderedLength":2670,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-566"},"028e7b86-569":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-568"},"028e7b86-571":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-570"},"028e7b86-573":{"renderedLength":9787,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-572"},"028e7b86-575":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-574"},"028e7b86-577":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-576"},"028e7b86-579":{"renderedLength":4058,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-578"},"028e7b86-581":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-580"},"028e7b86-583":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-582"},"028e7b86-585":{"renderedLength":3296,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-584"},"028e7b86-587":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-586"},"028e7b86-589":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-588"},"028e7b86-591":{"renderedLength":12586,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-590"},"028e7b86-593":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-592"},"028e7b86-595":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-594"},"028e7b86-597":{"renderedLength":7128,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-596"},"028e7b86-599":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-598"},"028e7b86-601":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-600"},"028e7b86-603":{"renderedLength":5747,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-602"},"028e7b86-605":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-604"},"028e7b86-607":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-606"},"028e7b86-609":{"renderedLength":2507,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-608"},"028e7b86-611":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-610"},"028e7b86-613":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-612"},"028e7b86-615":{"renderedLength":2509,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-614"},"028e7b86-617":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-616"},"028e7b86-619":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-618"},"028e7b86-621":{"renderedLength":5769,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-620"},"028e7b86-623":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-622"},"028e7b86-625":{"renderedLength":4098,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-624"},"028e7b86-627":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-626"},"028e7b86-629":{"renderedLength":2806,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-628"},"028e7b86-631":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-630"},"028e7b86-633":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-632"},"028e7b86-635":{"renderedLength":2815,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-634"},"028e7b86-637":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-636"},"028e7b86-639":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-638"},"028e7b86-641":{"renderedLength":2603,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-640"},"028e7b86-643":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-642"},"028e7b86-645":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-644"},"028e7b86-647":{"renderedLength":5260,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-646"},"028e7b86-649":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-648"},"028e7b86-651":{"renderedLength":7122,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-650"},"028e7b86-653":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-652"},"028e7b86-655":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-654"},"028e7b86-657":{"renderedLength":7024,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-656"},"028e7b86-659":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-658"},"028e7b86-661":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-660"},"028e7b86-663":{"renderedLength":2880,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-662"},"028e7b86-665":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"028e7b86-664"}},"nodeMetas":{"028e7b86-0":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages-json-js","moduleParts":{"app.js":"028e7b86-1"},"imported":[{"uid":"028e7b86-666"},{"uid":"028e7b86-376","dynamic":true},{"uid":"028e7b86-382","dynamic":true},{"uid":"028e7b86-388","dynamic":true},{"uid":"028e7b86-394","dynamic":true},{"uid":"028e7b86-400","dynamic":true},{"uid":"028e7b86-406","dynamic":true},{"uid":"028e7b86-412","dynamic":true},{"uid":"028e7b86-418","dynamic":true},{"uid":"028e7b86-424","dynamic":true},{"uid":"028e7b86-430","dynamic":true},{"uid":"028e7b86-436","dynamic":true},{"uid":"028e7b86-442","dynamic":true},{"uid":"028e7b86-448","dynamic":true},{"uid":"028e7b86-454","dynamic":true},{"uid":"028e7b86-460","dynamic":true},{"uid":"028e7b86-466","dynamic":true},{"uid":"028e7b86-472","dynamic":true},{"uid":"028e7b86-478","dynamic":true},{"uid":"028e7b86-484","dynamic":true}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-2":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue?vue&type=style&index=0&lang.scss","moduleParts":{"app.js":"028e7b86-3"},"imported":[],"importedBy":[{"uid":"028e7b86-4"}]},"028e7b86-4":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue","moduleParts":{"app.js":"028e7b86-5"},"imported":[{"uid":"028e7b86-28"},{"uid":"028e7b86-2"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-6":{"id":"D:/zcweb/uniapp/temporaryworker/src/main.ts","moduleParts":{"app.js":"028e7b86-7"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-40"},{"uid":"028e7b86-44"},{"uid":"028e7b86-0"},{"uid":"028e7b86-4"},{"uid":"028e7b86-76"},{"uid":"028e7b86-28"},{"uid":"028e7b86-72"},{"uid":"028e7b86-70"},{"uid":"028e7b86-68"},{"uid":"028e7b86-74"},{"uid":"028e7b86-66"},{"uid":"028e7b86-26"},{"uid":"028e7b86-22"},{"uid":"028e7b86-20"},{"uid":"028e7b86-366"},{"uid":"028e7b86-24"},{"uid":"028e7b86-42"},{"uid":"028e7b86-62"},{"uid":"028e7b86-30"}],"importedBy":[],"isEntry":true},"028e7b86-8":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/logo.png","moduleParts":{"common/assets.js":"028e7b86-9"},"imported":[],"importedBy":[{"uid":"028e7b86-386"}]},"028e7b86-10":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/fabu.png","moduleParts":{"common/assets.js":"028e7b86-11"},"imported":[],"importedBy":[{"uid":"028e7b86-404"}]},"028e7b86-12":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/guanli.png","moduleParts":{"common/assets.js":"028e7b86-13"},"imported":[],"importedBy":[{"uid":"028e7b86-404"}]},"028e7b86-14":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/qiye.png","moduleParts":{"common/assets.js":"028e7b86-15"},"imported":[],"importedBy":[{"uid":"028e7b86-404"}]},"028e7b86-16":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/server.png","moduleParts":{"common/assets.js":"028e7b86-17"},"imported":[],"importedBy":[{"uid":"028e7b86-404"}]},"028e7b86-18":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/dingwei.png","moduleParts":{"common/assets.js":"028e7b86-19"},"imported":[],"importedBy":[{"uid":"028e7b86-458"}]},"028e7b86-20":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","moduleParts":{"common/locales/en.js":"028e7b86-21"},"imported":[],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-22":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","moduleParts":{"common/locales/zh.js":"028e7b86-23"},"imported":[],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-24":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","moduleParts":{"common/mixin.js":"028e7b86-25"},"imported":[],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-26":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","moduleParts":{"common/request/http.api.js":"028e7b86-27"},"imported":[{"uid":"028e7b86-28"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-28":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","moduleParts":{"uni_modules/uview-plus/index.js":"028e7b86-29"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-138"},{"uid":"028e7b86-140"},{"uid":"028e7b86-362"},{"uid":"028e7b86-144"},{"uid":"028e7b86-146"},{"uid":"028e7b86-86"},{"uid":"028e7b86-148"},{"uid":"028e7b86-150"},{"uid":"028e7b86-130"},{"uid":"028e7b86-152"},{"uid":"028e7b86-84"},{"uid":"028e7b86-154"},{"uid":"028e7b86-156"},{"uid":"028e7b86-158"}],"importedBy":[{"uid":"028e7b86-6"},{"uid":"028e7b86-4"},{"uid":"028e7b86-26"},{"uid":"028e7b86-30"}]},"028e7b86-30":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/request/request.js","moduleParts":{"common/request/request.js":"028e7b86-31"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-28"},{"uid":"028e7b86-66"},{"uid":"028e7b86-68"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-32":{"id":"\\node_modules\\@vue\\shared\\dist\\shared.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-33"},"imported":[],"importedBy":[{"uid":"028e7b86-38"},{"uid":"028e7b86-44"},{"uid":"028e7b86-42"},{"uid":"028e7b86-36"},{"uid":"028e7b86-64"}]},"028e7b86-34":{"id":"\\node_modules\\@dcloudio\\uni-i18n\\dist\\uni-i18n.es.js","moduleParts":{"common/vendor.js":"028e7b86-35"},"imported":[{"uid":"028e7b86-38"}],"importedBy":[{"uid":"028e7b86-38"},{"uid":"028e7b86-44"}]},"028e7b86-36":{"id":"\\node_modules\\@dcloudio\\uni-shared\\dist\\uni-shared.es.js","moduleParts":{"common/vendor.js":"028e7b86-37"},"imported":[{"uid":"028e7b86-32"}],"importedBy":[{"uid":"028e7b86-38"},{"uid":"028e7b86-44"},{"uid":"028e7b86-42"},{"uid":"028e7b86-64"}]},"028e7b86-38":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.api.esm.js","moduleParts":{"common/vendor.js":"028e7b86-39"},"imported":[{"uid":"028e7b86-32"},{"uid":"028e7b86-34"},{"uid":"028e7b86-36"}],"importedBy":[{"uid":"028e7b86-6"},{"uid":"028e7b86-28"},{"uid":"028e7b86-72"},{"uid":"028e7b86-70"},{"uid":"028e7b86-68"},{"uid":"028e7b86-74"},{"uid":"028e7b86-42"},{"uid":"028e7b86-30"},{"uid":"028e7b86-34"},{"uid":"028e7b86-138"},{"uid":"028e7b86-144"},{"uid":"028e7b86-130"},{"uid":"028e7b86-374"},{"uid":"028e7b86-380"},{"uid":"028e7b86-386"},{"uid":"028e7b86-392"},{"uid":"028e7b86-404"},{"uid":"028e7b86-410"},{"uid":"028e7b86-416"},{"uid":"028e7b86-422"},{"uid":"028e7b86-434"},{"uid":"028e7b86-440"},{"uid":"028e7b86-446"},{"uid":"028e7b86-452"},{"uid":"028e7b86-464"},{"uid":"028e7b86-470"},{"uid":"028e7b86-476"},{"uid":"028e7b86-482"},{"uid":"028e7b86-64"},{"uid":"028e7b86-494"},{"uid":"028e7b86-500"},{"uid":"028e7b86-524"},{"uid":"028e7b86-530"},{"uid":"028e7b86-578"},{"uid":"028e7b86-590"},{"uid":"028e7b86-596"},{"uid":"028e7b86-614"},{"uid":"028e7b86-628"},{"uid":"028e7b86-338"},{"uid":"028e7b86-656"},{"uid":"028e7b86-78"},{"uid":"028e7b86-662"}]},"028e7b86-40":{"id":"\u0000plugin-vue:export-helper","moduleParts":{"common/vendor.js":"028e7b86-41"},"imported":[],"importedBy":[{"uid":"028e7b86-6"},{"uid":"028e7b86-4"},{"uid":"028e7b86-374"},{"uid":"028e7b86-380"},{"uid":"028e7b86-386"},{"uid":"028e7b86-392"},{"uid":"028e7b86-398"},{"uid":"028e7b86-404"},{"uid":"028e7b86-410"},{"uid":"028e7b86-416"},{"uid":"028e7b86-422"},{"uid":"028e7b86-428"},{"uid":"028e7b86-434"},{"uid":"028e7b86-440"},{"uid":"028e7b86-446"},{"uid":"028e7b86-452"},{"uid":"028e7b86-458"},{"uid":"028e7b86-464"},{"uid":"028e7b86-470"},{"uid":"028e7b86-476"},{"uid":"028e7b86-482"},{"uid":"028e7b86-488"},{"uid":"028e7b86-494"},{"uid":"028e7b86-500"},{"uid":"028e7b86-506"},{"uid":"028e7b86-512"},{"uid":"028e7b86-518"},{"uid":"028e7b86-524"},{"uid":"028e7b86-530"},{"uid":"028e7b86-536"},{"uid":"028e7b86-542"},{"uid":"028e7b86-548"},{"uid":"028e7b86-554"},{"uid":"028e7b86-558"},{"uid":"028e7b86-566"},{"uid":"028e7b86-572"},{"uid":"028e7b86-578"},{"uid":"028e7b86-584"},{"uid":"028e7b86-590"},{"uid":"028e7b86-596"},{"uid":"028e7b86-602"},{"uid":"028e7b86-608"},{"uid":"028e7b86-614"},{"uid":"028e7b86-620"},{"uid":"028e7b86-628"},{"uid":"028e7b86-634"},{"uid":"028e7b86-640"},{"uid":"028e7b86-646"},{"uid":"028e7b86-650"},{"uid":"028e7b86-656"},{"uid":"028e7b86-662"}]},"028e7b86-42":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-vue/dist/vue.runtime.esm.js","moduleParts":{"common/vendor.js":"028e7b86-43"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-36"},{"uid":"028e7b86-32"}],"importedBy":[{"uid":"028e7b86-6"},{"uid":"028e7b86-44"},{"uid":"028e7b86-62"},{"uid":"028e7b86-46"},{"uid":"028e7b86-374"},{"uid":"028e7b86-380"},{"uid":"028e7b86-386"},{"uid":"028e7b86-392"},{"uid":"028e7b86-398"},{"uid":"028e7b86-404"},{"uid":"028e7b86-410"},{"uid":"028e7b86-416"},{"uid":"028e7b86-422"},{"uid":"028e7b86-428"},{"uid":"028e7b86-434"},{"uid":"028e7b86-440"},{"uid":"028e7b86-446"},{"uid":"028e7b86-452"},{"uid":"028e7b86-458"},{"uid":"028e7b86-464"},{"uid":"028e7b86-470"},{"uid":"028e7b86-476"},{"uid":"028e7b86-482"},{"uid":"028e7b86-64"},{"uid":"028e7b86-488"},{"uid":"028e7b86-494"},{"uid":"028e7b86-500"},{"uid":"028e7b86-506"},{"uid":"028e7b86-512"},{"uid":"028e7b86-518"},{"uid":"028e7b86-524"},{"uid":"028e7b86-530"},{"uid":"028e7b86-536"},{"uid":"028e7b86-542"},{"uid":"028e7b86-548"},{"uid":"028e7b86-554"},{"uid":"028e7b86-566"},{"uid":"028e7b86-572"},{"uid":"028e7b86-578"},{"uid":"028e7b86-584"},{"uid":"028e7b86-590"},{"uid":"028e7b86-596"},{"uid":"028e7b86-602"},{"uid":"028e7b86-608"},{"uid":"028e7b86-614"},{"uid":"028e7b86-620"},{"uid":"028e7b86-628"},{"uid":"028e7b86-634"},{"uid":"028e7b86-640"},{"uid":"028e7b86-646"},{"uid":"028e7b86-650"},{"uid":"028e7b86-656"},{"uid":"028e7b86-136"},{"uid":"028e7b86-662"}]},"028e7b86-44":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.mp.esm.js","moduleParts":{"common/vendor.js":"028e7b86-45"},"imported":[{"uid":"028e7b86-36"},{"uid":"028e7b86-32"},{"uid":"028e7b86-42"},{"uid":"028e7b86-34"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-46":{"id":"\\node_modules\\vuex\\dist\\vuex.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-47"},"imported":[{"uid":"028e7b86-42"}],"importedBy":[{"uid":"028e7b86-76"},{"uid":"028e7b86-392"}]},"028e7b86-48":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/shared/dist/shared.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-49"},"imported":[],"importedBy":[{"uid":"028e7b86-62"},{"uid":"028e7b86-58"},{"uid":"028e7b86-52"},{"uid":"028e7b86-54"}]},"028e7b86-50":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-resolver/dist/message-resolver.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-51"},"imported":[],"importedBy":[{"uid":"028e7b86-58"}]},"028e7b86-52":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/runtime/dist/runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-53"},"imported":[{"uid":"028e7b86-48"}],"importedBy":[{"uid":"028e7b86-58"}]},"028e7b86-54":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-compiler/dist/message-compiler.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-55"},"imported":[{"uid":"028e7b86-48"}],"importedBy":[{"uid":"028e7b86-58"}]},"028e7b86-56":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/devtools-if/dist/devtools-if.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-57"},"imported":[],"importedBy":[{"uid":"028e7b86-58"}]},"028e7b86-58":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/core-base/dist/core-base.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-59"},"imported":[{"uid":"028e7b86-48"},{"uid":"028e7b86-50"},{"uid":"028e7b86-52"},{"uid":"028e7b86-54"},{"uid":"028e7b86-56"}],"importedBy":[{"uid":"028e7b86-62"}]},"028e7b86-60":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/vue-devtools/dist/vue-devtools.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-61"},"imported":[],"importedBy":[{"uid":"028e7b86-62"}]},"028e7b86-62":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"028e7b86-63"},"imported":[{"uid":"028e7b86-48"},{"uid":"028e7b86-58"},{"uid":"028e7b86-42"},{"uid":"028e7b86-60"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-64":{"id":"\\node_modules\\@dcloudio\\uni-app\\dist\\uni-app.es.js","moduleParts":{"common/vendor.js":"028e7b86-65"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-32"},{"uid":"028e7b86-36"}],"importedBy":[{"uid":"028e7b86-380"},{"uid":"028e7b86-392"},{"uid":"028e7b86-410"},{"uid":"028e7b86-416"},{"uid":"028e7b86-446"},{"uid":"028e7b86-452"},{"uid":"028e7b86-464"},{"uid":"028e7b86-470"},{"uid":"028e7b86-482"}]},"028e7b86-66":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","moduleParts":{"common/setting/constVarsHelper.js":"028e7b86-67"},"imported":[],"importedBy":[{"uid":"028e7b86-6"},{"uid":"028e7b86-72"},{"uid":"028e7b86-30"},{"uid":"028e7b86-416"},{"uid":"028e7b86-440"},{"uid":"028e7b86-452"}]},"028e7b86-68":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","moduleParts":{"common/utils/dbHelper.js":"028e7b86-69"},"imported":[{"uid":"028e7b86-38"}],"importedBy":[{"uid":"028e7b86-6"},{"uid":"028e7b86-72"},{"uid":"028e7b86-30"}]},"028e7b86-70":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","moduleParts":{"common/utils/commonHelper.js":"028e7b86-71"},"imported":[{"uid":"028e7b86-38"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-72":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","moduleParts":{"common/utils/uploadHelper.js":"028e7b86-73"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-66"},{"uid":"028e7b86-68"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-74":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/util.js","moduleParts":{"common/utils/util.js":"028e7b86-75"},"imported":[{"uid":"028e7b86-38"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-76":{"id":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","moduleParts":{"store/index.js":"028e7b86-77"},"imported":[{"uid":"028e7b86-46"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-78":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/createAnimation.js","moduleParts":{"uni_modules/uni-transition/components/uni-transition/createAnimation.js":"028e7b86-79"},"imported":[{"uid":"028e7b86-38"}],"importedBy":[{"uid":"028e7b86-650"}]},"028e7b86-80":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/props.js","moduleParts":{"uni_modules/uview-plus/components/u-avatar/props.js":"028e7b86-81"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"},{"uid":"028e7b86-86"}],"importedBy":[{"uid":"028e7b86-572"}]},"028e7b86-82":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","moduleParts":{"uni_modules/uview-plus/libs/vue.js":"028e7b86-83"},"imported":[],"importedBy":[{"uid":"028e7b86-366"},{"uid":"028e7b86-138"},{"uid":"028e7b86-140"},{"uid":"028e7b86-100"},{"uid":"028e7b86-118"},{"uid":"028e7b86-120"},{"uid":"028e7b86-124"},{"uid":"028e7b86-114"},{"uid":"028e7b86-92"},{"uid":"028e7b86-102"},{"uid":"028e7b86-94"},{"uid":"028e7b86-132"},{"uid":"028e7b86-116"},{"uid":"028e7b86-96"},{"uid":"028e7b86-80"},{"uid":"028e7b86-122"},{"uid":"028e7b86-90"},{"uid":"028e7b86-108"},{"uid":"028e7b86-110"},{"uid":"028e7b86-364"},{"uid":"028e7b86-368"},{"uid":"028e7b86-88"},{"uid":"028e7b86-134"},{"uid":"028e7b86-104"},{"uid":"028e7b86-112"},{"uid":"028e7b86-126"},{"uid":"028e7b86-106"}]},"028e7b86-84":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","moduleParts":{"uni_modules/uview-plus/libs/config/props.js":"028e7b86-85"},"imported":[{"uid":"028e7b86-152"},{"uid":"028e7b86-160"},{"uid":"028e7b86-162"},{"uid":"028e7b86-164"},{"uid":"028e7b86-166"},{"uid":"028e7b86-168"},{"uid":"028e7b86-170"},{"uid":"028e7b86-172"},{"uid":"028e7b86-174"},{"uid":"028e7b86-176"},{"uid":"028e7b86-178"},{"uid":"028e7b86-180"},{"uid":"028e7b86-182"},{"uid":"028e7b86-184"},{"uid":"028e7b86-186"},{"uid":"028e7b86-188"},{"uid":"028e7b86-190"},{"uid":"028e7b86-192"},{"uid":"028e7b86-194"},{"uid":"028e7b86-196"},{"uid":"028e7b86-198"},{"uid":"028e7b86-200"},{"uid":"028e7b86-202"},{"uid":"028e7b86-204"},{"uid":"028e7b86-206"},{"uid":"028e7b86-208"},{"uid":"028e7b86-210"},{"uid":"028e7b86-212"},{"uid":"028e7b86-214"},{"uid":"028e7b86-216"},{"uid":"028e7b86-218"},{"uid":"028e7b86-220"},{"uid":"028e7b86-222"},{"uid":"028e7b86-224"},{"uid":"028e7b86-226"},{"uid":"028e7b86-228"},{"uid":"028e7b86-230"},{"uid":"028e7b86-232"},{"uid":"028e7b86-234"},{"uid":"028e7b86-236"},{"uid":"028e7b86-238"},{"uid":"028e7b86-240"},{"uid":"028e7b86-242"},{"uid":"028e7b86-244"},{"uid":"028e7b86-246"},{"uid":"028e7b86-248"},{"uid":"028e7b86-250"},{"uid":"028e7b86-252"},{"uid":"028e7b86-254"},{"uid":"028e7b86-256"},{"uid":"028e7b86-258"},{"uid":"028e7b86-260"},{"uid":"028e7b86-262"},{"uid":"028e7b86-264"},{"uid":"028e7b86-266"},{"uid":"028e7b86-268"},{"uid":"028e7b86-270"},{"uid":"028e7b86-272"},{"uid":"028e7b86-274"},{"uid":"028e7b86-276"},{"uid":"028e7b86-278"},{"uid":"028e7b86-280"},{"uid":"028e7b86-282"},{"uid":"028e7b86-284"},{"uid":"028e7b86-286"},{"uid":"028e7b86-288"},{"uid":"028e7b86-290"},{"uid":"028e7b86-292"},{"uid":"028e7b86-294"},{"uid":"028e7b86-296"},{"uid":"028e7b86-298"},{"uid":"028e7b86-300"},{"uid":"028e7b86-302"},{"uid":"028e7b86-304"},{"uid":"028e7b86-306"},{"uid":"028e7b86-308"},{"uid":"028e7b86-310"},{"uid":"028e7b86-312"},{"uid":"028e7b86-314"},{"uid":"028e7b86-316"},{"uid":"028e7b86-318"},{"uid":"028e7b86-320"},{"uid":"028e7b86-322"},{"uid":"028e7b86-324"},{"uid":"028e7b86-326"},{"uid":"028e7b86-328"},{"uid":"028e7b86-330"},{"uid":"028e7b86-332"},{"uid":"028e7b86-334"}],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-542"},{"uid":"028e7b86-100"},{"uid":"028e7b86-118"},{"uid":"028e7b86-120"},{"uid":"028e7b86-124"},{"uid":"028e7b86-114"},{"uid":"028e7b86-92"},{"uid":"028e7b86-102"},{"uid":"028e7b86-94"},{"uid":"028e7b86-132"},{"uid":"028e7b86-116"},{"uid":"028e7b86-96"},{"uid":"028e7b86-80"},{"uid":"028e7b86-122"},{"uid":"028e7b86-90"},{"uid":"028e7b86-108"},{"uid":"028e7b86-110"},{"uid":"028e7b86-88"},{"uid":"028e7b86-134"},{"uid":"028e7b86-104"},{"uid":"028e7b86-112"},{"uid":"028e7b86-126"},{"uid":"028e7b86-106"}]},"028e7b86-86":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","moduleParts":{"uni_modules/uview-plus/libs/function/test.js":"028e7b86-87"},"imported":[],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-506"},{"uid":"028e7b86-558"},{"uid":"028e7b86-602"},{"uid":"028e7b86-80"},{"uid":"028e7b86-128"}]},"028e7b86-88":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/props.js","moduleParts":{"uni_modules/uview-plus/components/u-button/props.js":"028e7b86-89"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-562"}]},"028e7b86-90":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/props.js","moduleParts":{"uni_modules/uview-plus/components/u-cell/props.js":"028e7b86-91"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-602"}]},"028e7b86-92":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/props.js","moduleParts":{"uni_modules/uview-plus/components/u-empty/props.js":"028e7b86-93"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-518"}]},"028e7b86-94":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/props.js","moduleParts":{"uni_modules/uview-plus/components/u-form-item/props.js":"028e7b86-95"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-542"}]},"028e7b86-96":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/props.js","moduleParts":{"uni_modules/uview-plus/components/u-form/props.js":"028e7b86-97"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-558"}]},"028e7b86-98":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/icons.js","moduleParts":{"uni_modules/uview-plus/components/u-icon/icons.js":"028e7b86-99"},"imported":[],"importedBy":[{"uid":"028e7b86-488"}]},"028e7b86-100":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/props.js","moduleParts":{"uni_modules/uview-plus/components/u-icon/props.js":"028e7b86-101"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-488"}]},"028e7b86-102":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/props.js","moduleParts":{"uni_modules/uview-plus/components/u-input/props.js":"028e7b86-103"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-536"}]},"028e7b86-104":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/props.js","moduleParts":{"uni_modules/uview-plus/components/u-line/props.js":"028e7b86-105"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-640"}]},"028e7b86-106":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/props.js","moduleParts":{"uni_modules/uview-plus/components/u-link/props.js":"028e7b86-107"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-662"}]},"028e7b86-108":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/props.js","moduleParts":{"uni_modules/uview-plus/components/u-list-item/props.js":"028e7b86-109"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-608"}]},"028e7b86-110":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/props.js","moduleParts":{"uni_modules/uview-plus/components/u-list/props.js":"028e7b86-111"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-620"}]},"028e7b86-112":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/props.js","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/props.js":"028e7b86-113"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-646"}]},"028e7b86-114":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/props.js","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/props.js":"028e7b86-115"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-512"}]},"028e7b86-116":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/props.js","moduleParts":{"uni_modules/uview-plus/components/u-number-box/props.js":"028e7b86-117"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-554"}]},"028e7b86-118":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/props.js","moduleParts":{"uni_modules/uview-plus/components/u-search/props.js":"028e7b86-119"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-494"}]},"028e7b86-120":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/props.js","moduleParts":{"uni_modules/uview-plus/components/u-sticky/props.js":"028e7b86-121"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-500"}]},"028e7b86-122":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/props.js","moduleParts":{"uni_modules/uview-plus/components/u-subsection/props.js":"028e7b86-123"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-596"}]},"028e7b86-124":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/props.js","moduleParts":{"uni_modules/uview-plus/components/u-tag/props.js":"028e7b86-125"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-506"}]},"028e7b86-126":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/props.js","moduleParts":{"uni_modules/uview-plus/components/u-text/props.js":"028e7b86-127"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-656"}]},"028e7b86-128":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/value.js","moduleParts":{"uni_modules/uview-plus/components/u-text/value.js":"028e7b86-129"},"imported":[{"uid":"028e7b86-130"},{"uid":"028e7b86-86"}],"importedBy":[{"uid":"028e7b86-656"}]},"028e7b86-130":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","moduleParts":{"uni_modules/uview-plus/libs/function/index.js":"028e7b86-131"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-86"},{"uid":"028e7b86-336"},{"uid":"028e7b86-152"}],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-366"},{"uid":"028e7b86-138"},{"uid":"028e7b86-144"},{"uid":"028e7b86-488"},{"uid":"028e7b86-494"},{"uid":"028e7b86-500"},{"uid":"028e7b86-512"},{"uid":"028e7b86-518"},{"uid":"028e7b86-536"},{"uid":"028e7b86-542"},{"uid":"028e7b86-548"},{"uid":"028e7b86-554"},{"uid":"028e7b86-558"},{"uid":"028e7b86-572"},{"uid":"028e7b86-596"},{"uid":"028e7b86-602"},{"uid":"028e7b86-608"},{"uid":"028e7b86-620"},{"uid":"028e7b86-562"},{"uid":"028e7b86-634"},{"uid":"028e7b86-640"},{"uid":"028e7b86-646"},{"uid":"028e7b86-656"},{"uid":"028e7b86-136"},{"uid":"028e7b86-128"},{"uid":"028e7b86-662"}]},"028e7b86-132":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/props.js","moduleParts":{"uni_modules/uview-plus/components/u-textarea/props.js":"028e7b86-133"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-548"}]},"028e7b86-134":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/props.js","moduleParts":{"uni_modules/uview-plus/components/u-transition/props.js":"028e7b86-135"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-84"}],"importedBy":[{"uid":"028e7b86-634"}]},"028e7b86-136":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/transition.js","moduleParts":{"uni_modules/uview-plus/components/u-transition/transition.js":"028e7b86-137"},"imported":[{"uid":"028e7b86-42"},{"uid":"028e7b86-130"}],"importedBy":[{"uid":"028e7b86-634"}]},"028e7b86-138":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mixin.js":"028e7b86-139"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-82"},{"uid":"028e7b86-130"},{"uid":"028e7b86-86"},{"uid":"028e7b86-144"}],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-488"},{"uid":"028e7b86-494"},{"uid":"028e7b86-500"},{"uid":"028e7b86-506"},{"uid":"028e7b86-512"},{"uid":"028e7b86-518"},{"uid":"028e7b86-536"},{"uid":"028e7b86-542"},{"uid":"028e7b86-548"},{"uid":"028e7b86-554"},{"uid":"028e7b86-558"},{"uid":"028e7b86-572"},{"uid":"028e7b86-596"},{"uid":"028e7b86-602"},{"uid":"028e7b86-608"},{"uid":"028e7b86-620"},{"uid":"028e7b86-562"},{"uid":"028e7b86-634"},{"uid":"028e7b86-640"},{"uid":"028e7b86-646"},{"uid":"028e7b86-656"},{"uid":"028e7b86-662"}]},"028e7b86-140":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpMixin.js":"028e7b86-141"},"imported":[{"uid":"028e7b86-82"}],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-488"},{"uid":"028e7b86-494"},{"uid":"028e7b86-500"},{"uid":"028e7b86-506"},{"uid":"028e7b86-512"},{"uid":"028e7b86-518"},{"uid":"028e7b86-536"},{"uid":"028e7b86-542"},{"uid":"028e7b86-548"},{"uid":"028e7b86-554"},{"uid":"028e7b86-558"},{"uid":"028e7b86-572"},{"uid":"028e7b86-596"},{"uid":"028e7b86-602"},{"uid":"028e7b86-608"},{"uid":"028e7b86-620"},{"uid":"028e7b86-562"},{"uid":"028e7b86-634"},{"uid":"028e7b86-640"},{"uid":"028e7b86-646"},{"uid":"028e7b86-656"},{"uid":"028e7b86-662"}]},"028e7b86-142":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/Request.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/Request.js":"028e7b86-143"},"imported":[{"uid":"028e7b86-350"},{"uid":"028e7b86-348"},{"uid":"028e7b86-352"},{"uid":"028e7b86-354"},{"uid":"028e7b86-346"},{"uid":"028e7b86-356"}],"importedBy":[{"uid":"028e7b86-362"}]},"028e7b86-144":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","moduleParts":{"uni_modules/uview-plus/libs/util/route.js":"028e7b86-145"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-130"}],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-138"}]},"028e7b86-146":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","moduleParts":{"uni_modules/uview-plus/libs/function/colorGradient.js":"028e7b86-147"},"imported":[],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-646"}]},"028e7b86-148":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","moduleParts":{"uni_modules/uview-plus/libs/function/debounce.js":"028e7b86-149"},"imported":[],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-536"}]},"028e7b86-150":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","moduleParts":{"uni_modules/uview-plus/libs/function/throttle.js":"028e7b86-151"},"imported":[],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-562"}]},"028e7b86-152":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","moduleParts":{"uni_modules/uview-plus/libs/config/config.js":"028e7b86-153"},"imported":[],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-130"},{"uid":"028e7b86-84"},{"uid":"028e7b86-222"},{"uid":"028e7b86-238"},{"uid":"028e7b86-244"},{"uid":"028e7b86-488"}]},"028e7b86-154":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","moduleParts":{"uni_modules/uview-plus/libs/config/zIndex.js":"028e7b86-155"},"imported":[],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-500"}]},"028e7b86-156":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","moduleParts":{"uni_modules/uview-plus/libs/config/color.js":"028e7b86-157"},"imported":[],"importedBy":[{"uid":"028e7b86-28"},{"uid":"028e7b86-252"},{"uid":"028e7b86-542"},{"uid":"028e7b86-562"}]},"028e7b86-158":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","moduleParts":{"uni_modules/uview-plus/libs/function/platform.js":"028e7b86-159"},"imported":[],"importedBy":[{"uid":"028e7b86-28"}]},"028e7b86-160":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/actionSheet.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/actionSheet.js":"028e7b86-161"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-162":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/album.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/album.js":"028e7b86-163"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-164":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/alert.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/alert.js":"028e7b86-165"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-166":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/avatar.js":"028e7b86-167"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-168":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/avatarGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/avatarGroup.js":"028e7b86-169"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-170":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/backtop.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/backtop.js":"028e7b86-171"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-172":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/badge.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/badge.js":"028e7b86-173"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-174":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/button.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/button.js":"028e7b86-175"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-176":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/calendar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/calendar.js":"028e7b86-177"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-178":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/carKeyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/carKeyboard.js":"028e7b86-179"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-180":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cell.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/cell.js":"028e7b86-181"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-182":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/cellGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/cellGroup.js":"028e7b86-183"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-184":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkbox.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/checkbox.js":"028e7b86-185"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-186":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/checkboxGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/checkboxGroup.js":"028e7b86-187"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-188":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/circleProgress.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/circleProgress.js":"028e7b86-189"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-190":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/code.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/code.js":"028e7b86-191"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-192":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/codeInput.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/codeInput.js":"028e7b86-193"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-194":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/col.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/col.js":"028e7b86-195"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-196":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapse.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/collapse.js":"028e7b86-197"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-198":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/collapseItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/collapseItem.js":"028e7b86-199"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-200":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/columnNotice.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/columnNotice.js":"028e7b86-201"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-202":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countDown.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/countDown.js":"028e7b86-203"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-204":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/countTo.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/countTo.js":"028e7b86-205"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-206":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/datetimePicker.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/datetimePicker.js":"028e7b86-207"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-208":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/divider.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/divider.js":"028e7b86-209"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-210":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/empty.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/empty.js":"028e7b86-211"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-212":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/form.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/form.js":"028e7b86-213"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-214":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/formItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/formItem.js":"028e7b86-215"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-216":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gap.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/gap.js":"028e7b86-217"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-218":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/grid.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/grid.js":"028e7b86-219"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-220":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/gridItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/gridItem.js":"028e7b86-221"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-222":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/icon.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/icon.js":"028e7b86-223"},"imported":[{"uid":"028e7b86-152"}],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-224":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/image.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/image.js":"028e7b86-225"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-226":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexAnchor.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/indexAnchor.js":"028e7b86-227"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-228":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/indexList.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/indexList.js":"028e7b86-229"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-230":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/input.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/input.js":"028e7b86-231"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-232":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/keyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/keyboard.js":"028e7b86-233"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-234":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/line.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/line.js":"028e7b86-235"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-236":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/lineProgress.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/lineProgress.js":"028e7b86-237"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-238":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/link.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/link.js":"028e7b86-239"},"imported":[{"uid":"028e7b86-152"}],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-240":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/list.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/list.js":"028e7b86-241"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-242":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/listItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/listItem.js":"028e7b86-243"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-244":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingIcon.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadingIcon.js":"028e7b86-245"},"imported":[{"uid":"028e7b86-152"}],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-246":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadingPage.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadingPage.js":"028e7b86-247"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-248":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/loadmore.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/loadmore.js":"028e7b86-249"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-250":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/modal.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/modal.js":"028e7b86-251"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-252":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/navbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/navbar.js":"028e7b86-253"},"imported":[{"uid":"028e7b86-156"}],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-254":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noNetwork.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/noNetwork.js":"028e7b86-255"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-256":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/noticeBar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/noticeBar.js":"028e7b86-257"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-258":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/notify.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/notify.js":"028e7b86-259"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-260":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberBox.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/numberBox.js":"028e7b86-261"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-262":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/numberKeyboard.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/numberKeyboard.js":"028e7b86-263"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-264":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/overlay.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/overlay.js":"028e7b86-265"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-266":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/parse.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/parse.js":"028e7b86-267"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-268":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/picker.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/picker.js":"028e7b86-269"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-270":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/popup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/popup.js":"028e7b86-271"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-272":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radio.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/radio.js":"028e7b86-273"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-274":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/radioGroup.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/radioGroup.js":"028e7b86-275"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-276":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rate.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/rate.js":"028e7b86-277"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-278":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/readMore.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/readMore.js":"028e7b86-279"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-280":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/row.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/row.js":"028e7b86-281"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-282":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/rowNotice.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/rowNotice.js":"028e7b86-283"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-284":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/scrollList.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/scrollList.js":"028e7b86-285"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-286":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/search.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/search.js":"028e7b86-287"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-288":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/section.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/section.js":"028e7b86-289"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-290":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/skeleton.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/skeleton.js":"028e7b86-291"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-292":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/slider.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/slider.js":"028e7b86-293"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-294":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/statusBar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/statusBar.js":"028e7b86-295"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-296":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/steps.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/steps.js":"028e7b86-297"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-298":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/stepsItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/stepsItem.js":"028e7b86-299"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-300":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/sticky.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/sticky.js":"028e7b86-301"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-302":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/subsection.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/subsection.js":"028e7b86-303"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-304":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeAction.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipeAction.js":"028e7b86-305"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-306":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipeActionItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipeActionItem.js":"028e7b86-307"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-308":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swiper.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swiper.js":"028e7b86-309"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-310":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/swipterIndicator.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/swipterIndicator.js":"028e7b86-311"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-312":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/switch.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/switch.js":"028e7b86-313"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-314":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabbar.js":"028e7b86-315"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-316":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabbarItem.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabbarItem.js":"028e7b86-317"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-318":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tabs.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tabs.js":"028e7b86-319"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-320":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tag.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tag.js":"028e7b86-321"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-322":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/text.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/text.js":"028e7b86-323"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-324":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/textarea.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/textarea.js":"028e7b86-325"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-326":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toast.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/toast.js":"028e7b86-327"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-328":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/toolbar.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/toolbar.js":"028e7b86-329"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-330":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/tooltip.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/tooltip.js":"028e7b86-331"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-332":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/transition.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/transition.js":"028e7b86-333"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-334":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props/upload.js","moduleParts":{"uni_modules/uview-plus/libs/config/props/upload.js":"028e7b86-335"},"imported":[],"importedBy":[{"uid":"028e7b86-84"}]},"028e7b86-336":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","moduleParts":{"uni_modules/uview-plus/libs/function/digit.js":"028e7b86-337"},"imported":[],"importedBy":[{"uid":"028e7b86-130"}]},"028e7b86-338":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/adapters/index.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/adapters/index.js":"028e7b86-339"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-340"},{"uid":"028e7b86-342"},{"uid":"028e7b86-344"},{"uid":"028e7b86-346"}],"importedBy":[{"uid":"028e7b86-350"}]},"028e7b86-340":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/buildURL.js":"028e7b86-341"},"imported":[{"uid":"028e7b86-346"}],"importedBy":[{"uid":"028e7b86-338"}]},"028e7b86-342":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/buildFullPath.js":"028e7b86-343"},"imported":[{"uid":"028e7b86-358"},{"uid":"028e7b86-360"}],"importedBy":[{"uid":"028e7b86-338"}]},"028e7b86-344":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/settle.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/settle.js":"028e7b86-345"},"imported":[],"importedBy":[{"uid":"028e7b86-338"}]},"028e7b86-346":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/utils.js":"028e7b86-347"},"imported":[],"importedBy":[{"uid":"028e7b86-142"},{"uid":"028e7b86-352"},{"uid":"028e7b86-338"},{"uid":"028e7b86-340"}]},"028e7b86-348":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/InterceptorManager.js":"028e7b86-349"},"imported":[],"importedBy":[{"uid":"028e7b86-142"}]},"028e7b86-350":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/dispatchRequest.js":"028e7b86-351"},"imported":[{"uid":"028e7b86-338"}],"importedBy":[{"uid":"028e7b86-142"}]},"028e7b86-352":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/mergeConfig.js":"028e7b86-353"},"imported":[{"uid":"028e7b86-346"}],"importedBy":[{"uid":"028e7b86-142"}]},"028e7b86-354":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/core/defaults.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/core/defaults.js":"028e7b86-355"},"imported":[],"importedBy":[{"uid":"028e7b86-142"}]},"028e7b86-356":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/utils/clone.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/utils/clone.js":"028e7b86-357"},"imported":[],"importedBy":[{"uid":"028e7b86-142"}]},"028e7b86-358":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js":"028e7b86-359"},"imported":[],"importedBy":[{"uid":"028e7b86-342"}]},"028e7b86-360":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/helpers/combineURLs.js":"028e7b86-361"},"imported":[],"importedBy":[{"uid":"028e7b86-342"}]},"028e7b86-362":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/luch-request/index.js","moduleParts":{"uni_modules/uview-plus/libs/luch-request/index.js":"028e7b86-363"},"imported":[{"uid":"028e7b86-142"}],"importedBy":[{"uid":"028e7b86-28"}]},"028e7b86-364":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/button.js":"028e7b86-365"},"imported":[{"uid":"028e7b86-82"}],"importedBy":[{"uid":"028e7b86-562"},{"uid":"028e7b86-656"}]},"028e7b86-366":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpShare.js":"028e7b86-367"},"imported":[{"uid":"028e7b86-82"},{"uid":"028e7b86-130"}],"importedBy":[{"uid":"028e7b86-6"}]},"028e7b86-368":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/openType.js":"028e7b86-369"},"imported":[{"uid":"028e7b86-82"}],"importedBy":[{"uid":"028e7b86-562"},{"uid":"028e7b86-656"}]},"028e7b86-370":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/async-validator.js","moduleParts":{"uni_modules/uview-plus/libs/util/async-validator.js":"028e7b86-371"},"imported":[],"importedBy":[{"uid":"028e7b86-558"}]},"028e7b86-372":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/default/index.js":"028e7b86-373"},"imported":[],"importedBy":[{"uid":"028e7b86-374"}]},"028e7b86-374":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue","moduleParts":{"pages/default/index.js":"028e7b86-375"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-372"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true}],"importedBy":[{"uid":"028e7b86-376"}]},"028e7b86-376":{"id":"uniPage://cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","moduleParts":{"pages/default/index.js":"028e7b86-377"},"imported":[{"uid":"028e7b86-374"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-378":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/index/index.js":"028e7b86-379"},"imported":[],"importedBy":[{"uid":"028e7b86-380"}]},"028e7b86-380":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue","moduleParts":{"pages/index/index.js":"028e7b86-381"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-64"},{"uid":"028e7b86-42"},{"uid":"028e7b86-378"},{"uid":"028e7b86-40"},{"uid":"028e7b86-496","dynamic":true},{"uid":"028e7b86-502","dynamic":true},{"uid":"028e7b86-508","dynamic":true},{"uid":"028e7b86-514","dynamic":true},{"uid":"028e7b86-520","dynamic":true},{"uid":"028e7b86-526","dynamic":true}],"importedBy":[{"uid":"028e7b86-382"}]},"028e7b86-382":{"id":"uniPage://cGFnZXMvaW5kZXgvaW5kZXgudnVl","moduleParts":{"pages/index/index.js":"028e7b86-383"},"imported":[{"uid":"028e7b86-380"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-384":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue?vue&type=style&index=0&scoped=45258083&lang.scss","moduleParts":{"pages/login/index.js":"028e7b86-385"},"imported":[],"importedBy":[{"uid":"028e7b86-386"}]},"028e7b86-386":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue","moduleParts":{"pages/login/index.js":"028e7b86-387"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-8"},{"uid":"028e7b86-384"},{"uid":"028e7b86-40"},{"uid":"028e7b86-532","dynamic":true}],"importedBy":[{"uid":"028e7b86-388"}]},"028e7b86-388":{"id":"uniPage://cGFnZXMvbG9naW4vaW5kZXgudnVl","moduleParts":{"pages/login/index.js":"028e7b86-389"},"imported":[{"uid":"028e7b86-386"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-390":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/release/index.js":"028e7b86-391"},"imported":[],"importedBy":[{"uid":"028e7b86-392"}]},"028e7b86-392":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue","moduleParts":{"pages/release/index.js":"028e7b86-393"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-64"},{"uid":"028e7b86-46"},{"uid":"028e7b86-390"},{"uid":"028e7b86-40"},{"uid":"028e7b86-538","dynamic":true},{"uid":"028e7b86-544","dynamic":true},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-550","dynamic":true},{"uid":"028e7b86-556","dynamic":true},{"uid":"028e7b86-508","dynamic":true},{"uid":"028e7b86-560","dynamic":true},{"uid":"028e7b86-568","dynamic":true},{"uid":"028e7b86-526","dynamic":true}],"importedBy":[{"uid":"028e7b86-394"}]},"028e7b86-394":{"id":"uniPage://cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","moduleParts":{"pages/release/index.js":"028e7b86-395"},"imported":[{"uid":"028e7b86-392"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-396":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/wallet/index.js":"028e7b86-397"},"imported":[],"importedBy":[{"uid":"028e7b86-398"}]},"028e7b86-398":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue","moduleParts":{"pages/wallet/index.js":"028e7b86-399"},"imported":[{"uid":"028e7b86-42"},{"uid":"028e7b86-396"},{"uid":"028e7b86-40"},{"uid":"028e7b86-568","dynamic":true},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-520","dynamic":true}],"importedBy":[{"uid":"028e7b86-400"}]},"028e7b86-400":{"id":"uniPage://cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","moduleParts":{"pages/wallet/index.js":"028e7b86-401"},"imported":[{"uid":"028e7b86-398"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-402":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/mine/index.js":"028e7b86-403"},"imported":[],"importedBy":[{"uid":"028e7b86-404"}]},"028e7b86-404":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue","moduleParts":{"pages/mine/index.js":"028e7b86-405"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-10"},{"uid":"028e7b86-12"},{"uid":"028e7b86-14"},{"uid":"028e7b86-16"},{"uid":"028e7b86-402"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true}],"importedBy":[{"uid":"028e7b86-406"}]},"028e7b86-406":{"id":"uniPage://cGFnZXMvbWluZS9pbmRleC52dWU","moduleParts":{"pages/mine/index.js":"028e7b86-407"},"imported":[{"uid":"028e7b86-404"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-408":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/mine.js":"028e7b86-409"},"imported":[],"importedBy":[{"uid":"028e7b86-410"}]},"028e7b86-410":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue","moduleParts":{"pages/mine/mine.js":"028e7b86-411"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-64"},{"uid":"028e7b86-42"},{"uid":"028e7b86-408"},{"uid":"028e7b86-40"},{"uid":"028e7b86-574","dynamic":true},{"uid":"028e7b86-580","dynamic":true},{"uid":"028e7b86-586","dynamic":true}],"importedBy":[{"uid":"028e7b86-412"}]},"028e7b86-412":{"id":"uniPage://cGFnZXMvbWluZS9taW5lLnZ1ZQ","moduleParts":{"pages/mine/mine.js":"028e7b86-413"},"imported":[{"uid":"028e7b86-410"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-414":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/apply.js":"028e7b86-415"},"imported":[],"importedBy":[{"uid":"028e7b86-416"}]},"028e7b86-416":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue","moduleParts":{"pages/mine/apply.js":"028e7b86-417"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-64"},{"uid":"028e7b86-66"},{"uid":"028e7b86-42"},{"uid":"028e7b86-414"},{"uid":"028e7b86-40"},{"uid":"028e7b86-592","dynamic":true},{"uid":"028e7b86-544","dynamic":true},{"uid":"028e7b86-538","dynamic":true},{"uid":"028e7b86-550","dynamic":true},{"uid":"028e7b86-568","dynamic":true},{"uid":"028e7b86-560","dynamic":true}],"importedBy":[{"uid":"028e7b86-418"}]},"028e7b86-418":{"id":"uniPage://cGFnZXMvbWluZS9hcHBseS52dWU","moduleParts":{"pages/mine/apply.js":"028e7b86-419"},"imported":[{"uid":"028e7b86-416"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-420":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/test/test.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/test/test.js":"028e7b86-421"},"imported":[],"importedBy":[{"uid":"028e7b86-422"}]},"028e7b86-422":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/test/test.vue","moduleParts":{"pages/test/test.js":"028e7b86-423"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-420"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-424"}]},"028e7b86-424":{"id":"uniPage://cGFnZXMvdGVzdC90ZXN0LnZ1ZQ","moduleParts":{"pages/test/test.js":"028e7b86-425"},"imported":[{"uid":"028e7b86-422"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-426":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/checkin/index.js":"028e7b86-427"},"imported":[],"importedBy":[{"uid":"028e7b86-428"}]},"028e7b86-428":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/index.vue","moduleParts":{"pages/checkin/index.js":"028e7b86-429"},"imported":[{"uid":"028e7b86-42"},{"uid":"028e7b86-426"},{"uid":"028e7b86-40"},{"uid":"028e7b86-496","dynamic":true},{"uid":"028e7b86-598","dynamic":true},{"uid":"028e7b86-502","dynamic":true},{"uid":"028e7b86-508","dynamic":true},{"uid":"028e7b86-538","dynamic":true},{"uid":"028e7b86-568","dynamic":true},{"uid":"028e7b86-514","dynamic":true},{"uid":"028e7b86-520","dynamic":true},{"uid":"028e7b86-526","dynamic":true}],"importedBy":[{"uid":"028e7b86-430"}]},"028e7b86-430":{"id":"uniPage://cGFnZXNcY2hlY2tpblxpbmRleC52dWU","moduleParts":{"pages/checkin/index.js":"028e7b86-431"},"imported":[{"uid":"028e7b86-428"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-432":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/record.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/checkin/record.js":"028e7b86-433"},"imported":[],"importedBy":[{"uid":"028e7b86-434"}]},"028e7b86-434":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/record.vue","moduleParts":{"pages/checkin/record.js":"028e7b86-435"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-432"},{"uid":"028e7b86-40"},{"uid":"028e7b86-574","dynamic":true},{"uid":"028e7b86-604","dynamic":true},{"uid":"028e7b86-610","dynamic":true},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-616","dynamic":true},{"uid":"028e7b86-622","dynamic":true},{"uid":"028e7b86-568","dynamic":true}],"importedBy":[{"uid":"028e7b86-436"}]},"028e7b86-436":{"id":"uniPage://cGFnZXNcY2hlY2tpblxyZWNvcmQudnVl","moduleParts":{"pages/checkin/record.js":"028e7b86-437"},"imported":[{"uid":"028e7b86-434"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-438":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/checkin.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/checkin/checkin.js":"028e7b86-439"},"imported":[],"importedBy":[{"uid":"028e7b86-440"}]},"028e7b86-440":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/checkin/checkin.vue","moduleParts":{"pages/checkin/checkin.js":"028e7b86-441"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-66"},{"uid":"028e7b86-42"},{"uid":"028e7b86-438"},{"uid":"028e7b86-40"},{"uid":"028e7b86-630","dynamic":true},{"uid":"028e7b86-592","dynamic":true},{"uid":"028e7b86-574","dynamic":true},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-568","dynamic":true}],"importedBy":[{"uid":"028e7b86-442"}]},"028e7b86-442":{"id":"uniPage://cGFnZXNcY2hlY2tpblxjaGVja2luLnZ1ZQ","moduleParts":{"pages/checkin/checkin.js":"028e7b86-443"},"imported":[{"uid":"028e7b86-440"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-444":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/index.js":"028e7b86-445"},"imported":[],"importedBy":[{"uid":"028e7b86-446"}]},"028e7b86-446":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue","moduleParts":{"pages/enterprise/index.js":"028e7b86-447"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-64"},{"uid":"028e7b86-42"},{"uid":"028e7b86-444"},{"uid":"028e7b86-40"},{"uid":"028e7b86-574","dynamic":true},{"uid":"028e7b86-580","dynamic":true},{"uid":"028e7b86-586","dynamic":true}],"importedBy":[{"uid":"028e7b86-448"}]},"028e7b86-448":{"id":"uniPage://cGFnZXNcZW50ZXJwcmlzZVxpbmRleC52dWU","moduleParts":{"pages/enterprise/index.js":"028e7b86-449"},"imported":[{"uid":"028e7b86-446"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-450":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/enterprise.js":"028e7b86-451"},"imported":[],"importedBy":[{"uid":"028e7b86-452"}]},"028e7b86-452":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue","moduleParts":{"pages/enterprise/enterprise.js":"028e7b86-453"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-66"},{"uid":"028e7b86-64"},{"uid":"028e7b86-42"},{"uid":"028e7b86-450"},{"uid":"028e7b86-40"},{"uid":"028e7b86-592","dynamic":true},{"uid":"028e7b86-544","dynamic":true},{"uid":"028e7b86-538","dynamic":true},{"uid":"028e7b86-550","dynamic":true},{"uid":"028e7b86-568","dynamic":true},{"uid":"028e7b86-560","dynamic":true}],"importedBy":[{"uid":"028e7b86-454"}]},"028e7b86-454":{"id":"uniPage://cGFnZXNcZW50ZXJwcmlzZVxlbnRlcnByaXNlLnZ1ZQ","moduleParts":{"pages/enterprise/enterprise.js":"028e7b86-455"},"imported":[{"uid":"028e7b86-452"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-456":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/detail/detail.js":"028e7b86-457"},"imported":[],"importedBy":[{"uid":"028e7b86-458"}]},"028e7b86-458":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue","moduleParts":{"pages/detail/detail.js":"028e7b86-459"},"imported":[{"uid":"028e7b86-42"},{"uid":"028e7b86-18"},{"uid":"028e7b86-456"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-568","dynamic":true}],"importedBy":[{"uid":"028e7b86-460"}]},"028e7b86-460":{"id":"uniPage://cGFnZXNcZGV0YWlsXGRldGFpbC52dWU","moduleParts":{"pages/detail/detail.js":"028e7b86-461"},"imported":[{"uid":"028e7b86-458"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-462":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/order/order.js":"028e7b86-463"},"imported":[],"importedBy":[{"uid":"028e7b86-464"}]},"028e7b86-464":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue","moduleParts":{"pages/order/order.js":"028e7b86-465"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-64"},{"uid":"028e7b86-42"},{"uid":"028e7b86-462"},{"uid":"028e7b86-40"},{"uid":"028e7b86-496","dynamic":true},{"uid":"028e7b86-502","dynamic":true},{"uid":"028e7b86-508","dynamic":true},{"uid":"028e7b86-514","dynamic":true},{"uid":"028e7b86-520","dynamic":true},{"uid":"028e7b86-526","dynamic":true}],"importedBy":[{"uid":"028e7b86-466"}]},"028e7b86-466":{"id":"uniPage://cGFnZXNcb3JkZXJcb3JkZXIudnVl","moduleParts":{"pages/order/order.js":"028e7b86-467"},"imported":[{"uid":"028e7b86-464"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-468":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/detail.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/order/detail.js":"028e7b86-469"},"imported":[],"importedBy":[{"uid":"028e7b86-470"}]},"028e7b86-470":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/detail.vue","moduleParts":{"pages/order/detail.js":"028e7b86-471"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-64"},{"uid":"028e7b86-42"},{"uid":"028e7b86-468"},{"uid":"028e7b86-40"},{"uid":"028e7b86-574","dynamic":true},{"uid":"028e7b86-568","dynamic":true},{"uid":"028e7b86-604","dynamic":true},{"uid":"028e7b86-610","dynamic":true},{"uid":"028e7b86-622","dynamic":true}],"importedBy":[{"uid":"028e7b86-472"}]},"028e7b86-472":{"id":"uniPage://cGFnZXNcb3JkZXJcZGV0YWlsLnZ1ZQ","moduleParts":{"pages/order/detail.js":"028e7b86-473"},"imported":[{"uid":"028e7b86-470"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-474":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/worker.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/order/worker.js":"028e7b86-475"},"imported":[],"importedBy":[{"uid":"028e7b86-476"}]},"028e7b86-476":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/worker.vue","moduleParts":{"pages/order/worker.js":"028e7b86-477"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-474"},{"uid":"028e7b86-40"},{"uid":"028e7b86-574","dynamic":true},{"uid":"028e7b86-604","dynamic":true},{"uid":"028e7b86-610","dynamic":true},{"uid":"028e7b86-622","dynamic":true},{"uid":"028e7b86-568","dynamic":true}],"importedBy":[{"uid":"028e7b86-478"}]},"028e7b86-478":{"id":"uniPage://cGFnZXNcb3JkZXJcd29ya2VyLnZ1ZQ","moduleParts":{"pages/order/worker.js":"028e7b86-479"},"imported":[{"uid":"028e7b86-476"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-480":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/myorder.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/order/myorder.js":"028e7b86-481"},"imported":[],"importedBy":[{"uid":"028e7b86-482"}]},"028e7b86-482":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/myorder.vue","moduleParts":{"pages/order/myorder.js":"028e7b86-483"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-64"},{"uid":"028e7b86-42"},{"uid":"028e7b86-480"},{"uid":"028e7b86-40"},{"uid":"028e7b86-496","dynamic":true},{"uid":"028e7b86-502","dynamic":true},{"uid":"028e7b86-508","dynamic":true},{"uid":"028e7b86-514","dynamic":true},{"uid":"028e7b86-520","dynamic":true},{"uid":"028e7b86-526","dynamic":true}],"importedBy":[{"uid":"028e7b86-484"}]},"028e7b86-484":{"id":"uniPage://cGFnZXNcb3JkZXJcbXlvcmRlci52dWU","moduleParts":{"pages/order/myorder.js":"028e7b86-485"},"imported":[{"uid":"028e7b86-482"}],"importedBy":[{"uid":"028e7b86-0"}]},"028e7b86-486":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"028e7b86-487"},"imported":[],"importedBy":[{"uid":"028e7b86-488"}]},"028e7b86-488":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-icon/u-icon.vue","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"028e7b86-489"},"imported":[{"uid":"028e7b86-98"},{"uid":"028e7b86-100"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-152"},{"uid":"028e7b86-42"},{"uid":"028e7b86-486"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-490"}]},"028e7b86-490":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"028e7b86-491"},"imported":[{"uid":"028e7b86-488"}],"importedBy":[{"uid":"028e7b86-374"},{"uid":"028e7b86-392"},{"uid":"028e7b86-398"},{"uid":"028e7b86-404"},{"uid":"028e7b86-434"},{"uid":"028e7b86-440"},{"uid":"028e7b86-458"},{"uid":"028e7b86-494"},{"uid":"028e7b86-506"},{"uid":"028e7b86-518"},{"uid":"028e7b86-536"},{"uid":"028e7b86-542"},{"uid":"028e7b86-554"},{"uid":"028e7b86-566"},{"uid":"028e7b86-572"},{"uid":"028e7b86-602"},{"uid":"028e7b86-614"},{"uid":"028e7b86-656"}]},"028e7b86-492":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/u-search.vue?vue&type=style&index=0&scoped=db25ac38&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"028e7b86-493"},"imported":[],"importedBy":[{"uid":"028e7b86-494"}]},"028e7b86-494":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-search/u-search.vue","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"028e7b86-495"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-118"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-492"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true}],"importedBy":[{"uid":"028e7b86-496"}]},"028e7b86-496":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2VhcmNoL3Utc2VhcmNoLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-search/u-search.js":"028e7b86-497"},"imported":[{"uid":"028e7b86-494"}],"importedBy":[{"uid":"028e7b86-380"},{"uid":"028e7b86-428"},{"uid":"028e7b86-464"},{"uid":"028e7b86-482"}]},"028e7b86-498":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"028e7b86-499"},"imported":[],"importedBy":[{"uid":"028e7b86-500"}]},"028e7b86-500":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-sticky/u-sticky.vue","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"028e7b86-501"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-120"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-154"},{"uid":"028e7b86-42"},{"uid":"028e7b86-498"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-502"}]},"028e7b86-502":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"028e7b86-503"},"imported":[{"uid":"028e7b86-500"}],"importedBy":[{"uid":"028e7b86-380"},{"uid":"028e7b86-428"},{"uid":"028e7b86-464"},{"uid":"028e7b86-482"}]},"028e7b86-504":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"028e7b86-505"},"imported":[],"importedBy":[{"uid":"028e7b86-506"}]},"028e7b86-506":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tag/u-tag.vue","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"028e7b86-507"},"imported":[{"uid":"028e7b86-124"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-86"},{"uid":"028e7b86-42"},{"uid":"028e7b86-504"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-636","dynamic":true}],"importedBy":[{"uid":"028e7b86-508"}]},"028e7b86-508":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"028e7b86-509"},"imported":[{"uid":"028e7b86-506"}],"importedBy":[{"uid":"028e7b86-380"},{"uid":"028e7b86-392"},{"uid":"028e7b86-428"},{"uid":"028e7b86-464"},{"uid":"028e7b86-482"}]},"028e7b86-510":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/u-loadmore.vue?vue&type=style&index=0&scoped=80ed34f9&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"028e7b86-511"},"imported":[],"importedBy":[{"uid":"028e7b86-512"}]},"028e7b86-512":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loadmore/u-loadmore.vue","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"028e7b86-513"},"imported":[{"uid":"028e7b86-114"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-510"},{"uid":"028e7b86-40"},{"uid":"028e7b86-642","dynamic":true},{"uid":"028e7b86-648","dynamic":true}],"importedBy":[{"uid":"028e7b86-514"}]},"028e7b86-514":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZG1vcmUvdS1sb2FkbW9yZS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-loadmore/u-loadmore.js":"028e7b86-515"},"imported":[{"uid":"028e7b86-512"}],"importedBy":[{"uid":"028e7b86-380"},{"uid":"028e7b86-428"},{"uid":"028e7b86-464"},{"uid":"028e7b86-482"}]},"028e7b86-516":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"028e7b86-517"},"imported":[],"importedBy":[{"uid":"028e7b86-518"}]},"028e7b86-518":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-empty/u-empty.vue","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"028e7b86-519"},"imported":[{"uid":"028e7b86-92"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-516"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true}],"importedBy":[{"uid":"028e7b86-520"}]},"028e7b86-520":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"028e7b86-521"},"imported":[{"uid":"028e7b86-518"}],"importedBy":[{"uid":"028e7b86-380"},{"uid":"028e7b86-398"},{"uid":"028e7b86-428"},{"uid":"028e7b86-464"},{"uid":"028e7b86-482"}]},"028e7b86-522":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker/fui-date-picker.vue?vue&type=style&index=0&scoped=42055a14&lang.css","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"028e7b86-523"},"imported":[],"importedBy":[{"uid":"028e7b86-524"}]},"028e7b86-524":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-date-picker/fui-date-picker.vue","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"028e7b86-525"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-522"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-526"}]},"028e7b86-526":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1kYXRlLXBpY2tlci9mdWktZGF0ZS1waWNrZXIudnVl","moduleParts":{"components/firstui/fui-date-picker/fui-date-picker.js":"028e7b86-527"},"imported":[{"uid":"028e7b86-524"}],"importedBy":[{"uid":"028e7b86-380"},{"uid":"028e7b86-392"},{"uid":"028e7b86-428"},{"uid":"028e7b86-464"},{"uid":"028e7b86-482"}]},"028e7b86-528":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue?vue&type=style&index=0&lang.scss","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"028e7b86-529"},"imported":[],"importedBy":[{"uid":"028e7b86-530"}]},"028e7b86-530":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"028e7b86-531"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-528"},{"uid":"028e7b86-40"},{"uid":"028e7b86-652","dynamic":true}],"importedBy":[{"uid":"028e7b86-532"}]},"028e7b86-532":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXBvcHVwL2NvbXBvbmVudHMvdW5pLXBvcHVwL3VuaS1wb3B1cC52dWU","moduleParts":{"uni_modules/uni-popup/components/uni-popup/uni-popup.js":"028e7b86-533"},"imported":[{"uid":"028e7b86-530"}],"importedBy":[{"uid":"028e7b86-386"}]},"028e7b86-534":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"028e7b86-535"},"imported":[],"importedBy":[{"uid":"028e7b86-536"}]},"028e7b86-536":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-input/u-input.vue","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"028e7b86-537"},"imported":[{"uid":"028e7b86-102"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-148"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-534"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true}],"importedBy":[{"uid":"028e7b86-538"}]},"028e7b86-538":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"028e7b86-539"},"imported":[{"uid":"028e7b86-536"}],"importedBy":[{"uid":"028e7b86-392"},{"uid":"028e7b86-416"},{"uid":"028e7b86-428"},{"uid":"028e7b86-452"}]},"028e7b86-540":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"028e7b86-541"},"imported":[],"importedBy":[{"uid":"028e7b86-542"}]},"028e7b86-542":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form-item/u-form-item.vue","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"028e7b86-543"},"imported":[{"uid":"028e7b86-94"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-84"},{"uid":"028e7b86-156"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-540"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-642","dynamic":true}],"importedBy":[{"uid":"028e7b86-544"}]},"028e7b86-544":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"028e7b86-545"},"imported":[{"uid":"028e7b86-542"}],"importedBy":[{"uid":"028e7b86-392"},{"uid":"028e7b86-416"},{"uid":"028e7b86-452"}]},"028e7b86-546":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"028e7b86-547"},"imported":[],"importedBy":[{"uid":"028e7b86-548"}]},"028e7b86-548":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-textarea/u-textarea.vue","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"028e7b86-549"},"imported":[{"uid":"028e7b86-132"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-546"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-550"}]},"028e7b86-550":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"028e7b86-551"},"imported":[{"uid":"028e7b86-548"}],"importedBy":[{"uid":"028e7b86-392"},{"uid":"028e7b86-416"},{"uid":"028e7b86-452"}]},"028e7b86-552":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"028e7b86-553"},"imported":[],"importedBy":[{"uid":"028e7b86-554"}]},"028e7b86-554":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-number-box/u-number-box.vue","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"028e7b86-555"},"imported":[{"uid":"028e7b86-116"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-552"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true}],"importedBy":[{"uid":"028e7b86-556"}]},"028e7b86-556":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"028e7b86-557"},"imported":[{"uid":"028e7b86-554"}],"importedBy":[{"uid":"028e7b86-392"}]},"028e7b86-558":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-form/u-form.vue","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"028e7b86-559"},"imported":[{"uid":"028e7b86-96"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-370"},{"uid":"028e7b86-130"},{"uid":"028e7b86-86"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-560"}]},"028e7b86-560":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"028e7b86-561"},"imported":[{"uid":"028e7b86-558"}],"importedBy":[{"uid":"028e7b86-392"},{"uid":"028e7b86-416"},{"uid":"028e7b86-452"}]},"028e7b86-562":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue?vue&type=script&lang.ts","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"028e7b86-563"},"imported":[{"uid":"028e7b86-364"},{"uid":"028e7b86-368"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-88"},{"uid":"028e7b86-130"},{"uid":"028e7b86-150"},{"uid":"028e7b86-156"}],"importedBy":[{"uid":"028e7b86-566"}]},"028e7b86-564":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"028e7b86-565"},"imported":[],"importedBy":[{"uid":"028e7b86-566"}]},"028e7b86-566":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-button/u-button.vue","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"028e7b86-567"},"imported":[{"uid":"028e7b86-562"},{"uid":"028e7b86-42"},{"uid":"028e7b86-564"},{"uid":"028e7b86-40"},{"uid":"028e7b86-648","dynamic":true},{"uid":"028e7b86-490","dynamic":true}],"importedBy":[{"uid":"028e7b86-568"}]},"028e7b86-568":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"028e7b86-569"},"imported":[{"uid":"028e7b86-566"}],"importedBy":[{"uid":"028e7b86-392"},{"uid":"028e7b86-398"},{"uid":"028e7b86-416"},{"uid":"028e7b86-428"},{"uid":"028e7b86-434"},{"uid":"028e7b86-440"},{"uid":"028e7b86-452"},{"uid":"028e7b86-458"},{"uid":"028e7b86-470"},{"uid":"028e7b86-476"}]},"028e7b86-570":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/u-avatar.vue?vue&type=style&index=0&scoped=4139b3f3&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"028e7b86-571"},"imported":[],"importedBy":[{"uid":"028e7b86-572"}]},"028e7b86-572":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-avatar/u-avatar.vue","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"028e7b86-573"},"imported":[{"uid":"028e7b86-80"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-570"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-658","dynamic":true}],"importedBy":[{"uid":"028e7b86-574"}]},"028e7b86-574":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"028e7b86-575"},"imported":[{"uid":"028e7b86-572"}],"importedBy":[{"uid":"028e7b86-410"},{"uid":"028e7b86-434"},{"uid":"028e7b86-440"},{"uid":"028e7b86-446"},{"uid":"028e7b86-470"},{"uid":"028e7b86-476"},{"uid":"028e7b86-614"}]},"028e7b86-576":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell/fui-list-cell.vue?vue&type=style&index=0&scoped=77eef2c9&lang.css","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"028e7b86-577"},"imported":[],"importedBy":[{"uid":"028e7b86-578"}]},"028e7b86-578":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell/fui-list-cell.vue","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"028e7b86-579"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-576"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-580"}]},"028e7b86-580":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"028e7b86-581"},"imported":[{"uid":"028e7b86-578"}],"importedBy":[{"uid":"028e7b86-410"},{"uid":"028e7b86-446"}]},"028e7b86-582":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list/fui-list.vue?vue&type=style&index=0&scoped=61b84bd4&lang.css","moduleParts":{"components/firstui/fui-list/fui-list.js":"028e7b86-583"},"imported":[],"importedBy":[{"uid":"028e7b86-584"}]},"028e7b86-584":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list/fui-list.vue","moduleParts":{"components/firstui/fui-list/fui-list.js":"028e7b86-585"},"imported":[{"uid":"028e7b86-42"},{"uid":"028e7b86-582"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-586"}]},"028e7b86-586":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","moduleParts":{"components/firstui/fui-list/fui-list.js":"028e7b86-587"},"imported":[{"uid":"028e7b86-584"}],"importedBy":[{"uid":"028e7b86-410"},{"uid":"028e7b86-446"}]},"028e7b86-588":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload/fui-upload.vue?vue&type=style&index=0&scoped=2d5d0fa0&lang.css","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"028e7b86-589"},"imported":[],"importedBy":[{"uid":"028e7b86-590"}]},"028e7b86-590":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-upload/fui-upload.vue","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"028e7b86-591"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-588"},{"uid":"028e7b86-40"},{"uid":"028e7b86-630","dynamic":true}],"importedBy":[{"uid":"028e7b86-592"}]},"028e7b86-592":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS11cGxvYWQvZnVpLXVwbG9hZC52dWU","moduleParts":{"components/firstui/fui-upload/fui-upload.js":"028e7b86-593"},"imported":[{"uid":"028e7b86-590"}],"importedBy":[{"uid":"028e7b86-416"},{"uid":"028e7b86-440"},{"uid":"028e7b86-452"}]},"028e7b86-594":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"028e7b86-595"},"imported":[],"importedBy":[{"uid":"028e7b86-596"}]},"028e7b86-596":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-subsection/u-subsection.vue","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"028e7b86-597"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-122"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-594"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-598"}]},"028e7b86-598":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"028e7b86-599"},"imported":[{"uid":"028e7b86-596"}],"importedBy":[{"uid":"028e7b86-428"}]},"028e7b86-600":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/u-cell.vue?vue&type=style&index=0&scoped=3b946341&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"028e7b86-601"},"imported":[],"importedBy":[{"uid":"028e7b86-602"}]},"028e7b86-602":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-cell/u-cell.vue","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"028e7b86-603"},"imported":[{"uid":"028e7b86-90"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-86"},{"uid":"028e7b86-42"},{"uid":"028e7b86-600"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-642","dynamic":true}],"importedBy":[{"uid":"028e7b86-604"}]},"028e7b86-604":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtY2VsbC91LWNlbGwudnVl","moduleParts":{"uni_modules/uview-plus/components/u-cell/u-cell.js":"028e7b86-605"},"imported":[{"uid":"028e7b86-602"}],"importedBy":[{"uid":"028e7b86-434"},{"uid":"028e7b86-470"},{"uid":"028e7b86-476"}]},"028e7b86-606":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/u-list-item.vue?vue&type=style&index=0&scoped=f5ff7ac7&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"028e7b86-607"},"imported":[],"importedBy":[{"uid":"028e7b86-608"}]},"028e7b86-608":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list-item/u-list-item.vue","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"028e7b86-609"},"imported":[{"uid":"028e7b86-108"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-606"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-610"}]},"028e7b86-610":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC1pdGVtL3UtbGlzdC1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-list-item/u-list-item.js":"028e7b86-611"},"imported":[{"uid":"028e7b86-608"}],"importedBy":[{"uid":"028e7b86-434"},{"uid":"028e7b86-470"},{"uid":"028e7b86-476"}]},"028e7b86-612":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/tem/tem-steps.vue?vue&type=style&index=0&scoped=746e3803&lang.scss","moduleParts":{"components/tem/tem-steps.js":"028e7b86-613"},"imported":[],"importedBy":[{"uid":"028e7b86-614"}]},"028e7b86-614":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/tem/tem-steps.vue","moduleParts":{"components/tem/tem-steps.js":"028e7b86-615"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-42"},{"uid":"028e7b86-612"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-574","dynamic":true}],"importedBy":[{"uid":"028e7b86-616"}]},"028e7b86-616":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy90ZW0vdGVtLXN0ZXBzLnZ1ZQ","moduleParts":{"components/tem/tem-steps.js":"028e7b86-617"},"imported":[{"uid":"028e7b86-614"}],"importedBy":[{"uid":"028e7b86-434"}]},"028e7b86-618":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/u-list.vue?vue&type=style&index=0&scoped=e8455553&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"028e7b86-619"},"imported":[],"importedBy":[{"uid":"028e7b86-620"}]},"028e7b86-620":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-list/u-list.vue","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"028e7b86-621"},"imported":[{"uid":"028e7b86-110"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-618"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-622"}]},"028e7b86-622":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGlzdC91LWxpc3QudnVl","moduleParts":{"uni_modules/uview-plus/components/u-list/u-list.js":"028e7b86-623"},"imported":[{"uid":"028e7b86-620"}],"importedBy":[{"uid":"028e7b86-434"},{"uid":"028e7b86-470"},{"uid":"028e7b86-476"}]},"028e7b86-624":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.js","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"028e7b86-625"},"imported":[],"importedBy":[{"uid":"028e7b86-628"}]},"028e7b86-626":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"028e7b86-627"},"imported":[],"importedBy":[{"uid":"028e7b86-628"}]},"028e7b86-628":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"028e7b86-629"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-624"},{"uid":"028e7b86-42"},{"uid":"028e7b86-626"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-630"}]},"028e7b86-630":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"028e7b86-631"},"imported":[{"uid":"028e7b86-628"}],"importedBy":[{"uid":"028e7b86-440"},{"uid":"028e7b86-590"}]},"028e7b86-632":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"028e7b86-633"},"imported":[],"importedBy":[{"uid":"028e7b86-634"}]},"028e7b86-634":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-transition/u-transition.vue","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"028e7b86-635"},"imported":[{"uid":"028e7b86-134"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-136"},{"uid":"028e7b86-42"},{"uid":"028e7b86-632"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-636"}]},"028e7b86-636":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"028e7b86-637"},"imported":[{"uid":"028e7b86-634"}],"importedBy":[{"uid":"028e7b86-506"}]},"028e7b86-638":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"028e7b86-639"},"imported":[],"importedBy":[{"uid":"028e7b86-640"}]},"028e7b86-640":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-line/u-line.vue","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"028e7b86-641"},"imported":[{"uid":"028e7b86-104"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-638"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-642"}]},"028e7b86-642":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"028e7b86-643"},"imported":[{"uid":"028e7b86-640"}],"importedBy":[{"uid":"028e7b86-512"},{"uid":"028e7b86-542"},{"uid":"028e7b86-602"}]},"028e7b86-644":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"028e7b86-645"},"imported":[],"importedBy":[{"uid":"028e7b86-646"}]},"028e7b86-646":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"028e7b86-647"},"imported":[{"uid":"028e7b86-112"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-146"},{"uid":"028e7b86-42"},{"uid":"028e7b86-644"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-648"}]},"028e7b86-648":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"028e7b86-649"},"imported":[{"uid":"028e7b86-646"}],"importedBy":[{"uid":"028e7b86-512"},{"uid":"028e7b86-566"}]},"028e7b86-650":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue","moduleParts":{"uni_modules/uni-transition/components/uni-transition/uni-transition.js":"028e7b86-651"},"imported":[{"uid":"028e7b86-78"},{"uid":"028e7b86-42"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-652"}]},"028e7b86-652":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdW5pLXRyYW5zaXRpb24vY29tcG9uZW50cy91bmktdHJhbnNpdGlvbi91bmktdHJhbnNpdGlvbi52dWU","moduleParts":{"uni_modules/uni-transition/components/uni-transition/uni-transition.js":"028e7b86-653"},"imported":[{"uid":"028e7b86-650"}],"importedBy":[{"uid":"028e7b86-530"}]},"028e7b86-654":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/u-text.vue?vue&type=style&index=0&scoped=8194d41c&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"028e7b86-655"},"imported":[],"importedBy":[{"uid":"028e7b86-656"}]},"028e7b86-656":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-text/u-text.vue","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"028e7b86-657"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-126"},{"uid":"028e7b86-128"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-364"},{"uid":"028e7b86-368"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-654"},{"uid":"028e7b86-40"},{"uid":"028e7b86-490","dynamic":true},{"uid":"028e7b86-664","dynamic":true}],"importedBy":[{"uid":"028e7b86-658"}]},"028e7b86-658":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"028e7b86-659"},"imported":[{"uid":"028e7b86-656"}],"importedBy":[{"uid":"028e7b86-572"}]},"028e7b86-660":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/u-link.vue?vue&type=style&index=0&scoped=d6e711cb&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"028e7b86-661"},"imported":[],"importedBy":[{"uid":"028e7b86-662"}]},"028e7b86-662":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-link/u-link.vue","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"028e7b86-663"},"imported":[{"uid":"028e7b86-38"},{"uid":"028e7b86-106"},{"uid":"028e7b86-140"},{"uid":"028e7b86-138"},{"uid":"028e7b86-130"},{"uid":"028e7b86-42"},{"uid":"028e7b86-660"},{"uid":"028e7b86-40"}],"importedBy":[{"uid":"028e7b86-664"}]},"028e7b86-664":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"028e7b86-665"},"imported":[{"uid":"028e7b86-662"}],"importedBy":[{"uid":"028e7b86-656"}]},"028e7b86-666":{"id":"D:/zcweb/uniapp/temporaryworker/src/manifest-json-js","moduleParts":{},"imported":[],"importedBy":[{"uid":"028e7b86-0"}]}},"env":{"rollup":"4.20.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}}; const run = () => { const width = window.innerWidth; -- Gitblit v1.9.1