| | |
| | | //接口请求地址,如果需要不部署接口端的情况下测试uni-app,可以直接替换为官方测试接口:https://ycm.51zhengcai.com http://192.168.0.9:9997' |
| | | export const apiBaseUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.0.36:5000/':'https://ycm.51zhengcai.com'; |
| | | export default { |
| | | baseUrl: 'https://uview-plus.lingyun.net' |
| | | baseUrl: apiBaseUrl |
| | | } |
| New file |
| | |
| | | import { |
| | | navLinkType |
| | | } from '@/common/setting/constVarsHelper.js'; |
| | | |
| | | /** |
| | | * 全局混入型 |
| | | */ |
| | | module.exports = { |
| | | beforeCreate() { |
| | | |
| | | }, |
| | | data() { |
| | | return { |
| | | /** |
| | | * 页面加载 |
| | | */ |
| | | pageLoading: true |
| | | } |
| | | }, |
| | | methods: { |
| | | /** |
| | | * //常用链接操作 |
| | | */ |
| | | |
| | | //返回首页 |
| | | goHome() { |
| | | uni.switchTab({ |
| | | url: '/pages/index/default/default' |
| | | }); |
| | | }, |
| | | //返回上一页 |
| | | goNavigateBack(el) { |
| | | // let pages = getCurrentPages(); // 当前页页⾯实例 |
| | | // if (pages.length > 1) { |
| | | // uni.navigateBack(); |
| | | // } else { |
| | | // this.goHome() |
| | | // } |
| | | |
| | | uni.navigateBack(); |
| | | }, |
| | | |
| | | //路由跳转 |
| | | goRoute(url) { |
| | | // 无参数 |
| | | this.$u.route(url); |
| | | }, |
| | | goRoute(url, params) { |
| | | // 带参数,传递的对象形式的参数,如{name: 'lisa', age: 18} |
| | | this.$u.route(url, params); |
| | | }, |
| | | //查看所在坐标地图位置 |
| | | goShopMap() { |
| | | var reshipCoordinate = this.$store.state.config.reshipCoordinate; |
| | | if (reshipCoordinate && reshipCoordinate.indexOf(",") != -1) { |
| | | var arr = reshipCoordinate.split(',') |
| | | this.$u.route('/pages/map/map', { |
| | | id: 1, |
| | | latitude: arr[0], |
| | | longitude: arr[1], |
| | | }); |
| | | } |
| | | }, |
| | | //查看所在坐标地图位置 |
| | | goMapDetails(id, latitude, longitude) { |
| | | this.$u.route('/pages/map/map', { |
| | | id: id, |
| | | latitude: latitude, |
| | | longitude: longitude, |
| | | }); |
| | | }, |
| | | goUserCenter() { |
| | | this.$u.route({ |
| | | url: '/pages/index/member/member', |
| | | type: 'switchTab' |
| | | }); |
| | | }, |
| | | goSearch() { |
| | | this.$u.route({ |
| | | url: '/pages/search/search', |
| | | }); |
| | | }, |
| | | // 返回上一页 |
| | | toBackBtn() { |
| | | var pages = getCurrentPages(); |
| | | if (pages.length > 1) { |
| | | uni.navigateBack({ |
| | | delta: 1 |
| | | }); |
| | | } else { |
| | | this.$u.route({ |
| | | type: 'switchTab', |
| | | url: '/pages/index/default/default' |
| | | }); |
| | | } |
| | | }, |
| | | //返回操作处理 |
| | | toOnBackPress(options) { |
| | | if (options.from === 'navigateBack') { |
| | | return false |
| | | } |
| | | let loginPages = ['/pages/index/cart/cart', '/pages/index/member/member'] |
| | | let backPage = this.$store.state.redirectPage |
| | | if (loginPages.indexOf(backPage) > -1) { |
| | | this.$store.commit({ |
| | | type: 'redirect', |
| | | page: '' |
| | | }) |
| | | this.$u.route({ |
| | | type: 'switchTab', |
| | | url: '/pages/index/default/default' |
| | | }) |
| | | return true |
| | | } |
| | | }, |
| | | //登录成功统一跳转处理 |
| | | toLoginSuccessHandleBack() { |
| | | let redirect = this.$store.state.redirectPage |
| | | this.$store.commit({ |
| | | type: 'redirect', |
| | | page: '' |
| | | }) |
| | | let switchTabs = ['/pages/index/default/default', '/pages/index/member/member'] |
| | | if (switchTabs.indexOf(redirect) > -1) { |
| | | this.$u.route({ |
| | | type: 'switchTab', |
| | | url: redirect |
| | | }) |
| | | } else if (redirect) { |
| | | this.$u.route({ |
| | | type: 'switchTab', |
| | | url: redirect |
| | | }) |
| | | } else { |
| | | this.$u.route({ |
| | | type: 'switchTab', |
| | | url: '/pages/index/default/default' |
| | | }) |
| | | } |
| | | }, |
| | | |
| | | // 购物车页面跳转 |
| | | redirectCart() { |
| | | this.$u.route({ |
| | | type: 'switchTab', |
| | | url: '/pages/index/cart/cart' |
| | | }); |
| | | }, |
| | | |
| | | /** |
| | | * 订单接口信息 |
| | | */ |
| | | |
| | | // 查看订单详情 |
| | | goOrderDetail(orderId) { |
| | | this.$u.route('/pages/member/order/detail/detail', { |
| | | orderId: orderId |
| | | }); |
| | | }, |
| | | // 取消订单 |
| | | |
| | | // 去支付 |
| | | goToPay(orderId) { |
| | | this.$u.route('/pages/payment/pay/pay', { |
| | | orderId: orderId, |
| | | type: 1 |
| | | }); |
| | | }, |
| | | // 确认收货 |
| | | |
| | | // 去评价 |
| | | toEvaluate(orderId) { |
| | | this.$u.route('/pages/member/order/evaluate/evaluate', { |
| | | orderId: orderId |
| | | }); |
| | | }, |
| | | // 申请售后 |
| | | |
| | | // 查看物流信息 |
| | | goShowExpress(code, no, address = '', mobile = '') { |
| | | let params = encodeURIComponent( |
| | | 'code=' + code + '&no=' + no + '&add=' + address + '&mobile=' + mobile |
| | | ) |
| | | this.$u.route('/pages/member/order/expressDelivery/expressDelivery', { |
| | | params: params |
| | | }); |
| | | }, |
| | | |
| | | |
| | | /** |
| | | * 商品接口信息 |
| | | */ |
| | | |
| | | // 查看商品详情 |
| | | goGoodsDetail(goodsId) { |
| | | this.$u.route('/pages/goods/goodDetails/goodDetails', { |
| | | id: goodsId |
| | | }); |
| | | }, |
| | | // 查看商品评论详情 |
| | | goGoodComments(goodsId) { |
| | | this.$u.route('/pages/goods/goodComments/goodComments', { |
| | | id: goodsId |
| | | }); |
| | | }, |
| | | // 跳转商品列表页 |
| | | goGoodsList(obj = {}) { |
| | | let url = '/pages/category/list/list' |
| | | if (Object.keys(obj).length) { |
| | | url = url + this.$u.queryParams(obj) |
| | | } |
| | | this.$u.route(url) |
| | | }, |
| | | // 秒杀详情 |
| | | goSeckillDetail(id) { |
| | | this.$u.route('/pages/activity/seckill/seckillDetails/seckillDetails', { |
| | | id: id |
| | | }); |
| | | }, |
| | | // 团购详情 |
| | | goGroupBuyingDetail(id) { |
| | | this.$u.route('/pages/activity/groupBuying/groupBuyingDetails/groupBuyingDetails', { |
| | | id: id |
| | | }); |
| | | }, |
| | | //拼团详情页 |
| | | goPinTuanDetail(id, teamId) { |
| | | if (teamId) { |
| | | this.$u.route('/pages/activity/pinTuan/pinTuanDetails/pinTuanDetails', { |
| | | id: id, |
| | | teamId: teamId, |
| | | }); |
| | | } else { |
| | | this.$u.route('/pages/activity/pinTuan/pinTuanDetails/pinTuanDetails', { |
| | | id: id |
| | | }); |
| | | } |
| | | }, |
| | | // 查看团购列表 |
| | | goGroupPurchase() { |
| | | this.$u.route('/pages/activity/groupBuying/list/list') |
| | | }, |
| | | // 查看秒杀列表 |
| | | goSeckillList() { |
| | | this.$u.route('/pages/activity/seckill/list/list') |
| | | }, |
| | | // 查看拼团列表 |
| | | goPinTuanList() { |
| | | this.$u.route('/pages/activity/pinTuan/list/list') |
| | | }, |
| | | |
| | | |
| | | /** |
| | | * 文章接口 |
| | | */ |
| | | |
| | | // 查看文章分类 |
| | | goArticleClassify(id) { |
| | | this.$u.route('/pages/article/list/list', { |
| | | id: id |
| | | }); |
| | | }, |
| | | goArticleList() { |
| | | this.$u.route('/pages/article/list/list') |
| | | }, |
| | | // 查看文章详情 |
| | | goArticleDetail(id) { |
| | | this.$u.route('/pages/article/details/details', { |
| | | idType: 1, |
| | | id: id |
| | | }); |
| | | }, |
| | | |
| | | /** |
| | | * 公告接口 |
| | | */ |
| | | |
| | | // 查看公告列表 |
| | | goNoticeList() { |
| | | this.$u.route('/pages/notice/list/list') |
| | | }, |
| | | // 查看公告详情 |
| | | goNoticeDetail(id) { |
| | | this.$u.route('/pages/notice/details/details', { |
| | | id: id |
| | | }); |
| | | }, |
| | | |
| | | // 前往用户协议 |
| | | goUserAgreementPage() { |
| | | var id = this.$store.state.config.userAgreementId; |
| | | this.$u.route('/pages/article/details/details', { |
| | | idType: 1, |
| | | id: id |
| | | }); |
| | | }, |
| | | // 前往隐私协议 |
| | | goUserPrivacyPolicy() { |
| | | var id = this.$store.state.config.privacyPolicyId; |
| | | this.$u.route('/pages/article/details/details', { |
| | | idType: 1, |
| | | id: id |
| | | }); |
| | | }, |
| | | // 关于我们 |
| | | goAboutUs() { |
| | | let id = this.$store.state.config.aboutArticleId; |
| | | this.$u.route('/pages/article/details/details', { |
| | | idType: 1, |
| | | id: id |
| | | }); |
| | | }, |
| | | |
| | | /** |
| | | * 接龙接口信息 |
| | | */ |
| | | |
| | | // 查看接龙详情 |
| | | goSolitaireDetail(id) { |
| | | this.$u.route('/pages/activity/solitaire/solitaireDetails/solitaireDetails', { |
| | | id: id |
| | | }); |
| | | }, |
| | | // 查看服务列表 |
| | | goSolitaireList() { |
| | | this.$u.route('/pages/activity/solitaire/list/list') |
| | | }, |
| | | |
| | | //服务接口信息 |
| | | goServicesDetail(serviceId) { |
| | | this.$u.route('/pages/serviceGoods/details/details', { |
| | | id: serviceId |
| | | }); |
| | | }, |
| | | // 查看服务列表 |
| | | goServicesList() { |
| | | this.$u.route('/pages/serviceGoods/index/index') |
| | | }, |
| | | // 查看个人详情 |
| | | goServicesUserDetail(serviceId) { |
| | | this.$u.route('/pages/member/serviceOrder/details/details', { |
| | | id: serviceId |
| | | }); |
| | | }, |
| | | |
| | | |
| | | /** |
| | | * 广告相关 |
| | | */ |
| | | |
| | | // 广告点击查看详情 |
| | | showSliderInfo(type, val) { |
| | | if (!val) { |
| | | return; |
| | | } |
| | | if (type == navLinkType.urlLink) { |
| | | if (val.indexOf('http') != -1) { |
| | | // #ifdef APP-PLUS || APP-PLUS-NVUE || MP |
| | | this.$u.route('/pages/webview/webview', { |
| | | src: val |
| | | }); |
| | | // #endif |
| | | } else { |
| | | // #ifdef APP-PLUS || APP-PLUS-NVUE || MP |
| | | if (val == '/pages/index/default/default' || val == '/pages/category/index/index' || val == |
| | | '/pages/index/cart/cart' || val == '/pages/index/member/member') { |
| | | this.$u.route({ |
| | | type: 'switchTab', |
| | | url: val |
| | | }); |
| | | return; |
| | | } else if (val.indexOf('/pages/coupon/coupon?id=') > -1) { |
| | | var id = val.replace('/pages/coupon/coupon?id=', ""); |
| | | this.receiveCoupon(id) |
| | | } else { |
| | | this.$u.route(val); |
| | | return; |
| | | } |
| | | // #endif |
| | | } |
| | | } else if (type == navLinkType.shop) { |
| | | // 商品详情 |
| | | this.$u.route('/pages/goods/goodDetails/goodDetails', { |
| | | id: val |
| | | }); |
| | | } else if (type == navLinkType.article) { |
| | | // 文章详情 |
| | | this.$u.route('/pages/article/details/details', { |
| | | idType: 1, |
| | | id: val |
| | | }); |
| | | } else if (type == navLinkType.articleCategory) { |
| | | // 文章列表 |
| | | //this.$u.route('/pages/article/list/list') |
| | | this.$u.route('/pages/article/category/category', { |
| | | id: val |
| | | }); |
| | | } else if (type == navLinkType.intelligentForms) { |
| | | //自定义表单 |
| | | this.$u.route('/pages/form/details/details', { |
| | | id: val |
| | | }); |
| | | } else if (type == navLinkType.shopCategory) { |
| | | //商品分类 |
| | | this.$u.route('/pages/category/list/list', { |
| | | id: val |
| | | }); |
| | | } else { |
| | | this.$u.route(val); |
| | | } |
| | | }, |
| | | // 用户领取优惠券 |
| | | receiveCoupon(couponId) { |
| | | uni.showLoading({ |
| | | title: '加载中', |
| | | mask: true |
| | | }); |
| | | let _this = this; |
| | | let coreshopdata = { |
| | | id: couponId |
| | | } |
| | | this.$u.api.getCoupon(coreshopdata).then(res => { |
| | | if (res.status) { |
| | | uni.hideLoading(); |
| | | _this.$refs.uToast.show({ |
| | | message: res.msg, |
| | | type: 'success', |
| | | back: false |
| | | }) |
| | | } else { |
| | | uni.hideLoading(); |
| | | _this.$u.toast(res.msg) |
| | | } |
| | | }) |
| | | }, |
| | | |
| | | |
| | | /** |
| | | * 工具函数 |
| | | */ |
| | | |
| | | doCopyData(data) { |
| | | var _this = this; |
| | | uni.setClipboardData({ |
| | | data: data, |
| | | success: function() { |
| | | _this.$u.toast('复制成功') |
| | | } |
| | | }); |
| | | }, |
| | | doPhoneCall() { |
| | | var phome = this.$store.state.config.shopMobile || 0; |
| | | if (phome != 0) { |
| | | uni.makePhoneCall({ |
| | | phoneNumber: phome |
| | | }); |
| | | } |
| | | }, |
| | | goBack() { |
| | | //处理兼容,如果没有上一级界面则返回首页 |
| | | const pages = getCurrentPages(); |
| | | if (pages.length === 2) { |
| | | uni.navigateBack({ |
| | | delta: 1 |
| | | }); |
| | | } else if (pages.length === 1) { |
| | | uni.switchTab({ |
| | | url: '/pages/index/default/default', |
| | | }) |
| | | } else { |
| | | uni.navigateBack({ |
| | | delta: 1 |
| | | }); |
| | | } |
| | | }, |
| | | |
| | | } |
| | | } |
| New file |
| | |
| | | const http = uni.$u.http |
| | | |
| | | // 此处第二个参数vm,就是我们在页面使用的this,你可以通过vm获取vuex等操作,更多内容详见uView对拦截器的介绍部分: |
| | | // https://uviewui.com/js/http.html#%E4%BD%95%E8%B0%93%E8%AF%B7%E6%B1%82%E6%8B%A6%E6%88%AA%EF%BC%9F |
| | | // const install = (Vue, vm) => { |
| | | |
| | | // 获取店铺配置 |
| | | let shopConfigV2 = (params, config = {}) => http.post('/Api/Common/GetConfigV2', params, { |
| | | custom: { |
| | | methodName: 'common.shopConfigV2', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //获取商城关键词说明 |
| | | let getServiceDescription = (params, config = {}) => http.post('/Api/Common/GetServiceDescription', params, { |
| | | custom: { |
| | | methodName: 'common.getServiceDescription', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 用户信息 |
| | | let userInfo = (params, config = {}) => http.post('/Api/User/GetUserInfo', params, { |
| | | custom: { |
| | | methodName: 'user.info', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 上传头像 |
| | | let changeAvatar = (params, config = {}) => http.post('/Api/User/ChangeAvatar', params, { |
| | | custom: { |
| | | methodName: 'user.changeavatar', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 编辑用户信息 |
| | | let editInfo = (params, config = {}) => http.post('/Api/User/EditInfo', params, { |
| | | custom: { |
| | | methodName: 'user.editinfo', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 发送短信验证码 |
| | | let sms = (params, config = {}) => http.post('/Api/User/SendSms', params, { |
| | | custom: { |
| | | methodName: 'user.sms', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 短信验证码登录 |
| | | let smsLogin = (params, config = {}) => http.post('/Api/User/SmsLogin', params, { |
| | | custom: { |
| | | methodName: 'user.smslogin', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 退出登录 |
| | | let logout = (params, config = {}) => http.post('/Api/User/LogOut', params, { |
| | | custom: { |
| | | methodName: 'user.logout', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取首页幻灯片 |
| | | let slider = (params, config = {}) => http.post('/Api/Advert/GetAdvertList', params, { |
| | | custom: { |
| | | methodName: 'advert.getAdvertList', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取广告 |
| | | let advert = (params, config = {}) => http.post('/Api/Advert/GetPositionList', params, { |
| | | custom: { |
| | | methodName: 'advert.getcarousellists', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取公告列表 |
| | | let notice = (params, config = {}) => http.post('/Api/Notice/NoticeList', params, { |
| | | custom: { |
| | | methodName: 'notice.noticeList', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取公告详情 |
| | | let noticeInfo = (params, config = {}) => http.post('/Api/Notice/NoticeInfo', params, { |
| | | custom: { |
| | | methodName: 'notice.noticeInfo', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取文章详情 |
| | | let articleInfo = (params, config = {}) => http.post('/Api/Article/GetArticleDetail', params, { |
| | | custom: { |
| | | methodName: 'articles.getArticleDetail', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取文章列表 |
| | | let articleList = (params, config = {}) => http.post('/Api/Article/GetArticleList', params, { |
| | | custom: { |
| | | methodName: 'articles.getArticleList', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | |
| | | // 获取商品分类 |
| | | let categories = (params, config = {}) => http.post('/Api/Good/GetAllCategories', params, { |
| | | custom: { |
| | | methodName: 'categories.getallcat', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取商品列表 |
| | | let goodsList = (params, config = {}) => http.post('/Api/Good/GetGoodsPageList', params, { |
| | | custom: { |
| | | methodName: 'goods.goodsList', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //获取随机推荐商品 |
| | | let getGoodsRecommendList = (params, config = {}) => http.post('/Api/Good/GetGoodsRecommendList', params, { |
| | | custom: { |
| | | methodName: 'goods.getGoodsRecommendList', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取商品参数信息 |
| | | let goodsParams = (params, config = {}) => http.post('/Api/Good/GetGoodsParams', params, { |
| | | custom: { |
| | | methodName: 'goods.getgoodsparams', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取设置默认货品 |
| | | let getProductInfo = (params, config = {}) => http.post('/Api/Good/GetProductInfo', params, { |
| | | custom: { |
| | | methodName: 'goods.getproductinfo', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取商品评论信息 |
| | | let goodsComment = (params, config = {}) => http.post('/Api/Good/GetGoodsComment', params, { |
| | | custom: { |
| | | methodName: 'goods.getgoodscomment', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取商品详情 |
| | | let goodsDetail = (params, config = {}) => http.post('/Api/Good/GetDetial', params, { |
| | | custom: { |
| | | methodName: 'goods.getdetial', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取商品详情 |
| | | let goodsDetailByToken = (params, config = {}) => http.post('/Api/Good/GetDetialByToken', params, { |
| | | custom: { |
| | | methodName: 'goods.getDetialByToken', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 获取商品详情 |
| | | let goodsSku = (params, config = {}) => http.post('/Api/Good/GetSku', params, { |
| | | custom: { |
| | | methodName: 'goods.getdetial', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取商品详情 |
| | | let goodsSkuByToken = (params, config = {}) => http.post('/Api/Good/GetSkuByToken', params, { |
| | | custom: { |
| | | methodName: 'goods.getDetialByToken', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | // 添加购物车 |
| | | let addCart = (params, config = {}) => http.post('/Api/Cart/AddCart', params, { |
| | | custom: { |
| | | methodName: 'cart.add', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 移除购物车 |
| | | let removeCart = (params, config = {}) => http.post('/Api/Cart/DoDelete', params, { |
| | | custom: { |
| | | methodName: 'cart.del', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取购物车列表 |
| | | let cartList = (params, config = {}) => http.post('/Api/Cart/GetList', params, { |
| | | custom: { |
| | | methodName: 'cart.getlist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 设置购物车商品数量 |
| | | let setCartNum = (params, config = {}) => http.post('/Api/Cart/SetCartNum', params, { |
| | | custom: { |
| | | methodName: 'cart.setnums', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取购物车数量 |
| | | let getCartNum = (params, config = {}) => http.post('/Api/User/GetCartNumber', params, { |
| | | custom: { |
| | | methodName: 'cart.getnumber', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取购物车数量和商品总价格 |
| | | let getCartNumAndMoney = (params, config = {}) => http.post('/Api/User/GetCartNumberAndMoney', params, { |
| | | custom: { |
| | | methodName: 'cart.getnumber', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 根据购物车已有数据获取能够使用的优惠券 |
| | | let getCartCoupon = (params, config = {}) => http.post('/Api/Cart/GetCartAvailableCoupon', params, { |
| | | custom: { |
| | | methodName: 'cart.getCartCoupon', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 获取用户的收货地址列表 |
| | | let userShip = (params, config = {}) => http.post('/Api/User/GetUserShip', params, { |
| | | custom: { |
| | | methodName: 'user.getusership', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取用户默认收货地址 |
| | | let userDefaultShip = (params, config = {}) => http.post('/Api/User/GetUserDefaultShip', params, { |
| | | custom: { |
| | | methodName: 'user.getuserdefaultship', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 存储用户收货地址 |
| | | let saveUserShip = (params, config = {}) => http.post('/Api/User/SaveUserShip', params, { |
| | | custom: { |
| | | methodName: 'user.vuesaveusership', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 微信存储收货地址 |
| | | let saveUserShipWx = (params, config = {}) => http.post('/Api/User/SaveUserShip', params, { |
| | | custom: { |
| | | methodName: 'user.saveusership', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取区域ID |
| | | let getAreaId = (params, config = {}) => http.post('/Api/User/GetAreaId', params, { |
| | | custom: { |
| | | methodName: 'user.getareaid', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //根据区/县名称获取城市id信息 |
| | | let getAreaIdByName = (params, config = {}) => http.post('/Api/User/GetAreaIdByName', params, { |
| | | custom: { |
| | | methodName: 'user.getareaid', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取收货地址详情 |
| | | let shipDetail = (params, config = {}) => http.post('/Api/User/GetShipDetail', params, { |
| | | custom: { |
| | | methodName: 'user.getshipdetail', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 收货地址编辑 |
| | | let editShip = (params, config = {}) => http.post('/Api/User/SaveUserShip', params, { |
| | | custom: { |
| | | methodName: 'user.editship', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 收货地址删除 |
| | | let removeShip = (params, config = {}) => http.post('/Api/User/RemoveShip', params, { |
| | | custom: { |
| | | methodName: 'user.removeship', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 设置默认收货地址 |
| | | let setDefShip = (params, config = {}) => http.post('/Api/User/SetDefShip', params, { |
| | | custom: { |
| | | methodName: 'user.setdefship', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 生成订单 |
| | | let createOrder = (params, config = {}) => http.post('/Api/Order/CreateOrder', params, { |
| | | custom: { |
| | | methodName: 'order.create', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 取消订单 |
| | | let cancelOrder = (params, config = {}) => http.post('/Api/Order/CancelOrder', params, { |
| | | custom: { |
| | | methodName: 'order.cancel', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 删除订单 |
| | | let delOrder = (params, config = {}) => http.post('/Api/Order/DeleteOrder', params, { |
| | | custom: { |
| | | methodName: 'order.del', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取订单详情 |
| | | let orderDetail = (params, config = {}) => http.post('/Api/Order/OrderDetails', params, { |
| | | custom: { |
| | | methodName: 'order.details', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 确认收货 |
| | | let confirmOrder = (params, config = {}) => http.post('/Api/Order/OrderConfirm', params, { |
| | | custom: { |
| | | methodName: 'order.confirm', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取配送方式 |
| | | let orderShip = (params, config = {}) => http.post('/Api/Order/GetShip', params, { |
| | | custom: { |
| | | methodName: 'order.getship', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取全部订单列表 |
| | | let orderList = (params, config = {}) => http.post('/Api/Order/GetOrderList', params, { |
| | | custom: { |
| | | methodName: 'order.getorderlist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取订单不同状态的数量 |
| | | let getOrderStatusSum = (params, config = {}) => http.post('/Api/Order/GetOrderStatusNum', params, { |
| | | custom: { |
| | | methodName: 'order.getorderstatusnum', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取不同类型营销下单支持的配送方式 |
| | | let getOrderDistributionModel = (params, config = {}) => http.post('/Api/Order/GetOrderDistributionModel', params, { |
| | | custom: { |
| | | methodName: 'order.getOrderdistributionmodel', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 获取派送订单列表 |
| | | let deliveryList = (params, config = {}) => http.post('/Api/DistributorDelivery/GetList/GetList', params, { |
| | | custom: { |
| | | methodName: 'order.getdeliveryorderlist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 确认派送 |
| | | let confirmDelivery = (params, config = {}) => http.post('/Api/DistributorDelivery/Accepted/Accepted', params, { |
| | | custom: { |
| | | methodName: 'order.confirmDelivery', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 售后单列表 |
| | | let afterSalesList = (params, config = {}) => http.post('/Api/Order/AftersalesList', params, { |
| | | custom: { |
| | | methodName: 'order.aftersaleslist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 售后单详情 |
| | | let afterSalesInfo = (params, config = {}) => http.post('/Api/Order/Aftersalesinfo', params, { |
| | | custom: { |
| | | methodName: 'order.aftersalesinfo', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 添加售后单 |
| | | let addAfterSales = (params, config = {}) => http.post('/Api/Order/AddAftersales', params, { |
| | | custom: { |
| | | methodName: 'order.addaftersales', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 用户发送退货包裹 |
| | | let sendShip = (params, config = {}) => http.post('/Api/Order/SendReship', params, { |
| | | custom: { |
| | | methodName: 'order.sendreship', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 添加商品浏览足迹 |
| | | let addGoodsBrowsing = (params, config = {}) => http.post('/Api/User/AddGoodsBrowsing', params, { |
| | | custom: { |
| | | methodName: 'user.addgoodsbrowsing', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 删除商品浏览足迹 |
| | | let delGoodsBrowsing = (params, config = {}) => http.post('/Api/User/DelGoodsBrowsing', params, { |
| | | custom: { |
| | | methodName: 'user.delgoodsbrowsing', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取商品浏览足迹 |
| | | let goodsBrowsing = (params, config = {}) => http.post('/Api/User/Goodsbrowsing', params, { |
| | | custom: { |
| | | methodName: 'user.goodsbrowsing', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 商品收藏 关注/取消 |
| | | let goodsCollection = (params, config = {}) => http.post('/Api/User/GoodsCollectionCreateOrDelete', params, { |
| | | custom: { |
| | | methodName: 'user.goodscollection', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取商品收藏关注列表 |
| | | let goodsCollectionList = (params, config = {}) => http.post('/Api/User/GoodscollectionList', params, { |
| | | custom: { |
| | | methodName: 'user.goodscollectionlist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 获取店铺支付方式列表 |
| | | let paymentList = (params, config = {}) => http.post('/Api/Payments/GetList', params, { |
| | | custom: { |
| | | methodName: 'payments.getlist', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取支付单详情 |
| | | let paymentInfo = (params, config = {}) => http.post('/Api/Payments/GetInfo', params, { |
| | | custom: { |
| | | methodName: 'payments.getinfo', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 支付接口 |
| | | let pay = (params, config = {}) => http.post('/Api/User/Pay', params, { |
| | | custom: { |
| | | methodName: 'user.pay', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 订单评价接口 |
| | | let orderEvaluate = (params, config = {}) => http.post('/Api/User/OrderEvaluate', params, { |
| | | custom: { |
| | | methodName: 'user.orderevaluate', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 签到接口 |
| | | let userCheckIn = (params, config = {}) => http.post('/Api/CheckIn/DoUserCheckIn', params, { |
| | | custom: { |
| | | methodName: 'user.doUserCheckIn', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取用户按月签到数据 |
| | | let getUserCheckByMonth = (params, config = {}) => http.post('/Api/CheckIn/GetUserCheckByMonth', params, { |
| | | custom: { |
| | | methodName: 'user.getUserCheckByMonth', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取用户总签到次数 |
| | | let getUserCheckCount = (params, config = {}) => http.post('/Api/CheckIn/GetUserCheckCount', params, { |
| | | custom: { |
| | | methodName: 'user.getUserCheckCount', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | |
| | | // 积分记录 |
| | | let pointLog = (params, config = {}) => http.post('/Api/User/UserPointLog', params, { |
| | | custom: { |
| | | methodName: 'user.userpointlog', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 物流信息接口 |
| | | let logistics = (params, config = {}) => http.post('/Api/Order/LogisticsByApi', params, { |
| | | custom: { |
| | | methodName: 'order.logisticbyapi', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 优惠券列表 |
| | | let couponList = (params, config = {}) => http.post('/Api/Coupon/CouponList', params, { |
| | | custom: { |
| | | methodName: 'coupon.couponlist', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 优惠券详情 |
| | | let couponDetail = (params, config = {}) => http.post('/Api/Coupon/CouponDetail', params, { |
| | | custom: { |
| | | methodName: 'coupon.coupondetail', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 用户领取优惠券 |
| | | let getCoupon = (params, config = {}) => http.post('/Api/Coupon/GetCoupon', params, { |
| | | custom: { |
| | | methodName: 'coupon.getcoupon', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 用户已领取的优惠券列表 |
| | | let userCoupon = (params, config = {}) => http.post('/Api/Coupon/UserCoupon', params, { |
| | | custom: { |
| | | methodName: 'coupon.usercoupon', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取我的银行卡列表 |
| | | let getBankCardList = (params, config = {}) => http.post('/Api/User/GetMyBankcardsList', params, { |
| | | custom: { |
| | | methodName: 'user.getbankcardlist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取默认的银行卡 |
| | | let getDefaultBankCard = (params, config = {}) => http.post('/Api/User/GetDefaultBankCard', params, { |
| | | custom: { |
| | | methodName: 'user.getdefaultbankcard', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 添加银行卡 |
| | | let addBankCard = (params, config = {}) => http.post('/Api/User/AddBankCards', params, { |
| | | custom: { |
| | | methodName: 'user.addbankcard', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 删除银行卡 |
| | | let removeBankCard = (params, config = {}) => http.post('/Api/User/Removebankcard', params, { |
| | | custom: { |
| | | methodName: 'user.removebankcard', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 设置默认银行卡 |
| | | let setDefaultBankCard = (params, config = {}) => http.post('/Api/User/SetDefaultBankCard', params, { |
| | | custom: { |
| | | methodName: 'user.setdefaultbankcard', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取银行卡信息 |
| | | let getBankCardInfo = (params, config = {}) => http.post('/Api/User/GetBankCardInfo', params, { |
| | | custom: { |
| | | methodName: 'user.getbankcardinfo', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取银行卡组织信息 |
| | | let getBankCardOrganization = (params, config = {}) => http.post('/Api/User/GetBankCardsOrganization', params, { |
| | | custom: { |
| | | methodName: 'user.getbankcardorganization', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 用户修改密码 |
| | | let editPwd = (params, config = {}) => http.post('/Api/User/EditPwd', params, { |
| | | custom: { |
| | | methodName: 'user.editpwd', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 用户找回密码 |
| | | let forgotPwd = (params, config = {}) => http.post('/Api/Common/InterFaceTest', params, { |
| | | custom: { |
| | | methodName: 'user.forgotpwd', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取用户余额明细 |
| | | let getBalanceList = (params, config = {}) => http.post('/Api/User/UserBalance', params, { |
| | | custom: { |
| | | methodName: 'user.balancelist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 用户推荐列表 |
| | | let recommendUserList = (params, config = {}) => http.post('/Api/User/Recommend', params, { |
| | | custom: { |
| | | methodName: 'user.recommend', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 邀请码 |
| | | let shareCode = (params, config = {}) => http.post('/Api/User/ShareCode', params, { |
| | | custom: { |
| | | methodName: 'user.sharecode', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 用户提现 |
| | | let userToCash = (params, config = {}) => http.post('/Api/User/Cash', params, { |
| | | custom: { |
| | | methodName: 'user.cash', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 用户提现列表 |
| | | let cashList = (params, config = {}) => http.post('/Api/User/CashList', params, { |
| | | custom: { |
| | | methodName: 'user.cashlist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 判断用户下单可以使用多少积分 |
| | | let usablePoint = (params, config = {}) => http.post('/Api/User/GetUserPoint', params, { |
| | | custom: { |
| | | methodName: 'user.getuserpoint', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 门店列表 |
| | | let storeList = (params, config = {}) => http.post('/Api/Store/GetStoreList', params, { |
| | | custom: { |
| | | methodName: 'store.getstorelist', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //根据用户序列获取门店数据 |
| | | let getStoreByUserId = (params, config = {}) => http.post('/Api/Store/GetStoreByUserId', params, { |
| | | custom: { |
| | | methodName: 'store.getStoreByUserId', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取单个用户能管理的门店列表 |
| | | let getStoreListForUser = (params, config = {}) => http.post('/Api/Store/GetStoreListForUser', params, { |
| | | custom: { |
| | | methodName: 'store.GetStoreListForUser', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //根据序列获取门店数据 |
| | | let getStoreById = (params, config = {}) => http.post('/Api/Store/GetStoreById', params, { |
| | | custom: { |
| | | methodName: 'store.getStoreByUserId', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //获取门店订单列表 |
| | | let getOrderPageByMerchant = (params, config = {}) => http.post('/Api/Store/GetOrderPageByMerchant', params, { |
| | | custom: { |
| | | methodName: 'store.getOrderPageByMerchant', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取门店订单列表 |
| | | let getOrderPageByMerchantSearch = (params, config = {}) => http.post('/Api/Store/GetOrderPageByMerchantSearch', |
| | | params, { |
| | | custom: { |
| | | methodName: 'store.getOrderPageByMerchantSearch', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 判断是否开启门店自提 |
| | | let switchStore = (params, config = {}) => http.post('/Api/Store/GetStoreSwitch', params, { |
| | | custom: { |
| | | methodName: 'store.getstoreswitch', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取默认的门店 |
| | | let defaultStore = (params, config = {}) => http.post('/Api/Store/GetDefaultStore', params, { |
| | | custom: { |
| | | methodName: 'store.getdefaultstore', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 判断是否开启积分 |
| | | let isPoint = (params, config = {}) => http.post('/Api/User/isPoint', params, { |
| | | custom: { |
| | | methodName: 'user.ispoint', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 用户输入code领取优惠券 |
| | | let couponKey = (params, config = {}) => http.post('/Api/Coupon/GetCouponKey', params, { |
| | | custom: { |
| | | methodName: 'coupon.getcouponkey', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 判断是否是店员 |
| | | let isStoreUser = (params, config = {}) => http.post('/Api/Store/IsClerk', params, { |
| | | custom: { |
| | | methodName: 'store.isclerk', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取店铺提货单列表 |
| | | let storeLadingList = (params, config = {}) => http.post('/Api/Store/StoreLadingList', params, { |
| | | custom: { |
| | | methodName: 'store.storeladinglist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取提货单详情 |
| | | let ladingInfo = (params, config = {}) => http.post('/Api/Store/LadingInfo', params, { |
| | | custom: { |
| | | methodName: 'store.ladinginfo', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 店铺提单核销操作 |
| | | let ladingExec = (params, config = {}) => http.post('/Api/Store/Lading', params, { |
| | | custom: { |
| | | methodName: 'store.lading', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 提货单删除 |
| | | let ladingDel = (params, config = {}) => http.post('/Api/Store/LadingDelete', params, { |
| | | custom: { |
| | | methodName: 'store.ladingdel', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | |
| | | |
| | | // 获取活动列表 |
| | | let activityList = (params, config = {}) => http.post('/Api/Group/GetList', params, { |
| | | custom: { |
| | | methodName: 'group.getlist', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取活动详情 |
| | | let activityDetail = (params, config = {}) => http.post('/Api/Group/GetGoodsDetial', params, { |
| | | custom: { |
| | | methodName: 'group.getgoodsdetial', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //小程序解析code |
| | | let onLogin = (params, config = {}) => http.post('/Api/User/OnLogin', params, { |
| | | custom: { |
| | | methodName: 'user.wxappOnlogin', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //小程序登录第二步(核验数据并获取用户详细资料) |
| | | let loginByDecodeEncryptedData = (params, config = {}) => http.post('/Api/User/DecodeEncryptedData', params, { |
| | | custom: { |
| | | methodName: 'user.wxapploginByDecodeEncryptedData', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //小程序同步用户数据 |
| | | let syncWeChatInfo = (params, config = {}) => http.post('/Api/User/SyncWeChatInfo', params, { |
| | | custom: { |
| | | methodName: 'user.SyncWeChatInfo', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //小程序手机授权(拉取手机号码) |
| | | let loginByGetPhoneNumber = (params, config = {}) => http.post('/Api/User/DecryptPhoneNumber', params, { |
| | | custom: { |
| | | methodName: 'user.wxapploginByGetPhoneNumber', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //取下级地址列表 |
| | | let getAreaList = (params, config = {}) => http.post('/Api/Common/GetAreas', params, { |
| | | custom: { |
| | | methodName: 'user.getarealist', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //取搜索页推荐关键字 |
| | | let getRecommendKeys = (params, config = {}) => http.post('/Api/Common/GetRecommendKeys', params, { |
| | | custom: { |
| | | methodName: 'common.getrecommendkeys', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取我的邀请信息 |
| | | let myInvite = (params, config = {}) => http.post('/Api/User/MyInvite', params, { |
| | | custom: { |
| | | methodName: 'user.myinvite', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 设置我的上级邀请人 |
| | | let setMyInvite = (params, config = {}) => http.post('/Api/User/SetMyInvite', params, { |
| | | custom: { |
| | | methodName: 'user.SetMyInvite', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取我的上级邀请人 |
| | | let getMyInvite = (params, config = {}) => http.post('/Api/User/GetMyInvite', params, { |
| | | custom: { |
| | | methodName: 'user.GetMyInvite', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取我的下级发展用户数量 |
| | | let getMyChildSum = (params, config = {}) => http.post('/Api/User/GetMyChildSum', params, { |
| | | custom: { |
| | | methodName: 'user.GetMyChildSum', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取秒杀团购 |
| | | let getGroup = (params, config = {}) => http.post('/Api/Group/GetList', params, { |
| | | custom: { |
| | | methodName: 'group.getlist', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取秒杀团购详情 |
| | | let groupInfo = (params, config = {}) => http.post('/Api/Group/GetGoodsDetial', params, { |
| | | custom: { |
| | | methodName: 'group.getgoodsdetial', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 自定义页面 |
| | | // 修改 |
| | | let getPageConfig = (params, config = {}) => http.post('/Api/Page/GetPageConfig', params, { |
| | | custom: { |
| | | methodName: 'pages.getpageconfig', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | |
| | | // 获取经销商进度状态 |
| | | let getDistributionInfo = (params, config = {}) => http.post('/Api/Distribution/Info', params, { |
| | | custom: { |
| | | methodName: 'distribution_center-api-info', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 申请经销商 |
| | | let applyDistribution = (params, config = {}) => http.post('/Api/Distribution/ApplyDistribution', params, { |
| | | custom: { |
| | | methodName: 'distribution_center-api-applydistribution', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 店铺设置 |
| | | let setDistributionStore = (params, config = {}) => http.post('/Api/Distribution/SetStore', params, { |
| | | custom: { |
| | | methodName: 'distribution_center-api-setstore', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取店铺信息 |
| | | let getDistributionStoreInfo = (params, config = {}) => http.post('/Api/Distribution/GetStoreInfo', params, { |
| | | custom: { |
| | | methodName: 'distribution_center-api-getstoreinfo', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //我的经销订单 |
| | | let getDistributionOrder = (params, config = {}) => http.post('/Api/Distribution/MyOrder', params, { |
| | | custom: { |
| | | methodName: 'distribution_center-api-myorder', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //经销团队统计 |
| | | let getDistributionTeamSum = (params, config = {}) => http.post('/Api/Distribution/GetTeamSum', params, { |
| | | custom: { |
| | | methodName: 'distribution.getTeamSum', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //经销订单统计 |
| | | let getDistributionOrderSum = (params, config = {}) => http.post('/Api/Distribution/GetOrderSum', params, { |
| | | custom: { |
| | | methodName: 'distribution.getOrderSum', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取经销商排行 |
| | | let getDistributionRanking = (params, config = {}) => http.post('/Api/Distribution/getDistributionRanking', params, { |
| | | custom: { |
| | | methodName: 'distribution.getDistributionRanking', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | // 获取代理商进度状态 |
| | | let getAgentInfo = (params, config = {}) => http.post('/Api/Agent/Info', params, { |
| | | custom: { |
| | | methodName: 'agent_center-api-info', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 申请代理商 |
| | | let applyAgent = (params, config = {}) => http.post('/Api/Agent/ApplyAgent', params, { |
| | | custom: { |
| | | methodName: 'agent_center-api-applyAgent', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 店铺设置 |
| | | let setAgentStore = (params, config = {}) => http.post('/Api/Agent/SetStore', params, { |
| | | custom: { |
| | | methodName: 'agent_center-api-setstore', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取店铺信息 |
| | | let getAgentStoreInfo = (params, config = {}) => http.post('/Api/Agent/GetStoreInfo', params, { |
| | | custom: { |
| | | methodName: 'agent_center-api-getstoreinfo', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //我的代理订单 |
| | | let getAgentOrder = (params, config = {}) => http.post('/Api/Agent/MyOrder', params, { |
| | | custom: { |
| | | methodName: 'agent_center-api-myorder', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //代理团队统计 |
| | | let getAgentTeamSum = (params, config = {}) => http.post('/Api/Agent/GetTeamSum', params, { |
| | | custom: { |
| | | methodName: 'agent.getTeamSum', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //代理订单统计 |
| | | let getAgentOrderSum = (params, config = {}) => http.post('/Api/Agent/GetOrderSum', params, { |
| | | custom: { |
| | | methodName: 'agent.getOrderSum', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取代理池商品数据 |
| | | let getAgentGoodsPageList = (params, config = {}) => http.post('/Api/Agent/GetGoodsPageList', params, { |
| | | custom: { |
| | | methodName: 'agent.getGoodsPageList', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取代理商排行 |
| | | let getAgentRanking = (params, config = {}) => http.post('/Api/Agent/GetAgentRanking', params, { |
| | | custom: { |
| | | methodName: 'agent.getAgentRanking', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | |
| | | // 拼团列表 |
| | | let pinTuanList = (params, config = {}) => http.post('/Api/PinTuan/GetList', params, { |
| | | custom: { |
| | | methodName: 'pinTuan.list', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 拼团商品详情 |
| | | let pinTuanGoodsInfo = (params, config = {}) => http.post('/Api/PinTuan/GetGoodsInfo', params, { |
| | | custom: { |
| | | methodName: 'pinTuan.goodsinfo', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 拼团货品详情 |
| | | let pinTuanProductInfo = (params, config = {}) => http.post('/Api/PinTuan/GetProductInfo', params, { |
| | | custom: { |
| | | methodName: 'pinTuan.productinfo', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //获取我的发票列表 |
| | | let myInvoiceList = (params, config = {}) => http.post('/Api/User/UserInvoiceList', params, { |
| | | custom: { |
| | | methodName: 'user.myinvoicelist', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取支付信息 |
| | | let paymentsCheckpay = (params, config = {}) => http.post('/Api/Payments/CheckPay', params, { |
| | | custom: { |
| | | methodName: 'payments.checkpay', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //忘记密码 |
| | | let userForgetpwd = (params, config = {}) => http.post('/Api/User/ForgetPwd', params, { |
| | | custom: { |
| | | methodName: 'user.forgetpwd', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 根据订单id取拼团信息,用在订单详情页 |
| | | let getOrderPinTuanTeamInfo = (params, config = {}) => http.post('/Api/PinTuan/GetPinTuanTeam', params, { |
| | | custom: { |
| | | methodName: 'pinTuan.pinTuanteam', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //发票模糊查询 |
| | | let getTaxInfo = (params, config = {}) => http.post('/Api/Order/GetTaxCode', params, { |
| | | custom: { |
| | | methodName: 'order.gettaxcode', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | |
| | | // 获取店铺设置 |
| | | let getSetting = (params, config = {}) => http.post('/Api/User/GetSetting', params, { |
| | | custom: { |
| | | methodName: 'user.getsetting', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取商户配置信息 |
| | | let getSellerSetting = (params, config = {}) => http.post('/Api/User/GetSellerSetting', params, { |
| | | custom: { |
| | | methodName: 'user.getsellersetting', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 获取小程序二维码 |
| | | let getInviteQRCode = (params, config = {}) => http.post('/Api/Store/GetInviteQrCode', params, { |
| | | custom: { |
| | | methodName: 'store.getinviteqrcode', |
| | | needToken: false |
| | | } |
| | | }); |
| | | // 生成海报 |
| | | let createPoster = (params, config = {}) => http.post('/Api/User/GetPoster', params, { |
| | | custom: { |
| | | methodName: 'user.getposter', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | //获取表单列表 |
| | | let getFormList = (params, config = {}) => http.post('/Api/Form/GetList', params, { |
| | | custom: { |
| | | methodName: 'form.getformdetial', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //获取表单详情 |
| | | let getFormDetial = (params, config = {}) => http.post('/Api/Form/GetFormDetial', params, { |
| | | custom: { |
| | | methodName: 'form.getformdetial', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //============================================================//提交表单 |
| | | let addSubmitForm = (params, config = {}) => http.post('/Api/Form/AddSubmit', params, { |
| | | custom: { |
| | | methodName: 'form.addsubmit', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | //================================================================////抽奖规则 |
| | | let lotteryConfig = (params, config = {}) => http.post('/Api/Lottery/GetLotteryConfig', params, { |
| | | custom: { |
| | | methodName: 'lottery-api-getLotteryConfig', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //================================================================////抽奖操作 |
| | | let lottery = (params, config = {}) => http.post('/Api/Lottery/Lottery', params, { |
| | | custom: { |
| | | methodName: 'lottery-api-lottery', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //================================================================////获取我的抽奖记录 |
| | | let myLottery = (params, config = {}) => http.post('/Api/Lottery/LotteryLog', params, { |
| | | custom: { |
| | | methodName: 'lottery-api-lotteryLog', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //================================================================////生成分享URL |
| | | let createShareUrl = (params, config = {}) => http.post('/Api/User/ShareUrl', params, { |
| | | custom: { |
| | | methodName: 'user.shareurl', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //================================================================////微信图文消息 |
| | | let messageDetail = (params, config = {}) => http.post('/Api/Articles/GetWeChatMessage', params, { |
| | | custom: { |
| | | methodName: 'articles.getweixinmessage', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //================================================================////获取APP版本 |
| | | let getAppVersion = (params, config = {}) => http.post('/Api/Common/GetAppVersions', params, { |
| | | custom: { |
| | | methodName: 'Common.checkVersion', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | //============================================================//公众号授权获取openid(第三方登录) |
| | | let getOpenId = (params, config = {}) => http.post('/Api/User/OfficialLogin', params, { |
| | | custom: { |
| | | methodName: 'user.officiallogin', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //============================================================// 获取授权登录方式(获取第三方登录列表) |
| | | let getTrustLogin = (params, config = {}) => http.post('/Api/User/GetTrustLogin', params, { |
| | | custom: { |
| | | methodName: 'user.gettrustlogin', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //============================================================// APP信任登录(app第三方登录方式) |
| | | let appTrustLogin = (params, config = {}) => http.post('/Api/User/UniAppLogin', params, { |
| | | custom: { |
| | | methodName: 'user.uniapplogin', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //================================================================//// 绑定授权登录 |
| | | let trustBind = (params, config = {}) => http.post('/Api/User/TrustBind', params, { |
| | | custom: { |
| | | methodName: 'user.trustbind', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //================================================================//支付宝小程序解析code(第三方支付宝登录方式) |
| | | let alilogin1 = (params, config = {}) => http.post('/Api/User/AlipayAppLogin1', params, { |
| | | custom: { |
| | | methodName: 'user.alipayapplogin1', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //================================================================////头条小程序登录 |
| | | let ttlogin = (params, config = {}) => http.post('/Api/User/TtLogin', params, { |
| | | custom: { |
| | | methodName: 'user.ttlogin', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //获取订阅模板 |
| | | let getSubscriptionTmplIds = (params, config = {}) => http.post('/Api/WeChatAppletsMessage/Tmpl', params, { |
| | | custom: { |
| | | methodName: 'wechat_applets_message-api-tmpl', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //订阅状态修改 |
| | | let setSubscriptionStatus = (params, config = {}) => http.post('/Api/WeChatAppletsMessage/SetTip', params, { |
| | | custom: { |
| | | methodName: 'wechat_applets_message-api-settip', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //用户关闭订阅提醒 |
| | | let subscriptionCloseTip = (params, config = {}) => http.post('/Api/WeChatAppletsMessage/CloseTip', params, { |
| | | custom: { |
| | | methodName: 'wechat_applets_message-api-closetip', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //判断用户是否需要显示订阅提醒 |
| | | let subscriptionIsTip = (params, config = {}) => http.post('/Api/WeChatAppletsMessage/IsTip', params, { |
| | | custom: { |
| | | methodName: 'wechat_applets_message-api-istip', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //统一分享 |
| | | let share = (params, config = {}) => http.post('/Api/User/Share', params, { |
| | | custom: { |
| | | methodName: 'user.share', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //统一分享解码 |
| | | let deshare = (params, config = {}) => http.post('/Api/User/deshare', params, { |
| | | custom: { |
| | | methodName: 'user.deshare', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | //获取服务列表 |
| | | let getServicelist = (params, config = {}) => http.post('/Api/Service/GetPageList', params, { |
| | | custom: { |
| | | methodName: 'service.getpagelist', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //获取服务详情 |
| | | let getServiceDetail = (params, config = {}) => http.post('/Api/Service/GetDetails', params, { |
| | | custom: { |
| | | methodName: 'service.getdetail', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //生成服务购买订单 |
| | | let addServiceOrder = (params, config = {}) => http.post('/Api/Service/AddServiceOrder', params, { |
| | | custom: { |
| | | methodName: 'service.addServiceOrder', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | //获取个人服务订单列表 |
| | | let getUserServicesPageList = (params, config = {}) => http.post('/Api/User/GetServicesPageList', params, { |
| | | custom: { |
| | | methodName: 'user.getServicesPageList', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取单个服务订单 |
| | | let getServicesById = (params, config = {}) => http.post('/Api/User/GetServicesById', params, { |
| | | custom: { |
| | | methodName: 'user.getServicesTickets', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //获取单个服务订单下面服务券 |
| | | let getServicesTickets = (params, config = {}) => http.post('/Api/User/GetServicesTickets', params, { |
| | | custom: { |
| | | methodName: 'user.getServicesTickets', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | |
| | | //门店核销的服务券列表 |
| | | let getverificationPageList = (params, config = {}) => http.post('/Api/Service/VerificationPageList', params, { |
| | | custom: { |
| | | methodName: 'service.verificationPageList', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //删除核销券 |
| | | let serviceLogDelete = (params, config = {}) => http.post('/Api/Service/LogDelete', params, { |
| | | custom: { |
| | | methodName: 'service.logDelete', |
| | | needToken: true |
| | | } |
| | | }); |
| | | // 获取服务券详情准备核销 |
| | | let getServiceVerificationTicketInfo = (params, config = {}) => http.post('/Api/Service/GetTicketInfo', params, { |
| | | custom: { |
| | | methodName: 'service.getTicketInfo', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //核销服务券 |
| | | let serviceVerificationTicket = (params, config = {}) => http.post('/Api/Service/VerificationTicket', params, { |
| | | custom: { |
| | | methodName: 'service.verificationTicket', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | |
| | | //获取接龙列表 |
| | | let getSolitairePageList = (params, config = {}) => http.post('/Api/Solitaire/GetList', params, { |
| | | custom: { |
| | | methodName: 'solitaire.getList', |
| | | needToken: false |
| | | } |
| | | }); |
| | | let getSolitaireDetail = (params, config = {}) => http.post('/Api/Solitaire/GetDetail', params, { |
| | | custom: { |
| | | methodName: 'solitaire.getDetail', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | |
| | | //直播 |
| | | let getLiveInfo = (params, config = {}) => http.post('/Api/LiveBroadCast/GetLiveInfo', params, { |
| | | custom: { |
| | | methodName: 'liveBroadCast.getLiveInfo', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | |
| | | //充值规则列表 |
| | | let getTopUpTypeList = (params, config = {}) => http.post('/Api/TopUp/TypeList', params, { |
| | | custom: { |
| | | methodName: 'topUp.typeList', |
| | | needToken: false |
| | | } |
| | | }); |
| | | //获取单个充值规则 |
| | | let getTypeDetail = (params, config = {}) => http.post('/Api/TopUp/getTypeDetail', params, { |
| | | custom: { |
| | | methodName: 'topUp.getTypeDetail', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | |
| | | |
| | | //本地选择图片转base64,再上传服务器存储返回地址 |
| | | let uploadFilesFByBase64 = (params, config = {}) => http.post('/Api/Common/UploadFilesFByBase64', params, { |
| | | custom: { |
| | | methodName: 'topUp.uploadFilesFByBase64', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | //获取全局促销列表 |
| | | let getPromotionList = (params, config = {}) => http.post('/Api/Promotion/GetPromotionList', params, { |
| | | custom: { |
| | | methodName: 'promotion.getPromotionList', |
| | | needToken: false |
| | | } |
| | | }); |
| | | |
| | | //获取发票是否开具 |
| | | let checkInvoice = (params, config = {}) => http.post('/Api/Order/CheckInvoice', params, { |
| | | custom: { |
| | | methodName: 'order.checkInvoice', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //提交发票申请 |
| | | let submitInvoiceApply = (params, config = {}) => http.post('/Api/Order/SubmitInvoiceApply', params, { |
| | | custom: { |
| | | methodName: 'order.submitInvoiceApply', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | let addOfflineDistributor = (params, config = {}) => http.post('/Api/OfflineDistributor/addOfflineDistributor', |
| | | params, { |
| | | custom: { |
| | | methodName: 'addOfflineDistributor', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | //计划订单 获取计划订单详情 |
| | | let GetPlanOrder = (params, config = {}) => http.post('/Api/Order/GetPlanOrder', params, { |
| | | custom: { |
| | | methodName: 'GetPlanOrder', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | //计划订单 获取计划订单列表 |
| | | let GetPlanOrderList = (params, config = {}) => http.post('/Api/Order/GetPlanOrderList', params, { |
| | | custom: { |
| | | methodName: 'GetPlanOrderList', |
| | | needToken: true |
| | | } |
| | | }); |
| | | //计划订单 修改计划订单 |
| | | let UpdatePlanOrder = (params, config = {}) => http.post('/Api/Order/UpdatePlanOrder', params, { |
| | | custom: { |
| | | methodName: 'UpdatePlanOrder', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | |
| | | let temLogin = (params, config = {}) => http.get('/api/LogoIn/LogoinFast', params, { |
| | | custom: { |
| | | methodName: 'LogoinFast', |
| | | needToken: true |
| | | } |
| | | }); |
| | | |
| | | |
| | | // 将各个定义的接口名称,统一放进对象挂载到vm.$u.api(因为vm就是this,也即this.$u.api)下 |
| | | export { |
| | | temLogin, //登录 |
| | | |
| | | }; |
| | | // } |
| | | |
| | | // export default { |
| | | // install |
| | | // } |
| New file |
| | |
| | | import { apiBaseUrl } from '@/common/setting/constVarsHelper.js'; |
| | | import * as db from '@/common/utils/dbHelper.js' //引入common |
| | | |
| | | // 此vm参数为页面的实例,可以通过它引用vuex中的变量 |
| | | module.exports = (vm) => { |
| | | // 初始化请求配置 |
| | | uni.$u.http.setConfig((defaultConfig) => { |
| | | /* defaultConfig 为默认全局配置 */ |
| | | defaultConfig.baseURL = apiBaseUrl; /* 根域名 */ |
| | | //defaultConfig.header = { |
| | | // 'Content-type': 'application/json1' |
| | | //}; |
| | | defaultConfig.method = 'POST'; |
| | | defaultConfig.dataType = 'json'; |
| | | // #ifndef MP-ALIPAY |
| | | defaultConfig.responseType = 'text'; |
| | | // #endif |
| | | // 注:如果局部custom与全局custom有同名属性,则后面的属性会覆盖前面的属性,相当于Object.assign(全局,局部) |
| | | //defaultConfig.custom = {}; // 全局自定义参数默认值 |
| | | // #ifdef APP-PLUS || MP-ALIPAY || MP-WEIXIN |
| | | defaultConfig.timeout = 60000; |
| | | // #endif |
| | | // #ifdef APP-PLUS |
| | | defaultConfig.sslVerify = true; |
| | | // #endif |
| | | // #ifdef APP-PLUS |
| | | defaultConfig.firstIpv4 = false; // DNS解析时优先使用ipv4 仅 App-Android 支持 (HBuilderX 2.8.0+) |
| | | // #endif |
| | | // 局部优先级高于全局,返回当前请求的task,options。请勿在此处修改options。非必填 |
| | | // getTask: (task, options) => { |
| | | // 相当于设置了请求超时时间500ms |
| | | // setTimeout(() => { |
| | | // task.abort() |
| | | // }, 500) |
| | | // }, |
| | | // 全局自定义验证器。参数为statusCode 且必存在,不用判断空情况。 |
| | | defaultConfig.validateStatus = (statusCode) => { // statusCode 必存在。此处示例为全局默认配置 |
| | | return statusCode >= 200 && statusCode < 501 |
| | | } |
| | | |
| | | return defaultConfig |
| | | }) |
| | | |
| | | // 请求拦截 |
| | | uni.$u.http.interceptors.request.use((config) => { // 可使用async await 做异步操作 |
| | | // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{} |
| | | config.data = config.data || {} |
| | | if (config?.custom?.needToken) { |
| | | // 获取用户token |
| | | const userToken = db.get("userToken"); |
| | | if (!userToken) { |
| | | //console.log("开启弹窗"); |
| | | vm.$store.commit('showLoginTip', true); |
| | | //console.log("弹窗已经开启"); |
| | | // return false; |
| | | } else { |
| | | config.header.Authorization = 'Bearer ' + userToken; |
| | | } |
| | | |
| | | } |
| | | |
| | | //额外需求 |
| | | if (config.custom.methodName == 'user.share'||config.custom.methodName =="pages.getpageconfig" || config.custom.methodName == "goods.goodsList") { |
| | | const userToken = db.get("userToken"); |
| | | config.header.Authorization = 'Bearer ' + userToken; |
| | | } |
| | | |
| | | return config |
| | | }, config => { // 可使用async await 做异步操作 |
| | | return Promise.reject(config) |
| | | }) |
| | | |
| | | // 响应拦截 |
| | | uni.$u.http.interceptors.response.use((response) => { /* 对响应成功做点什么 可使用async await 做异步操作*/ |
| | | //console.log(response); |
| | | const data = response.data |
| | | if (response.statusCode == 200) { |
| | | let pages = getCurrentPages(); |
| | | var page = pages[pages.length - 1]; |
| | | |
| | | if (!data.status && page) { |
| | | // 登录信息过期或者未登录 |
| | | if (data.data === 14007 || data.data === 14006) { |
| | | // #ifdef APP-PLUS || APP-PLUS-NVUE |
| | | if (page.route.indexOf('pages/login/index') < 0) { |
| | | db.del("userToken"); |
| | | uni.showToast({ |
| | | title: result.msg, |
| | | icon: 'none', |
| | | duration: 1000, |
| | | complete: function () { |
| | | setTimeout(function () { |
| | | uni.hideToast(); |
| | | uni.navigateTo({ |
| | | url: '/pages/login/index' |
| | | }); |
| | | }, |
| | | 1000); |
| | | } |
| | | }); |
| | | } |
| | | // #endif |
| | | // #ifdef MP-WEIXIN || MP-ALIPAY || MP-TOUTIAO |
| | | db.del("userToken"); |
| | | vm.$store.commit('userInfo', null); |
| | | //console.log("开启登录弹窗"); |
| | | vm.$store.commit('hasLogin', false); |
| | | // #endif |
| | | } |
| | | } |
| | | } |
| | | return data === undefined ? {} : data |
| | | }, (response) => { |
| | | // 对响应错误做点什么 (statusCode !== 200) |
| | | return Promise.reject(response) |
| | | }) |
| | | } |
| New file |
| | |
| | | /** |
| | | * 全局配置文件 |
| | | * @version 1.0.0 |
| | | */ |
| | | |
| | | //接口请求地址,如果需要不部署接口端的情况下测试uni-app,可以直接替换为官方测试接口:https://ycm.51zhengcai.com http://192.168.0.9:9997' |
| | | export const apiBaseUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.0.36:5000/':'https://ycm.51zhengcai.com'; |
| | | |
| | | //项目静态资源请求地址,如果使用官方的静态文件地址可以直接替换为:https://ycm.51zhengcai.com' http://192.168.0.36:2015 |
| | | export const apiFilesUrl = 'https://ycm.51zhengcai.com'; |
| | | |
| | | //支付单类型 |
| | | export const paymentType = { |
| | | //普通订单 |
| | | common: 1, |
| | | //拼团订单 |
| | | pinTuan: 2, |
| | | //团购订单 |
| | | group: 3, |
| | | //秒杀订单 |
| | | seckill: 4, |
| | | //砍价 |
| | | bargain: 6, |
| | | //赠品 |
| | | giveaway: 7, |
| | | //接龙 |
| | | solitaire: 8, |
| | | //交易组件 |
| | | transactionComponent: 10, |
| | | //充值 |
| | | recharge: 201, |
| | | //服务订单 |
| | | serviceOrder: 501, |
| | | //表单付款码 |
| | | formPay: 301, |
| | | //表单订单 |
| | | formOrder: 302, |
| | | }; |
| | | |
| | | //分享链接及海报类型 |
| | | export const shareType = { |
| | | // 首页 |
| | | index: 1, |
| | | // 2商品详情页 |
| | | goods: 2, |
| | | // 3拼团详情页 |
| | | pinTuan: 3, |
| | | // 4经销店铺 |
| | | inv: 4, |
| | | // 5文章页面 |
| | | article: 5, |
| | | // 6参团页面 |
| | | addPinTuan: 6, |
| | | // 7自定义页面 |
| | | page: 7, |
| | | // 8智能表单 |
| | | form: 8, |
| | | // 9团购 |
| | | group: 9, |
| | | // 10秒杀 |
| | | seckill: 10, |
| | | // 11代理店铺 |
| | | agent: 11, |
| | | // 12接龙 |
| | | solitaire: 12, |
| | | // 13 服务商品 |
| | | serviceGoods: 13 |
| | | }; |
| | | |
| | | //分享终端 |
| | | export const shareClient = { |
| | | // 普通h5 |
| | | h5: 1, |
| | | // 微信小程序 |
| | | wxMiNiProgram: 2, |
| | | // 微信公众号(h5) |
| | | wxOfficial: 3, |
| | | // 头条系小程序 |
| | | ttMiNiProgram: 4, |
| | | // 电脑pc端 |
| | | pc: 5, |
| | | // 阿里小程序 |
| | | aLiMiNiProgram: 6, |
| | | }; |
| | | |
| | | |
| | | //分享终端 |
| | | export const shareModel = { |
| | | // 链接分享 |
| | | url: 1, |
| | | // 二维码 |
| | | qrCode: 2, |
| | | // 海报 |
| | | poster: 3, |
| | | }; |
| | | |
| | | export const shareUrl = 'pages/share/jump/jump'; //分享初始化地址 |
| | | |
| | | |
| | | //列表加载状态 |
| | | export const loadStatus = { |
| | | // 加载前的状态 |
| | | loadMore: 'loadmore', |
| | | // 加载中的状态 |
| | | loading: 'loading', |
| | | // 没有更多的状态 |
| | | noMore: 'nomore', |
| | | }; |
| | | |
| | | |
| | | //优惠促销类型 |
| | | export const promotionType = { |
| | | // 促销 |
| | | promotion: 1, |
| | | |
| | | // 优惠券 |
| | | coupon: 2, |
| | | |
| | | // 团购 |
| | | group: 3, |
| | | |
| | | // 秒杀 |
| | | seckill: 4, |
| | | }; |
| | | |
| | | |
| | | |
| | | //nav页面导航类型 |
| | | export const navLinkType = { |
| | | urlLink: 1, //"URL链接" |
| | | shop: 2, // "商品" |
| | | article: 3, // "文章" |
| | | articleCategory: 4, // "文章分类", |
| | | intelligentForms: 5, // "智能表单" |
| | | shopCategory: 6 // "商品分类" |
| | | }; |
| New file |
| | |
| | | import Vue from 'vue' |
| | | import Vuex from 'vuex' |
| | | |
| | | Vue.use(Vuex) |
| | | |
| | | const store = new Vuex.Store({ |
| | | state: { |
| | | config: { |
| | | shopLogo:"/static/images/logo/logo.png" |
| | | }, // 店铺配置信息 //添加一个前端项目中的图片地址 |
| | | orderTab: 0, // 选中的订单tab页 |
| | | scene: 0, // 选中的订单tab页 |
| | | redirectPage: '', |
| | | uuid: '',//当前客户端 |
| | | searchStyle: '', |
| | | sessionAuthId: '', //微信缓存授权信息 |
| | | searchFixed: false,//搜索框样式 |
| | | showLoginTip:false,//显示登录框 |
| | | hasLogin: false,//存储用户当前是否登录,作为切换特效使用 |
| | | userShip: {}, //地区信息 |
| | | userInfo: {}, //用户信息存储 |
| | | invoice: {}, //发票信息 |
| | | deliveryData: {},//派送订单详情 |
| | | }, |
| | | mutations: { |
| | | config(state, payload) { |
| | | state.config = payload |
| | | }, |
| | | orderTab(state, tab) { |
| | | state.orderTab = tab |
| | | }, |
| | | scene(state, tab) { |
| | | state.scene = tab |
| | | }, |
| | | redirect(state, payload) { |
| | | state.redirectPage = payload.page |
| | | }, |
| | | searchStyle(state, style) { |
| | | state.searchStyle = style |
| | | }, |
| | | sessionAuthId(state, payload) { |
| | | state.sessionAuthId = payload |
| | | }, |
| | | searchFixed(state, payload) { |
| | | state.searchFixed = payload |
| | | }, |
| | | showLoginTip(state, payload) { |
| | | state.showLoginTip = payload |
| | | }, |
| | | hasLogin(state, payload) { |
| | | state.hasLogin = payload |
| | | }, |
| | | userShip(state, userShip) { |
| | | state.userShip = userShip |
| | | }, |
| | | userInfo(state, userInfo) { |
| | | state.userInfo = userInfo |
| | | }, |
| | | invoice(state, invoice) { |
| | | state.invoice = invoice |
| | | }, |
| | | deliveryData(state,data){ |
| | | state.deliveryData = data |
| | | } |
| | | }, |
| | | actions: { |
| | | |
| | | }, |
| | | getters: { |
| | | shopConfig: state => state.config, |
| | | scene: state => state.scene, |
| | | userInfo: state => state.userInfo, |
| | | uuid: state => state.uuid, |
| | | hasLogin: state => state.hasLogin, |
| | | sessionAuthId: state => state.sessionAuthId, |
| | | deliveryData: state => state.deliveryData |
| | | } |
| | | }) |
| | | |
| | | export default store |
| New file |
| | |
| | | // 提示框 |
| | | function modelShow( |
| | | title = '提示', |
| | | content = '确认执行此操作吗?', |
| | | callback = () => {}, |
| | | showCancel = true, |
| | | editable = false, |
| | | cancelText = '取消', |
| | | confirmText = '确定', |
| | | placeholderText = '请输入取消原因' |
| | | ) { |
| | | uni.showModal({ |
| | | title: title, |
| | | content: content, |
| | | showCancel: showCancel, |
| | | cancelText: cancelText, |
| | | confirmText: confirmText, |
| | | cancelText: cancelText, |
| | | editable: editable, |
| | | placeholderText: placeholderText, |
| | | success: function(res) { |
| | | if (res.confirm) { |
| | | // 用户点击确定操作 |
| | | setTimeout(() => { |
| | | callback(res.content) |
| | | }, 500) |
| | | } else if (res.cancel) { |
| | | // 用户取消操作 |
| | | } |
| | | } |
| | | }) |
| | | } |
| | | |
| | | |
| | | //货币格式化 |
| | | function formatMoney(number, places, symbol, thousand, decimal) { |
| | | number = number || 0 |
| | | places = !isNaN((places = Math.abs(places))) ? places : 2 |
| | | symbol = symbol !== undefined ? symbol : '¥' |
| | | thousand = thousand || ',' |
| | | decimal = decimal || '.' |
| | | var negative = number < 0 ? '-' : '', |
| | | i = parseInt((number = Math.abs(+number || 0).toFixed(places)), 10) + '', |
| | | j = (j = i.length) > 3 ? j % 3 : 0 |
| | | return ( |
| | | symbol + |
| | | negative + |
| | | (j ? i.substr(0, j) + thousand : '') + |
| | | i.substr(j).replace(/(\d{3})(?=\d)/g, '$1' + thousand) + |
| | | (places ? |
| | | decimal + |
| | | Math.abs(number - i) |
| | | .toFixed(places) |
| | | .slice(2) : |
| | | '') |
| | | ) |
| | | } |
| | | |
| | | /** |
| | | * 金额相加 |
| | | * @param {Object} value1 |
| | | * @param {Object} value2 |
| | | */ |
| | | function moneySum(value1, value2) { |
| | | return (parseFloat(value1) + parseFloat(value2)).toFixed(2); |
| | | } |
| | | /** |
| | | * 金额相减 |
| | | * @param {Object} value1 |
| | | * @param {Object} value2 |
| | | */ |
| | | function moneySub(value1, value2) { |
| | | let res = (parseFloat(value1) - parseFloat(value2)).toFixed(2); |
| | | return res > 0 ? res : 0; |
| | | } |
| | | /** |
| | | * 显示消息提示框 |
| | | * @param {Object} params 参数 |
| | | */ |
| | | function showToast(params = {}) { |
| | | params.title = params.title || "" |
| | | params.icon = params.icon || "none" |
| | | params.position = params.position || 'bottom' |
| | | params.duration = 1500 |
| | | uni.showToast(params) |
| | | } |
| | | |
| | | export { |
| | | formatMoney, |
| | | modelShow, |
| | | moneySum, |
| | | moneySub, |
| | | showToast, |
| | | } |
| New file |
| | |
| | | |
| | | //取值 |
| | | function get(key, sync = true) { |
| | | try { |
| | | if (sync) { |
| | | return uni.getStorageSync(key); |
| | | } else { |
| | | let data = ''; |
| | | uni.getStorage({ |
| | | key: key, |
| | | success: function (res) { |
| | | data = res.data; |
| | | } |
| | | }); |
| | | return data; |
| | | } |
| | | } catch (e) { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | //赋值 |
| | | function set(key, value, sync = true) { |
| | | try { |
| | | if (sync) { |
| | | return uni.setStorageSync(key, value); |
| | | } else { |
| | | uni.setStorage({ |
| | | key: key, |
| | | data: value |
| | | }); |
| | | } |
| | | } catch (e) { |
| | | |
| | | } |
| | | } |
| | | |
| | | //移除 |
| | | function del(key, sync = true) { |
| | | try { |
| | | if (sync) { |
| | | return uni.removeStorageSync(key); |
| | | } else { |
| | | uni.removeStorage({ |
| | | key: key |
| | | }); |
| | | } |
| | | } catch (e) { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | //清空 |
| | | function clear(sync = true) { |
| | | try { |
| | | if (sync) { |
| | | return uni.clearStorageSync(); |
| | | } else { |
| | | uni.clearStorage(); |
| | | } |
| | | } catch (e) { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | export { |
| | | get, |
| | | set, |
| | | del, |
| | | clear |
| | | } |
| New file |
| | |
| | | import { apiBaseUrl } from '@/common/setting/constVarsHelper.js'; |
| | | import * as db from './dbHelper.js' //引入common |
| | | |
| | | const showError = error => { |
| | | let errorMsg = ''; |
| | | switch (error.status) { |
| | | case 400: |
| | | errorMsg = '请求参数错误'; |
| | | break; |
| | | case 401: |
| | | errorMsg = '未授权,请登录'; |
| | | break; |
| | | case 403: |
| | | errorMsg = '跨域拒绝访问'; |
| | | break; |
| | | case 404: |
| | | errorMsg = `请求地址出错: ${error.config.url}`; |
| | | break; |
| | | case 408: |
| | | errorMsg = '请求超时'; |
| | | break; |
| | | case 500: |
| | | errorMsg = '服务器内部错误'; |
| | | break; |
| | | case 501: |
| | | errorMsg = '服务未实现'; |
| | | break; |
| | | case 502: |
| | | errorMsg = '网关错误'; |
| | | break; |
| | | case 503: |
| | | errorMsg = '服务不可用'; |
| | | break; |
| | | case 504: |
| | | errorMsg = '网关超时'; |
| | | break; |
| | | case 505: |
| | | errorMsg = 'HTTP版本不受支持'; |
| | | break; |
| | | default: |
| | | errorMsg = error.msg; |
| | | break; |
| | | } |
| | | uni.showToast({ |
| | | title: errorMsg, |
| | | icon: 'none', |
| | | duration: 1000, |
| | | complete: function () { |
| | | setTimeout(function () { |
| | | uni.hideToast(); |
| | | }, |
| | | 1000); |
| | | } |
| | | }); |
| | | }; |
| | | |
| | | // 文件上传 |
| | | export const uploadFiles = (data, callback) => { |
| | | // 获取用户token |
| | | let userToken = db.get("userToken"); |
| | | if (!userToken) { |
| | | this.$store.commit('showLoginTip', true); |
| | | return false; |
| | | }; |
| | | uni.chooseImage({ |
| | | success: (chooseImageRes) => { |
| | | uni.showLoading({ |
| | | title: '上传中...' |
| | | }); |
| | | const tempFilePaths = chooseImageRes.tempFilePaths; |
| | | const uploadTask = uni.uploadFile({ |
| | | url: apiBaseUrl + '/Api/Common/UploadImages', |
| | | filePath: tempFilePaths[0], |
| | | fileType: 'image', |
| | | name: 'file', |
| | | header: { |
| | | 'Accept': 'application/json', |
| | | 'Content-Type': 'multipart/form-data', |
| | | 'Authorization': 'Bearer ' + userToken |
| | | }, |
| | | formData: { |
| | | 'method': 'images.upload', |
| | | 'upfile': tempFilePaths[0] |
| | | }, |
| | | success: (uploadFileRes) => { |
| | | //console.log("交互成功"); |
| | | //console.log(uploadFileRes); |
| | | callback(JSON.parse(uploadFileRes.data)); |
| | | }, |
| | | fail: (error) => { |
| | | console.log("交互失败"); |
| | | console.log(error); |
| | | if (error && error.response) { |
| | | showError(error.response); |
| | | } |
| | | }, |
| | | complete: () => { |
| | | setTimeout(function () { |
| | | uni.hideLoading(); |
| | | }, |
| | | 250); |
| | | } |
| | | }); |
| | | //uploadTask.onProgressUpdate((res) => { |
| | | // console.log('上传进度' + res.progress); |
| | | // console.log('已经上传的数据长度' + res.totalBytesSent); |
| | | // console.log('预期需要上传的数据总长度' + res.totalBytesExpectedToSend); |
| | | |
| | | // // 测试条件,取消上传任务。 |
| | | // if (res.progress > 50) { |
| | | // uploadTask.abort(); |
| | | // } |
| | | //}); |
| | | } |
| | | }); |
| | | }; |
| | | |
| | | // 上传图片 |
| | | export const uploadImage = (num, callback) => { |
| | | |
| | | // 获取用户token |
| | | let userToken = db.get("userToken"); |
| | | if (!userToken) { |
| | | this.$store.commit('showLoginTip', true); |
| | | return false; |
| | | }; |
| | | |
| | | uni.chooseImage({ |
| | | count: num, |
| | | success: (res) => { |
| | | uni.showLoading({ |
| | | title: '上传中...' |
| | | }); |
| | | let tempFilePaths = res.tempFilePaths; |
| | | for (var i = 0; i < tempFilePaths.length; i++) { |
| | | uni.uploadFile({ |
| | | url: apiBaseUrl + '/Api/Common/UploadImages', |
| | | filePath: tempFilePaths[i], |
| | | fileType: 'image', |
| | | name: 'file', |
| | | header: { |
| | | 'Accept': 'application/json', |
| | | 'Content-Type': 'multipart/form-data', |
| | | 'Authorization': 'Bearer ' + userToken |
| | | }, |
| | | formData: { |
| | | 'method': 'images.upload', |
| | | 'upfile': tempFilePaths[i] |
| | | }, |
| | | success: (uploadFileRes) => { |
| | | callback(JSON.parse(uploadFileRes.data)); |
| | | }, |
| | | fail: (error) => { |
| | | if (error && error.response) { |
| | | showError(error.response); |
| | | } |
| | | }, |
| | | complete: () => { |
| | | setTimeout(function () { |
| | | uni.hideLoading(); |
| | | }, |
| | | 250); |
| | | }, |
| | | }); |
| | | } |
| | | } |
| | | }); |
| | | }; |
| | | |
| New file |
| | |
| | | //--------------------------------------------------------------------- |
| | | // github https://github.com/Sansnn/uQRCode |
| | | //--------------------------------------------------------------------- |
| | | |
| | | let uQRCode = {}; |
| | | |
| | | (function() { |
| | | //--------------------------------------------------------------------- |
| | | // QRCode for JavaScript |
| | | // |
| | | // Copyright (c) 2009 Kazuhiko Arase |
| | | // |
| | | // URL: http://www.d-project.com/ |
| | | // |
| | | // Licensed under the MIT license: |
| | | // http://www.opensource.org/licenses/mit-license.php |
| | | // |
| | | // The word "QR Code" is registered trademark of |
| | | // DENSO WAVE INCORPORATED |
| | | // http://www.denso-wave.com/qrcode/faqpatent-e.html |
| | | // |
| | | //--------------------------------------------------------------------- |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QR8bitByte |
| | | //--------------------------------------------------------------------- |
| | | |
| | | function QR8bitByte(data) { |
| | | this.mode = QRMode.MODE_8BIT_BYTE; |
| | | this.data = data; |
| | | } |
| | | |
| | | QR8bitByte.prototype = { |
| | | |
| | | getLength: function(buffer) { |
| | | return this.data.length; |
| | | }, |
| | | |
| | | write: function(buffer) { |
| | | for (var i = 0; i < this.data.length; i++) { |
| | | // not JIS ... |
| | | buffer.put(this.data.charCodeAt(i), 8); |
| | | } |
| | | } |
| | | }; |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QRCode |
| | | //--------------------------------------------------------------------- |
| | | |
| | | function QRCode(typeNumber, errorCorrectLevel) { |
| | | this.typeNumber = typeNumber; |
| | | this.errorCorrectLevel = errorCorrectLevel; |
| | | this.modules = null; |
| | | this.moduleCount = 0; |
| | | this.dataCache = null; |
| | | this.dataList = new Array(); |
| | | } |
| | | |
| | | QRCode.prototype = { |
| | | |
| | | addData: function(data) { |
| | | var newData = new QR8bitByte(data); |
| | | this.dataList.push(newData); |
| | | this.dataCache = null; |
| | | }, |
| | | |
| | | isDark: function(row, col) { |
| | | if (row < 0 || this.moduleCount <= row || col < 0 || this.moduleCount <= col) { |
| | | throw new Error(row + "," + col); |
| | | } |
| | | return this.modules[row][col]; |
| | | }, |
| | | |
| | | getModuleCount: function() { |
| | | return this.moduleCount; |
| | | }, |
| | | |
| | | make: function() { |
| | | // Calculate automatically typeNumber if provided is < 1 |
| | | if (this.typeNumber < 1) { |
| | | var typeNumber = 1; |
| | | for (typeNumber = 1; typeNumber < 40; typeNumber++) { |
| | | var rsBlocks = QRRSBlock.getRSBlocks(typeNumber, this.errorCorrectLevel); |
| | | |
| | | var buffer = new QRBitBuffer(); |
| | | var totalDataCount = 0; |
| | | for (var i = 0; i < rsBlocks.length; i++) { |
| | | totalDataCount += rsBlocks[i].dataCount; |
| | | } |
| | | |
| | | for (var i = 0; i < this.dataList.length; i++) { |
| | | var data = this.dataList[i]; |
| | | buffer.put(data.mode, 4); |
| | | buffer.put(data.getLength(), QRUtil.getLengthInBits(data.mode, typeNumber)); |
| | | data.write(buffer); |
| | | } |
| | | if (buffer.getLengthInBits() <= totalDataCount * 8) |
| | | break; |
| | | } |
| | | this.typeNumber = typeNumber; |
| | | } |
| | | this.makeImpl(false, this.getBestMaskPattern()); |
| | | }, |
| | | |
| | | makeImpl: function(test, maskPattern) { |
| | | |
| | | this.moduleCount = this.typeNumber * 4 + 17; |
| | | this.modules = new Array(this.moduleCount); |
| | | |
| | | for (var row = 0; row < this.moduleCount; row++) { |
| | | |
| | | this.modules[row] = new Array(this.moduleCount); |
| | | |
| | | for (var col = 0; col < this.moduleCount; col++) { |
| | | this.modules[row][col] = null; //(col + row) % 3; |
| | | } |
| | | } |
| | | |
| | | this.setupPositionProbePattern(0, 0); |
| | | this.setupPositionProbePattern(this.moduleCount - 7, 0); |
| | | this.setupPositionProbePattern(0, this.moduleCount - 7); |
| | | this.setupPositionAdjustPattern(); |
| | | this.setupTimingPattern(); |
| | | this.setupTypeInfo(test, maskPattern); |
| | | |
| | | if (this.typeNumber >= 7) { |
| | | this.setupTypeNumber(test); |
| | | } |
| | | |
| | | if (this.dataCache == null) { |
| | | this.dataCache = QRCode.createData(this.typeNumber, this.errorCorrectLevel, this.dataList); |
| | | } |
| | | |
| | | this.mapData(this.dataCache, maskPattern); |
| | | }, |
| | | |
| | | setupPositionProbePattern: function(row, col) { |
| | | |
| | | for (var r = -1; r <= 7; r++) { |
| | | |
| | | if (row + r <= -1 || this.moduleCount <= row + r) continue; |
| | | |
| | | for (var c = -1; c <= 7; c++) { |
| | | |
| | | if (col + c <= -1 || this.moduleCount <= col + c) continue; |
| | | |
| | | if ((0 <= r && r <= 6 && (c == 0 || c == 6)) || |
| | | (0 <= c && c <= 6 && (r == 0 || r == 6)) || |
| | | (2 <= r && r <= 4 && 2 <= c && c <= 4)) { |
| | | this.modules[row + r][col + c] = true; |
| | | } else { |
| | | this.modules[row + r][col + c] = false; |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | |
| | | getBestMaskPattern: function() { |
| | | |
| | | var minLostPoint = 0; |
| | | var pattern = 0; |
| | | |
| | | for (var i = 0; i < 8; i++) { |
| | | |
| | | this.makeImpl(true, i); |
| | | |
| | | var lostPoint = QRUtil.getLostPoint(this); |
| | | |
| | | if (i == 0 || minLostPoint > lostPoint) { |
| | | minLostPoint = lostPoint; |
| | | pattern = i; |
| | | } |
| | | } |
| | | |
| | | return pattern; |
| | | }, |
| | | |
| | | createMovieClip: function(target_mc, instance_name, depth) { |
| | | |
| | | var qr_mc = target_mc.createEmptyMovieClip(instance_name, depth); |
| | | var cs = 1; |
| | | |
| | | this.make(); |
| | | |
| | | for (var row = 0; row < this.modules.length; row++) { |
| | | |
| | | var y = row * cs; |
| | | |
| | | for (var col = 0; col < this.modules[row].length; col++) { |
| | | |
| | | var x = col * cs; |
| | | var dark = this.modules[row][col]; |
| | | |
| | | if (dark) { |
| | | qr_mc.beginFill(0, 100); |
| | | qr_mc.moveTo(x, y); |
| | | qr_mc.lineTo(x + cs, y); |
| | | qr_mc.lineTo(x + cs, y + cs); |
| | | qr_mc.lineTo(x, y + cs); |
| | | qr_mc.endFill(); |
| | | } |
| | | } |
| | | } |
| | | |
| | | return qr_mc; |
| | | }, |
| | | |
| | | setupTimingPattern: function() { |
| | | |
| | | for (var r = 8; r < this.moduleCount - 8; r++) { |
| | | if (this.modules[r][6] != null) { |
| | | continue; |
| | | } |
| | | this.modules[r][6] = (r % 2 == 0); |
| | | } |
| | | |
| | | for (var c = 8; c < this.moduleCount - 8; c++) { |
| | | if (this.modules[6][c] != null) { |
| | | continue; |
| | | } |
| | | this.modules[6][c] = (c % 2 == 0); |
| | | } |
| | | }, |
| | | |
| | | setupPositionAdjustPattern: function() { |
| | | |
| | | var pos = QRUtil.getPatternPosition(this.typeNumber); |
| | | |
| | | for (var i = 0; i < pos.length; i++) { |
| | | |
| | | for (var j = 0; j < pos.length; j++) { |
| | | |
| | | var row = pos[i]; |
| | | var col = pos[j]; |
| | | |
| | | if (this.modules[row][col] != null) { |
| | | continue; |
| | | } |
| | | |
| | | for (var r = -2; r <= 2; r++) { |
| | | |
| | | for (var c = -2; c <= 2; c++) { |
| | | |
| | | if (r == -2 || r == 2 || c == -2 || c == 2 || |
| | | (r == 0 && c == 0)) { |
| | | this.modules[row + r][col + c] = true; |
| | | } else { |
| | | this.modules[row + r][col + c] = false; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | |
| | | setupTypeNumber: function(test) { |
| | | |
| | | var bits = QRUtil.getBCHTypeNumber(this.typeNumber); |
| | | |
| | | for (var i = 0; i < 18; i++) { |
| | | var mod = (!test && ((bits >> i) & 1) == 1); |
| | | this.modules[Math.floor(i / 3)][i % 3 + this.moduleCount - 8 - 3] = mod; |
| | | } |
| | | |
| | | for (var i = 0; i < 18; i++) { |
| | | var mod = (!test && ((bits >> i) & 1) == 1); |
| | | this.modules[i % 3 + this.moduleCount - 8 - 3][Math.floor(i / 3)] = mod; |
| | | } |
| | | }, |
| | | |
| | | setupTypeInfo: function(test, maskPattern) { |
| | | |
| | | var data = (this.errorCorrectLevel << 3) | maskPattern; |
| | | var bits = QRUtil.getBCHTypeInfo(data); |
| | | |
| | | // vertical |
| | | for (var i = 0; i < 15; i++) { |
| | | |
| | | var mod = (!test && ((bits >> i) & 1) == 1); |
| | | |
| | | if (i < 6) { |
| | | this.modules[i][8] = mod; |
| | | } else if (i < 8) { |
| | | this.modules[i + 1][8] = mod; |
| | | } else { |
| | | this.modules[this.moduleCount - 15 + i][8] = mod; |
| | | } |
| | | } |
| | | |
| | | // horizontal |
| | | for (var i = 0; i < 15; i++) { |
| | | |
| | | var mod = (!test && ((bits >> i) & 1) == 1); |
| | | |
| | | if (i < 8) { |
| | | this.modules[8][this.moduleCount - i - 1] = mod; |
| | | } else if (i < 9) { |
| | | this.modules[8][15 - i - 1 + 1] = mod; |
| | | } else { |
| | | this.modules[8][15 - i - 1] = mod; |
| | | } |
| | | } |
| | | |
| | | // fixed module |
| | | this.modules[this.moduleCount - 8][8] = (!test); |
| | | |
| | | }, |
| | | |
| | | mapData: function(data, maskPattern) { |
| | | |
| | | var inc = -1; |
| | | var row = this.moduleCount - 1; |
| | | var bitIndex = 7; |
| | | var byteIndex = 0; |
| | | |
| | | for (var col = this.moduleCount - 1; col > 0; col -= 2) { |
| | | |
| | | if (col == 6) col--; |
| | | |
| | | while (true) { |
| | | |
| | | for (var c = 0; c < 2; c++) { |
| | | |
| | | if (this.modules[row][col - c] == null) { |
| | | |
| | | var dark = false; |
| | | |
| | | if (byteIndex < data.length) { |
| | | dark = (((data[byteIndex] >>> bitIndex) & 1) == 1); |
| | | } |
| | | |
| | | var mask = QRUtil.getMask(maskPattern, row, col - c); |
| | | |
| | | if (mask) { |
| | | dark = !dark; |
| | | } |
| | | |
| | | this.modules[row][col - c] = dark; |
| | | bitIndex--; |
| | | |
| | | if (bitIndex == -1) { |
| | | byteIndex++; |
| | | bitIndex = 7; |
| | | } |
| | | } |
| | | } |
| | | |
| | | row += inc; |
| | | |
| | | if (row < 0 || this.moduleCount <= row) { |
| | | row -= inc; |
| | | inc = -inc; |
| | | break; |
| | | } |
| | | } |
| | | } |
| | | |
| | | } |
| | | |
| | | }; |
| | | |
| | | QRCode.PAD0 = 0xEC; |
| | | QRCode.PAD1 = 0x11; |
| | | |
| | | QRCode.createData = function(typeNumber, errorCorrectLevel, dataList) { |
| | | |
| | | var rsBlocks = QRRSBlock.getRSBlocks(typeNumber, errorCorrectLevel); |
| | | |
| | | var buffer = new QRBitBuffer(); |
| | | |
| | | for (var i = 0; i < dataList.length; i++) { |
| | | var data = dataList[i]; |
| | | buffer.put(data.mode, 4); |
| | | buffer.put(data.getLength(), QRUtil.getLengthInBits(data.mode, typeNumber)); |
| | | data.write(buffer); |
| | | } |
| | | |
| | | // calc num max data. |
| | | var totalDataCount = 0; |
| | | for (var i = 0; i < rsBlocks.length; i++) { |
| | | totalDataCount += rsBlocks[i].dataCount; |
| | | } |
| | | |
| | | if (buffer.getLengthInBits() > totalDataCount * 8) { |
| | | throw new Error("code length overflow. (" + |
| | | buffer.getLengthInBits() + |
| | | ">" + |
| | | totalDataCount * 8 + |
| | | ")"); |
| | | } |
| | | |
| | | // end code |
| | | if (buffer.getLengthInBits() + 4 <= totalDataCount * 8) { |
| | | buffer.put(0, 4); |
| | | } |
| | | |
| | | // padding |
| | | while (buffer.getLengthInBits() % 8 != 0) { |
| | | buffer.putBit(false); |
| | | } |
| | | |
| | | // padding |
| | | while (true) { |
| | | |
| | | if (buffer.getLengthInBits() >= totalDataCount * 8) { |
| | | break; |
| | | } |
| | | buffer.put(QRCode.PAD0, 8); |
| | | |
| | | if (buffer.getLengthInBits() >= totalDataCount * 8) { |
| | | break; |
| | | } |
| | | buffer.put(QRCode.PAD1, 8); |
| | | } |
| | | |
| | | return QRCode.createBytes(buffer, rsBlocks); |
| | | } |
| | | |
| | | QRCode.createBytes = function(buffer, rsBlocks) { |
| | | |
| | | var offset = 0; |
| | | |
| | | var maxDcCount = 0; |
| | | var maxEcCount = 0; |
| | | |
| | | var dcdata = new Array(rsBlocks.length); |
| | | var ecdata = new Array(rsBlocks.length); |
| | | |
| | | for (var r = 0; r < rsBlocks.length; r++) { |
| | | |
| | | var dcCount = rsBlocks[r].dataCount; |
| | | var ecCount = rsBlocks[r].totalCount - dcCount; |
| | | |
| | | maxDcCount = Math.max(maxDcCount, dcCount); |
| | | maxEcCount = Math.max(maxEcCount, ecCount); |
| | | |
| | | dcdata[r] = new Array(dcCount); |
| | | |
| | | for (var i = 0; i < dcdata[r].length; i++) { |
| | | dcdata[r][i] = 0xff & buffer.buffer[i + offset]; |
| | | } |
| | | offset += dcCount; |
| | | |
| | | var rsPoly = QRUtil.getErrorCorrectPolynomial(ecCount); |
| | | var rawPoly = new QRPolynomial(dcdata[r], rsPoly.getLength() - 1); |
| | | |
| | | var modPoly = rawPoly.mod(rsPoly); |
| | | ecdata[r] = new Array(rsPoly.getLength() - 1); |
| | | for (var i = 0; i < ecdata[r].length; i++) { |
| | | var modIndex = i + modPoly.getLength() - ecdata[r].length; |
| | | ecdata[r][i] = (modIndex >= 0) ? modPoly.get(modIndex) : 0; |
| | | } |
| | | |
| | | } |
| | | |
| | | var totalCodeCount = 0; |
| | | for (var i = 0; i < rsBlocks.length; i++) { |
| | | totalCodeCount += rsBlocks[i].totalCount; |
| | | } |
| | | |
| | | var data = new Array(totalCodeCount); |
| | | var index = 0; |
| | | |
| | | for (var i = 0; i < maxDcCount; i++) { |
| | | for (var r = 0; r < rsBlocks.length; r++) { |
| | | if (i < dcdata[r].length) { |
| | | data[index++] = dcdata[r][i]; |
| | | } |
| | | } |
| | | } |
| | | |
| | | for (var i = 0; i < maxEcCount; i++) { |
| | | for (var r = 0; r < rsBlocks.length; r++) { |
| | | if (i < ecdata[r].length) { |
| | | data[index++] = ecdata[r][i]; |
| | | } |
| | | } |
| | | } |
| | | |
| | | return data; |
| | | |
| | | } |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QRMode |
| | | //--------------------------------------------------------------------- |
| | | |
| | | var QRMode = { |
| | | MODE_NUMBER: 1 << 0, |
| | | MODE_ALPHA_NUM: 1 << 1, |
| | | MODE_8BIT_BYTE: 1 << 2, |
| | | MODE_KANJI: 1 << 3 |
| | | }; |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QRErrorCorrectLevel |
| | | //--------------------------------------------------------------------- |
| | | |
| | | var QRErrorCorrectLevel = { |
| | | L: 1, |
| | | M: 0, |
| | | Q: 3, |
| | | H: 2 |
| | | }; |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QRMaskPattern |
| | | //--------------------------------------------------------------------- |
| | | |
| | | var QRMaskPattern = { |
| | | PATTERN000: 0, |
| | | PATTERN001: 1, |
| | | PATTERN010: 2, |
| | | PATTERN011: 3, |
| | | PATTERN100: 4, |
| | | PATTERN101: 5, |
| | | PATTERN110: 6, |
| | | PATTERN111: 7 |
| | | }; |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QRUtil |
| | | //--------------------------------------------------------------------- |
| | | |
| | | var QRUtil = { |
| | | |
| | | PATTERN_POSITION_TABLE: [ |
| | | [], |
| | | [6, 18], |
| | | [6, 22], |
| | | [6, 26], |
| | | [6, 30], |
| | | [6, 34], |
| | | [6, 22, 38], |
| | | [6, 24, 42], |
| | | [6, 26, 46], |
| | | [6, 28, 50], |
| | | [6, 30, 54], |
| | | [6, 32, 58], |
| | | [6, 34, 62], |
| | | [6, 26, 46, 66], |
| | | [6, 26, 48, 70], |
| | | [6, 26, 50, 74], |
| | | [6, 30, 54, 78], |
| | | [6, 30, 56, 82], |
| | | [6, 30, 58, 86], |
| | | [6, 34, 62, 90], |
| | | [6, 28, 50, 72, 94], |
| | | [6, 26, 50, 74, 98], |
| | | [6, 30, 54, 78, 102], |
| | | [6, 28, 54, 80, 106], |
| | | [6, 32, 58, 84, 110], |
| | | [6, 30, 58, 86, 114], |
| | | [6, 34, 62, 90, 118], |
| | | [6, 26, 50, 74, 98, 122], |
| | | [6, 30, 54, 78, 102, 126], |
| | | [6, 26, 52, 78, 104, 130], |
| | | [6, 30, 56, 82, 108, 134], |
| | | [6, 34, 60, 86, 112, 138], |
| | | [6, 30, 58, 86, 114, 142], |
| | | [6, 34, 62, 90, 118, 146], |
| | | [6, 30, 54, 78, 102, 126, 150], |
| | | [6, 24, 50, 76, 102, 128, 154], |
| | | [6, 28, 54, 80, 106, 132, 158], |
| | | [6, 32, 58, 84, 110, 136, 162], |
| | | [6, 26, 54, 82, 110, 138, 166], |
| | | [6, 30, 58, 86, 114, 142, 170] |
| | | ], |
| | | |
| | | G15: (1 << 10) | (1 << 8) | (1 << 5) | (1 << 4) | (1 << 2) | (1 << 1) | (1 << 0), |
| | | G18: (1 << 12) | (1 << 11) | (1 << 10) | (1 << 9) | (1 << 8) | (1 << 5) | (1 << 2) | (1 << 0), |
| | | G15_MASK: (1 << 14) | (1 << 12) | (1 << 10) | (1 << 4) | (1 << 1), |
| | | |
| | | getBCHTypeInfo: function(data) { |
| | | var d = data << 10; |
| | | while (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G15) >= 0) { |
| | | d ^= (QRUtil.G15 << (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G15))); |
| | | } |
| | | return ((data << 10) | d) ^ QRUtil.G15_MASK; |
| | | }, |
| | | |
| | | getBCHTypeNumber: function(data) { |
| | | var d = data << 12; |
| | | while (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G18) >= 0) { |
| | | d ^= (QRUtil.G18 << (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G18))); |
| | | } |
| | | return (data << 12) | d; |
| | | }, |
| | | |
| | | getBCHDigit: function(data) { |
| | | |
| | | var digit = 0; |
| | | |
| | | while (data != 0) { |
| | | digit++; |
| | | data >>>= 1; |
| | | } |
| | | |
| | | return digit; |
| | | }, |
| | | |
| | | getPatternPosition: function(typeNumber) { |
| | | return QRUtil.PATTERN_POSITION_TABLE[typeNumber - 1]; |
| | | }, |
| | | |
| | | getMask: function(maskPattern, i, j) { |
| | | |
| | | switch (maskPattern) { |
| | | |
| | | case QRMaskPattern.PATTERN000: |
| | | return (i + j) % 2 == 0; |
| | | case QRMaskPattern.PATTERN001: |
| | | return i % 2 == 0; |
| | | case QRMaskPattern.PATTERN010: |
| | | return j % 3 == 0; |
| | | case QRMaskPattern.PATTERN011: |
| | | return (i + j) % 3 == 0; |
| | | case QRMaskPattern.PATTERN100: |
| | | return (Math.floor(i / 2) + Math.floor(j / 3)) % 2 == 0; |
| | | case QRMaskPattern.PATTERN101: |
| | | return (i * j) % 2 + (i * j) % 3 == 0; |
| | | case QRMaskPattern.PATTERN110: |
| | | return ((i * j) % 2 + (i * j) % 3) % 2 == 0; |
| | | case QRMaskPattern.PATTERN111: |
| | | return ((i * j) % 3 + (i + j) % 2) % 2 == 0; |
| | | |
| | | default: |
| | | throw new Error("bad maskPattern:" + maskPattern); |
| | | } |
| | | }, |
| | | |
| | | getErrorCorrectPolynomial: function(errorCorrectLength) { |
| | | |
| | | var a = new QRPolynomial([1], 0); |
| | | |
| | | for (var i = 0; i < errorCorrectLength; i++) { |
| | | a = a.multiply(new QRPolynomial([1, QRMath.gexp(i)], 0)); |
| | | } |
| | | |
| | | return a; |
| | | }, |
| | | |
| | | getLengthInBits: function(mode, type) { |
| | | |
| | | if (1 <= type && type < 10) { |
| | | |
| | | // 1 - 9 |
| | | |
| | | switch (mode) { |
| | | case QRMode.MODE_NUMBER: |
| | | return 10; |
| | | case QRMode.MODE_ALPHA_NUM: |
| | | return 9; |
| | | case QRMode.MODE_8BIT_BYTE: |
| | | return 8; |
| | | case QRMode.MODE_KANJI: |
| | | return 8; |
| | | default: |
| | | throw new Error("mode:" + mode); |
| | | } |
| | | |
| | | } else if (type < 27) { |
| | | |
| | | // 10 - 26 |
| | | |
| | | switch (mode) { |
| | | case QRMode.MODE_NUMBER: |
| | | return 12; |
| | | case QRMode.MODE_ALPHA_NUM: |
| | | return 11; |
| | | case QRMode.MODE_8BIT_BYTE: |
| | | return 16; |
| | | case QRMode.MODE_KANJI: |
| | | return 10; |
| | | default: |
| | | throw new Error("mode:" + mode); |
| | | } |
| | | |
| | | } else if (type < 41) { |
| | | |
| | | // 27 - 40 |
| | | |
| | | switch (mode) { |
| | | case QRMode.MODE_NUMBER: |
| | | return 14; |
| | | case QRMode.MODE_ALPHA_NUM: |
| | | return 13; |
| | | case QRMode.MODE_8BIT_BYTE: |
| | | return 16; |
| | | case QRMode.MODE_KANJI: |
| | | return 12; |
| | | default: |
| | | throw new Error("mode:" + mode); |
| | | } |
| | | |
| | | } else { |
| | | throw new Error("type:" + type); |
| | | } |
| | | }, |
| | | |
| | | getLostPoint: function(qrCode) { |
| | | |
| | | var moduleCount = qrCode.getModuleCount(); |
| | | |
| | | var lostPoint = 0; |
| | | |
| | | // LEVEL1 |
| | | |
| | | for (var row = 0; row < moduleCount; row++) { |
| | | |
| | | for (var col = 0; col < moduleCount; col++) { |
| | | |
| | | var sameCount = 0; |
| | | var dark = qrCode.isDark(row, col); |
| | | |
| | | for (var r = -1; r <= 1; r++) { |
| | | |
| | | if (row + r < 0 || moduleCount <= row + r) { |
| | | continue; |
| | | } |
| | | |
| | | for (var c = -1; c <= 1; c++) { |
| | | |
| | | if (col + c < 0 || moduleCount <= col + c) { |
| | | continue; |
| | | } |
| | | |
| | | if (r == 0 && c == 0) { |
| | | continue; |
| | | } |
| | | |
| | | if (dark == qrCode.isDark(row + r, col + c)) { |
| | | sameCount++; |
| | | } |
| | | } |
| | | } |
| | | |
| | | if (sameCount > 5) { |
| | | lostPoint += (3 + sameCount - 5); |
| | | } |
| | | } |
| | | } |
| | | |
| | | // LEVEL2 |
| | | |
| | | for (var row = 0; row < moduleCount - 1; row++) { |
| | | for (var col = 0; col < moduleCount - 1; col++) { |
| | | var count = 0; |
| | | if (qrCode.isDark(row, col)) count++; |
| | | if (qrCode.isDark(row + 1, col)) count++; |
| | | if (qrCode.isDark(row, col + 1)) count++; |
| | | if (qrCode.isDark(row + 1, col + 1)) count++; |
| | | if (count == 0 || count == 4) { |
| | | lostPoint += 3; |
| | | } |
| | | } |
| | | } |
| | | |
| | | // LEVEL3 |
| | | |
| | | for (var row = 0; row < moduleCount; row++) { |
| | | for (var col = 0; col < moduleCount - 6; col++) { |
| | | if (qrCode.isDark(row, col) && |
| | | !qrCode.isDark(row, col + 1) && |
| | | qrCode.isDark(row, col + 2) && |
| | | qrCode.isDark(row, col + 3) && |
| | | qrCode.isDark(row, col + 4) && |
| | | !qrCode.isDark(row, col + 5) && |
| | | qrCode.isDark(row, col + 6)) { |
| | | lostPoint += 40; |
| | | } |
| | | } |
| | | } |
| | | |
| | | for (var col = 0; col < moduleCount; col++) { |
| | | for (var row = 0; row < moduleCount - 6; row++) { |
| | | if (qrCode.isDark(row, col) && |
| | | !qrCode.isDark(row + 1, col) && |
| | | qrCode.isDark(row + 2, col) && |
| | | qrCode.isDark(row + 3, col) && |
| | | qrCode.isDark(row + 4, col) && |
| | | !qrCode.isDark(row + 5, col) && |
| | | qrCode.isDark(row + 6, col)) { |
| | | lostPoint += 40; |
| | | } |
| | | } |
| | | } |
| | | |
| | | // LEVEL4 |
| | | |
| | | var darkCount = 0; |
| | | |
| | | for (var col = 0; col < moduleCount; col++) { |
| | | for (var row = 0; row < moduleCount; row++) { |
| | | if (qrCode.isDark(row, col)) { |
| | | darkCount++; |
| | | } |
| | | } |
| | | } |
| | | |
| | | var ratio = Math.abs(100 * darkCount / moduleCount / moduleCount - 50) / 5; |
| | | lostPoint += ratio * 10; |
| | | |
| | | return lostPoint; |
| | | } |
| | | |
| | | }; |
| | | |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QRMath |
| | | //--------------------------------------------------------------------- |
| | | |
| | | var QRMath = { |
| | | |
| | | glog: function(n) { |
| | | |
| | | if (n < 1) { |
| | | throw new Error("glog(" + n + ")"); |
| | | } |
| | | |
| | | return QRMath.LOG_TABLE[n]; |
| | | }, |
| | | |
| | | gexp: function(n) { |
| | | |
| | | while (n < 0) { |
| | | n += 255; |
| | | } |
| | | |
| | | while (n >= 256) { |
| | | n -= 255; |
| | | } |
| | | |
| | | return QRMath.EXP_TABLE[n]; |
| | | }, |
| | | |
| | | EXP_TABLE: new Array(256), |
| | | |
| | | LOG_TABLE: new Array(256) |
| | | |
| | | }; |
| | | |
| | | for (var i = 0; i < 8; i++) { |
| | | QRMath.EXP_TABLE[i] = 1 << i; |
| | | } |
| | | for (var i = 8; i < 256; i++) { |
| | | QRMath.EXP_TABLE[i] = QRMath.EXP_TABLE[i - 4] ^ |
| | | QRMath.EXP_TABLE[i - 5] ^ |
| | | QRMath.EXP_TABLE[i - 6] ^ |
| | | QRMath.EXP_TABLE[i - 8]; |
| | | } |
| | | for (var i = 0; i < 255; i++) { |
| | | QRMath.LOG_TABLE[QRMath.EXP_TABLE[i]] = i; |
| | | } |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QRPolynomial |
| | | //--------------------------------------------------------------------- |
| | | |
| | | function QRPolynomial(num, shift) { |
| | | |
| | | if (num.length == undefined) { |
| | | throw new Error(num.length + "/" + shift); |
| | | } |
| | | |
| | | var offset = 0; |
| | | |
| | | while (offset < num.length && num[offset] == 0) { |
| | | offset++; |
| | | } |
| | | |
| | | this.num = new Array(num.length - offset + shift); |
| | | for (var i = 0; i < num.length - offset; i++) { |
| | | this.num[i] = num[i + offset]; |
| | | } |
| | | } |
| | | |
| | | QRPolynomial.prototype = { |
| | | |
| | | get: function(index) { |
| | | return this.num[index]; |
| | | }, |
| | | |
| | | getLength: function() { |
| | | return this.num.length; |
| | | }, |
| | | |
| | | multiply: function(e) { |
| | | |
| | | var num = new Array(this.getLength() + e.getLength() - 1); |
| | | |
| | | for (var i = 0; i < this.getLength(); i++) { |
| | | for (var j = 0; j < e.getLength(); j++) { |
| | | num[i + j] ^= QRMath.gexp(QRMath.glog(this.get(i)) + QRMath.glog(e.get(j))); |
| | | } |
| | | } |
| | | |
| | | return new QRPolynomial(num, 0); |
| | | }, |
| | | |
| | | mod: function(e) { |
| | | |
| | | if (this.getLength() - e.getLength() < 0) { |
| | | return this; |
| | | } |
| | | |
| | | var ratio = QRMath.glog(this.get(0)) - QRMath.glog(e.get(0)); |
| | | |
| | | var num = new Array(this.getLength()); |
| | | |
| | | for (var i = 0; i < this.getLength(); i++) { |
| | | num[i] = this.get(i); |
| | | } |
| | | |
| | | for (var i = 0; i < e.getLength(); i++) { |
| | | num[i] ^= QRMath.gexp(QRMath.glog(e.get(i)) + ratio); |
| | | } |
| | | |
| | | // recursive call |
| | | return new QRPolynomial(num, 0).mod(e); |
| | | } |
| | | }; |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QRRSBlock |
| | | //--------------------------------------------------------------------- |
| | | |
| | | function QRRSBlock(totalCount, dataCount) { |
| | | this.totalCount = totalCount; |
| | | this.dataCount = dataCount; |
| | | } |
| | | |
| | | QRRSBlock.RS_BLOCK_TABLE = [ |
| | | |
| | | // L |
| | | // M |
| | | // Q |
| | | // H |
| | | |
| | | // 1 |
| | | [1, 26, 19], |
| | | [1, 26, 16], |
| | | [1, 26, 13], |
| | | [1, 26, 9], |
| | | |
| | | // 2 |
| | | [1, 44, 34], |
| | | [1, 44, 28], |
| | | [1, 44, 22], |
| | | [1, 44, 16], |
| | | |
| | | // 3 |
| | | [1, 70, 55], |
| | | [1, 70, 44], |
| | | [2, 35, 17], |
| | | [2, 35, 13], |
| | | |
| | | // 4 |
| | | [1, 100, 80], |
| | | [2, 50, 32], |
| | | [2, 50, 24], |
| | | [4, 25, 9], |
| | | |
| | | // 5 |
| | | [1, 134, 108], |
| | | [2, 67, 43], |
| | | [2, 33, 15, 2, 34, 16], |
| | | [2, 33, 11, 2, 34, 12], |
| | | |
| | | // 6 |
| | | [2, 86, 68], |
| | | [4, 43, 27], |
| | | [4, 43, 19], |
| | | [4, 43, 15], |
| | | |
| | | // 7 |
| | | [2, 98, 78], |
| | | [4, 49, 31], |
| | | [2, 32, 14, 4, 33, 15], |
| | | [4, 39, 13, 1, 40, 14], |
| | | |
| | | // 8 |
| | | [2, 121, 97], |
| | | [2, 60, 38, 2, 61, 39], |
| | | [4, 40, 18, 2, 41, 19], |
| | | [4, 40, 14, 2, 41, 15], |
| | | |
| | | // 9 |
| | | [2, 146, 116], |
| | | [3, 58, 36, 2, 59, 37], |
| | | [4, 36, 16, 4, 37, 17], |
| | | [4, 36, 12, 4, 37, 13], |
| | | |
| | | // 10 |
| | | [2, 86, 68, 2, 87, 69], |
| | | [4, 69, 43, 1, 70, 44], |
| | | [6, 43, 19, 2, 44, 20], |
| | | [6, 43, 15, 2, 44, 16], |
| | | |
| | | // 11 |
| | | [4, 101, 81], |
| | | [1, 80, 50, 4, 81, 51], |
| | | [4, 50, 22, 4, 51, 23], |
| | | [3, 36, 12, 8, 37, 13], |
| | | |
| | | // 12 |
| | | [2, 116, 92, 2, 117, 93], |
| | | [6, 58, 36, 2, 59, 37], |
| | | [4, 46, 20, 6, 47, 21], |
| | | [7, 42, 14, 4, 43, 15], |
| | | |
| | | // 13 |
| | | [4, 133, 107], |
| | | [8, 59, 37, 1, 60, 38], |
| | | [8, 44, 20, 4, 45, 21], |
| | | [12, 33, 11, 4, 34, 12], |
| | | |
| | | // 14 |
| | | [3, 145, 115, 1, 146, 116], |
| | | [4, 64, 40, 5, 65, 41], |
| | | [11, 36, 16, 5, 37, 17], |
| | | [11, 36, 12, 5, 37, 13], |
| | | |
| | | // 15 |
| | | [5, 109, 87, 1, 110, 88], |
| | | [5, 65, 41, 5, 66, 42], |
| | | [5, 54, 24, 7, 55, 25], |
| | | [11, 36, 12], |
| | | |
| | | // 16 |
| | | [5, 122, 98, 1, 123, 99], |
| | | [7, 73, 45, 3, 74, 46], |
| | | [15, 43, 19, 2, 44, 20], |
| | | [3, 45, 15, 13, 46, 16], |
| | | |
| | | // 17 |
| | | [1, 135, 107, 5, 136, 108], |
| | | [10, 74, 46, 1, 75, 47], |
| | | [1, 50, 22, 15, 51, 23], |
| | | [2, 42, 14, 17, 43, 15], |
| | | |
| | | // 18 |
| | | [5, 150, 120, 1, 151, 121], |
| | | [9, 69, 43, 4, 70, 44], |
| | | [17, 50, 22, 1, 51, 23], |
| | | [2, 42, 14, 19, 43, 15], |
| | | |
| | | // 19 |
| | | [3, 141, 113, 4, 142, 114], |
| | | [3, 70, 44, 11, 71, 45], |
| | | [17, 47, 21, 4, 48, 22], |
| | | [9, 39, 13, 16, 40, 14], |
| | | |
| | | // 20 |
| | | [3, 135, 107, 5, 136, 108], |
| | | [3, 67, 41, 13, 68, 42], |
| | | [15, 54, 24, 5, 55, 25], |
| | | [15, 43, 15, 10, 44, 16], |
| | | |
| | | // 21 |
| | | [4, 144, 116, 4, 145, 117], |
| | | [17, 68, 42], |
| | | [17, 50, 22, 6, 51, 23], |
| | | [19, 46, 16, 6, 47, 17], |
| | | |
| | | // 22 |
| | | [2, 139, 111, 7, 140, 112], |
| | | [17, 74, 46], |
| | | [7, 54, 24, 16, 55, 25], |
| | | [34, 37, 13], |
| | | |
| | | // 23 |
| | | [4, 151, 121, 5, 152, 122], |
| | | [4, 75, 47, 14, 76, 48], |
| | | [11, 54, 24, 14, 55, 25], |
| | | [16, 45, 15, 14, 46, 16], |
| | | |
| | | // 24 |
| | | [6, 147, 117, 4, 148, 118], |
| | | [6, 73, 45, 14, 74, 46], |
| | | [11, 54, 24, 16, 55, 25], |
| | | [30, 46, 16, 2, 47, 17], |
| | | |
| | | // 25 |
| | | [8, 132, 106, 4, 133, 107], |
| | | [8, 75, 47, 13, 76, 48], |
| | | [7, 54, 24, 22, 55, 25], |
| | | [22, 45, 15, 13, 46, 16], |
| | | |
| | | // 26 |
| | | [10, 142, 114, 2, 143, 115], |
| | | [19, 74, 46, 4, 75, 47], |
| | | [28, 50, 22, 6, 51, 23], |
| | | [33, 46, 16, 4, 47, 17], |
| | | |
| | | // 27 |
| | | [8, 152, 122, 4, 153, 123], |
| | | [22, 73, 45, 3, 74, 46], |
| | | [8, 53, 23, 26, 54, 24], |
| | | [12, 45, 15, 28, 46, 16], |
| | | |
| | | // 28 |
| | | [3, 147, 117, 10, 148, 118], |
| | | [3, 73, 45, 23, 74, 46], |
| | | [4, 54, 24, 31, 55, 25], |
| | | [11, 45, 15, 31, 46, 16], |
| | | |
| | | // 29 |
| | | [7, 146, 116, 7, 147, 117], |
| | | [21, 73, 45, 7, 74, 46], |
| | | [1, 53, 23, 37, 54, 24], |
| | | [19, 45, 15, 26, 46, 16], |
| | | |
| | | // 30 |
| | | [5, 145, 115, 10, 146, 116], |
| | | [19, 75, 47, 10, 76, 48], |
| | | [15, 54, 24, 25, 55, 25], |
| | | [23, 45, 15, 25, 46, 16], |
| | | |
| | | // 31 |
| | | [13, 145, 115, 3, 146, 116], |
| | | [2, 74, 46, 29, 75, 47], |
| | | [42, 54, 24, 1, 55, 25], |
| | | [23, 45, 15, 28, 46, 16], |
| | | |
| | | // 32 |
| | | [17, 145, 115], |
| | | [10, 74, 46, 23, 75, 47], |
| | | [10, 54, 24, 35, 55, 25], |
| | | [19, 45, 15, 35, 46, 16], |
| | | |
| | | // 33 |
| | | [17, 145, 115, 1, 146, 116], |
| | | [14, 74, 46, 21, 75, 47], |
| | | [29, 54, 24, 19, 55, 25], |
| | | [11, 45, 15, 46, 46, 16], |
| | | |
| | | // 34 |
| | | [13, 145, 115, 6, 146, 116], |
| | | [14, 74, 46, 23, 75, 47], |
| | | [44, 54, 24, 7, 55, 25], |
| | | [59, 46, 16, 1, 47, 17], |
| | | |
| | | // 35 |
| | | [12, 151, 121, 7, 152, 122], |
| | | [12, 75, 47, 26, 76, 48], |
| | | [39, 54, 24, 14, 55, 25], |
| | | [22, 45, 15, 41, 46, 16], |
| | | |
| | | // 36 |
| | | [6, 151, 121, 14, 152, 122], |
| | | [6, 75, 47, 34, 76, 48], |
| | | [46, 54, 24, 10, 55, 25], |
| | | [2, 45, 15, 64, 46, 16], |
| | | |
| | | // 37 |
| | | [17, 152, 122, 4, 153, 123], |
| | | [29, 74, 46, 14, 75, 47], |
| | | [49, 54, 24, 10, 55, 25], |
| | | [24, 45, 15, 46, 46, 16], |
| | | |
| | | // 38 |
| | | [4, 152, 122, 18, 153, 123], |
| | | [13, 74, 46, 32, 75, 47], |
| | | [48, 54, 24, 14, 55, 25], |
| | | [42, 45, 15, 32, 46, 16], |
| | | |
| | | // 39 |
| | | [20, 147, 117, 4, 148, 118], |
| | | [40, 75, 47, 7, 76, 48], |
| | | [43, 54, 24, 22, 55, 25], |
| | | [10, 45, 15, 67, 46, 16], |
| | | |
| | | // 40 |
| | | [19, 148, 118, 6, 149, 119], |
| | | [18, 75, 47, 31, 76, 48], |
| | | [34, 54, 24, 34, 55, 25], |
| | | [20, 45, 15, 61, 46, 16] |
| | | ]; |
| | | |
| | | QRRSBlock.getRSBlocks = function(typeNumber, errorCorrectLevel) { |
| | | |
| | | var rsBlock = QRRSBlock.getRsBlockTable(typeNumber, errorCorrectLevel); |
| | | |
| | | if (rsBlock == undefined) { |
| | | throw new Error("bad rs block @ typeNumber:" + typeNumber + "/errorCorrectLevel:" + errorCorrectLevel); |
| | | } |
| | | |
| | | var length = rsBlock.length / 3; |
| | | |
| | | var list = new Array(); |
| | | |
| | | for (var i = 0; i < length; i++) { |
| | | |
| | | var count = rsBlock[i * 3 + 0]; |
| | | var totalCount = rsBlock[i * 3 + 1]; |
| | | var dataCount = rsBlock[i * 3 + 2]; |
| | | |
| | | for (var j = 0; j < count; j++) { |
| | | list.push(new QRRSBlock(totalCount, dataCount)); |
| | | } |
| | | } |
| | | |
| | | return list; |
| | | } |
| | | |
| | | QRRSBlock.getRsBlockTable = function(typeNumber, errorCorrectLevel) { |
| | | |
| | | switch (errorCorrectLevel) { |
| | | case QRErrorCorrectLevel.L: |
| | | return QRRSBlock.RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 0]; |
| | | case QRErrorCorrectLevel.M: |
| | | return QRRSBlock.RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 1]; |
| | | case QRErrorCorrectLevel.Q: |
| | | return QRRSBlock.RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 2]; |
| | | case QRErrorCorrectLevel.H: |
| | | return QRRSBlock.RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 3]; |
| | | default: |
| | | return undefined; |
| | | } |
| | | } |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // QRBitBuffer |
| | | //--------------------------------------------------------------------- |
| | | |
| | | function QRBitBuffer() { |
| | | this.buffer = new Array(); |
| | | this.length = 0; |
| | | } |
| | | |
| | | QRBitBuffer.prototype = { |
| | | |
| | | get: function(index) { |
| | | var bufIndex = Math.floor(index / 8); |
| | | return ((this.buffer[bufIndex] >>> (7 - index % 8)) & 1) == 1; |
| | | }, |
| | | |
| | | put: function(num, length) { |
| | | for (var i = 0; i < length; i++) { |
| | | this.putBit(((num >>> (length - i - 1)) & 1) == 1); |
| | | } |
| | | }, |
| | | |
| | | getLengthInBits: function() { |
| | | return this.length; |
| | | }, |
| | | |
| | | putBit: function(bit) { |
| | | |
| | | var bufIndex = Math.floor(this.length / 8); |
| | | if (this.buffer.length <= bufIndex) { |
| | | this.buffer.push(0); |
| | | } |
| | | |
| | | if (bit) { |
| | | this.buffer[bufIndex] |= (0x80 >>> (this.length % 8)); |
| | | } |
| | | |
| | | this.length++; |
| | | } |
| | | }; |
| | | |
| | | //--------------------------------------------------------------------- |
| | | // Support Chinese |
| | | //--------------------------------------------------------------------- |
| | | function utf16To8(text) { |
| | | var result = ''; |
| | | var c; |
| | | for (var i = 0; i < text.length; i++) { |
| | | c = text.charCodeAt(i); |
| | | if (c >= 0x0001 && c <= 0x007F) { |
| | | result += text.charAt(i); |
| | | } else if (c > 0x07FF) { |
| | | result += String.fromCharCode(0xE0 | c >> 12 & 0x0F); |
| | | result += String.fromCharCode(0x80 | c >> 6 & 0x3F); |
| | | result += String.fromCharCode(0x80 | c >> 0 & 0x3F); |
| | | } else { |
| | | result += String.fromCharCode(0xC0 | c >> 6 & 0x1F); |
| | | result += String.fromCharCode(0x80 | c >> 0 & 0x3F); |
| | | } |
| | | } |
| | | return result; |
| | | } |
| | | |
| | | uQRCode = { |
| | | |
| | | errorCorrectLevel: QRErrorCorrectLevel, |
| | | |
| | | defaults: { |
| | | size: 354, |
| | | margin: 0, |
| | | backgroundColor: '#ffffff', |
| | | foregroundColor: '#000000', |
| | | fileType: 'png', // 'jpg', 'png' |
| | | errorCorrectLevel: QRErrorCorrectLevel.H, |
| | | typeNumber: -1 |
| | | }, |
| | | |
| | | make: function(options) { |
| | | var defaultOptions = { |
| | | canvasId: options.canvasId, |
| | | componentInstance: options.componentInstance, |
| | | text: options.text, |
| | | size: this.defaults.size, |
| | | margin: this.defaults.margin, |
| | | backgroundColor: this.defaults.backgroundColor, |
| | | foregroundColor: this.defaults.foregroundColor, |
| | | fileType: this.defaults.fileType, |
| | | errorCorrectLevel: this.defaults.errorCorrectLevel, |
| | | typeNumber: this.defaults.typeNumber |
| | | }; |
| | | if (options) { |
| | | for (var i in options) { |
| | | defaultOptions[i] = options[i]; |
| | | } |
| | | } |
| | | options = defaultOptions; |
| | | if (!options.canvasId) { |
| | | console.error('uQRCode: Please set canvasId!'); |
| | | return; |
| | | } |
| | | |
| | | function createCanvas() { |
| | | var qrcode = new QRCode(options.typeNumber, options.errorCorrectLevel); |
| | | qrcode.addData(utf16To8(options.text)); |
| | | qrcode.make(); |
| | | |
| | | var ctx = uni.createCanvasContext(options.canvasId, options.componentInstance); |
| | | ctx.setFillStyle(options.backgroundColor); |
| | | ctx.fillRect(0, 0, options.size, options.size); |
| | | |
| | | var tileW = (options.size - options.margin * 2) / qrcode.getModuleCount(); |
| | | var tileH = tileW; |
| | | |
| | | for (var row = 0; row < qrcode.getModuleCount(); row++) { |
| | | for (var col = 0; col < qrcode.getModuleCount(); col++) { |
| | | var style = qrcode.isDark(row, col) ? options.foregroundColor : options.backgroundColor; |
| | | ctx.setFillStyle(style); |
| | | var x = Math.round(col * tileW) + options.margin; |
| | | var y = Math.round(row * tileH) + options.margin; |
| | | var w = Math.ceil((col + 1) * tileW) - Math.floor(col * tileW); |
| | | var h = Math.ceil((row + 1) * tileW) - Math.floor(row * tileW); |
| | | ctx.fillRect(x, y, w, h); |
| | | } |
| | | } |
| | | |
| | | setTimeout(function() { |
| | | ctx.draw(false, (function() { |
| | | setTimeout(function() { |
| | | uni.canvasToTempFilePath({ |
| | | canvasId: options.canvasId, |
| | | fileType: options.fileType, |
| | | width: options.size, |
| | | height: options.size, |
| | | destWidth: options.size, |
| | | destHeight: options.size, |
| | | success: function(res) { |
| | | options.success && options.success(res.tempFilePath); |
| | | }, |
| | | fail: function(error) { |
| | | options.fail && options.fail(error); |
| | | }, |
| | | complete: function(res) { |
| | | options.complete && options.complete(res); |
| | | } |
| | | }, options.componentInstance); |
| | | }, options.text.length + 100); |
| | | })()); |
| | | }, 150); |
| | | } |
| | | |
| | | createCanvas(); |
| | | } |
| | | |
| | | } |
| | | |
| | | })() |
| | | |
| | | export default uQRCode |
| New file |
| | |
| | | export default { |
| | | name: [{ |
| | | required: true, |
| | | message: '请输入姓名', |
| | | trigger: ['blur', 'change'] |
| | | }, { |
| | | min: 2, |
| | | max: 4, |
| | | message: '长度在2-4个字符之间' |
| | | }], |
| | | mobile: [{ |
| | | required: true, |
| | | message: '请输入手机号码', |
| | | trigger: ['blur', 'change'] |
| | | }, { |
| | | validator: (rule, value, callback) => { |
| | | return this.$u.test.mobile(value); |
| | | }, |
| | | message: '手机号码不正确', |
| | | trigger: ['change', 'blur'], |
| | | }], |
| | | areaCode: [{ |
| | | required: true, |
| | | message: '请选择地址', |
| | | trigger: ['blur', 'change'] |
| | | }], |
| | | address: [{ |
| | | required: true, |
| | | message: '请输入地址详情', |
| | | trigger: ['blur', 'change'] |
| | | }], |
| | | sales: [{ |
| | | required: true, |
| | | message: '请输入年销售额', |
| | | trigger: ['blur', 'change'] |
| | | }], |
| | | dealer: [{ |
| | | required: true, |
| | | message: '请输入经销商姓名', |
| | | trigger: ['blur', 'change'] |
| | | }], |
| | | front: [{ |
| | | required: true, |
| | | message: '请上传身份证正面', |
| | | trigger: ['blur', 'change'] |
| | | }], |
| | | back: [{ |
| | | required: true, |
| | | message: '请上传身份证反面', |
| | | trigger: ['blur', 'change'] |
| | | }], |
| | | schoolName: [{ |
| | | required: true, |
| | | message: '请输入学校名称', |
| | | trigger: ['blur', 'change'] |
| | | }], |
| | | street: [{ |
| | | required: true, |
| | | message: '请定位', |
| | | trigger: ['blur', 'change'] |
| | | }] |
| | | } |
| New file |
| | |
| | | <template> |
| | | <view> |
| | | <up-upload :fileList="fileList" @afterRead="afterRead" @delete="deletePic" name="6" :maxCount="1" width="150" |
| | | height="50"> |
| | | <image :src="src" mode="widthFix" style="width: 150px;height: 50px;"></image> |
| | | </up-upload> |
| | | </view> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { |
| | | ref, |
| | | reactive, |
| | | defineProps |
| | | } from 'vue'; |
| | | const props = defineProps({ |
| | | src: { |
| | | type: String, |
| | | default: '' |
| | | } |
| | | }); |
| | | // let isShow = false |
| | | const fileList = reactive([{ |
| | | url: 'https://cdn.uviewui.com/uview/swiper/1.jpg', |
| | | }, ]); |
| | | const deletePic = (event) => { |
| | | fileList.splice(event.index, 1); |
| | | }; |
| | | const afterRead = () => { |
| | | |
| | | }; |
| | | // 新增图片 |
| | | // const afterRead = async (event) => { |
| | | // // 当设置 mutiple 为 true 时, file 为数组格式,否则为对象格式 |
| | | // let lists = [].concat(event.file); |
| | | // let fileListLen = fileList1.value.length; |
| | | // lists.map((item) => { |
| | | // fileList1.value.push({ |
| | | // ...item, |
| | | // status: 'uploading', |
| | | // message: '上传中', |
| | | // }); |
| | | // }); |
| | | // for (let i = 0; i < lists.length; i++) { |
| | | // const result = await uploadFilePromise(lists[i].url); |
| | | // let item = fileList1.value[fileListLen]; |
| | | // fileList1.value.splice(fileListLen, 1, { |
| | | // ...item, |
| | | // status: 'success', |
| | | // message: '', |
| | | // url: result, |
| | | // }); |
| | | // fileListLen++; |
| | | // } |
| | | // }; |
| | | </script> |
| | | |
| | | <style> |
| | | |
| | | </style> |
| | |
| | | |
| | | import App from './App' |
| | | |
| | | // vuex |
| | |
| | | |
| | | // 引入全局uview-plus |
| | | import uviewPlus, { setConfig } from '@/uni_modules/uview-plus' |
| | | //上传方法 |
| | | import * as Upload from '@/common/utils/uploadHelper.js' |
| | | //常用方法库 |
| | | import * as Common from '@/common/utils/commonHelper.js' |
| | | //本地存储封装 |
| | | import * as Db from '@/common/utils/dbHelper.js' |
| | | //全局常量配置 |
| | | import * as GlobalConstVars from '@/common/setting/constVarsHelper.js' |
| | | import * as Http from '@/common/request/http.api.js' |
| | | |
| | | // i18n部分的配置 |
| | | // 引入语言包,注意路径 |
| | |
| | | app.use(store) |
| | | .use(i18n) |
| | | .use(uviewPlus) |
| | | |
| | | app.config.globalProperties.$upload = Upload; |
| | | app.config.globalProperties.$common = Common; |
| | | app.config.globalProperties.$db = Db; |
| | | app.config.globalProperties.$globalConstVars = GlobalConstVars; |
| | | app.config.globalProperties.$api = Http; |
| | | // #ifdef MP |
| | | app.mixin(mpShare) |
| | | app.mixin(mixin) |
| | |
| | | } |
| | | } |
| | | // #endif |
| | | |
| | | |
| | | |
| | | |
| | |
| | | { |
| | | "condition": { //模式配置,仅开发期间生效 |
| | | "condition" : { |
| | | //模式配置,仅开发期间生效 |
| | | "current": 0, //当前激活的模式(list 的索引项) |
| | | "list": [] |
| | | }, |
| | |
| | | "^u--(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue", |
| | | "^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue", |
| | | "^u-([^-].*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue", |
| | | "fui-(.*)": "@/components/firstui/fui-$1/fui-$1.vue" |
| | | "fui-(.*)" : "@/components/firstui/fui-$1/fui-$1.vue", |
| | | "tem-(.*)" : "@/components/tem/tem-$1.vue" |
| | | } |
| | | }, |
| | | "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages |
| | | "pages" : [ |
| | | //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages |
| | | { |
| | | "path" : "pages/default/index", |
| | | "style" : |
| | | { |
| | | "style" : { |
| | | "navigationBarTitleText" : "" |
| | | } |
| | | }, |
| | |
| | | "style": { |
| | | "navigationBarTitleText": "发布招工2/2" |
| | | } |
| | | }, { |
| | | }, |
| | | { |
| | | "path": "pages/release/index", |
| | | "style": { |
| | | "navigationBarTitleText": "发布招工" |
| | |
| | | }, |
| | | { |
| | | "path" : "pages/wallet/index", |
| | | "style" : |
| | | { |
| | | "style" : { |
| | | "navigationBarTitleText" : "钱包" |
| | | } |
| | | }, |
| | | { |
| | | "path" : "pages/mine/mine", |
| | | "style" : { |
| | | "navigationBarTitleText" : "个人信息" |
| | | } |
| | | |
| | | }, |
| | | { |
| | | "path" : "pages/mine/apply", |
| | | "style" : { |
| | | "navigationBarTitleText" : "申请接单" |
| | | } |
| | | }, |
| | | { |
| | | "path" : "pages/enterprise/index", |
| | | "style" : |
| | | { |
| | | "navigationBarTitleText" : "企业资料" |
| | | } |
| | | }, |
| | | { |
| | | "path" : "pages/enterprise/enterprise", |
| | | "style" : |
| | | { |
| | | "navigationBarTitleText" : "企业资料" |
| | | } |
| | | } |
| | | ], |
| | | // "subPackages": [{ |
| | | // "root": "pages/componentsB", |
| | |
| | | "selectedColor": "#303133", |
| | | "backgroundColor": "#FFFFFF", |
| | | "borderStyle": "black", |
| | | "list": [{ |
| | | "list" : [ |
| | | { |
| | | "pagePath": "pages/index/index", |
| | | "iconPath": "static/shouye.png", |
| | | "selectedIconPath": "static/select_shouye.png", |
| New file |
| | |
| | | <template> |
| | | <view class="full-page"> |
| | | <view class="content"> |
| | | <up-form labelPosition="left" :model="model1" :rules="rules" ref="form1" labelWidth='90'> |
| | | <up-form-item label="公司营业执照" prop="userInfo.sex" required borderBottom @click="showSex = true; hideKeyboard()" |
| | | ref="item1"> |
| | | <tem-upload src='/static/upload.png'/> |
| | | <!-- <template #right> |
| | | <up-icon name="arrow-right"></up-icon> |
| | | </template> --> |
| | | </up-form-item> |
| | | <up-form-item label="企业名称" required prop="userInfo.name" borderBottom ref="item1"> |
| | | <up-input v-model="state.model1.userInfo.name" border="none" placeholder="请输入企业名称"></up-input> |
| | | </up-form-item> |
| | | <up-form-item label="企业注册地址" required prop="userInfo.name" borderBottom ref="item1"> |
| | | <up-input v-model="state.model1.userInfo.name" border="none" placeholder="请输入企业注册地址"></up-input> |
| | | </up-form-item> |
| | | <up-form-item label="联系人" required prop="userInfo.name" borderBottom ref="item1"> |
| | | <up-input v-model="state.model1.userInfo.name" border="none" placeholder="请输入联系人"></up-input> |
| | | </up-form-item> |
| | | <up-form-item label="联系电话" required prop="userInfo.name" borderBottom ref="item1"> |
| | | <up-input v-model="state.model1.userInfo.name" border="none" placeholder="请输入联系电话"></up-input> |
| | | </up-form-item> |
| | | |
| | | <up-form-item label="公司简介" required prop="userInfo.name" borderBottom ref="item1"> |
| | | <up-textarea v-model="state.model1.userInfo.name" placeholder="请输入公司简介" ></up-textarea> |
| | | </up-form-item> |
| | | <view class="tabbtns"> |
| | | <up-button color='#fece01' class="text-69" text="保存"></up-button> |
| | | </view> |
| | | </up-form> |
| | | </view> |
| | | |
| | | </view> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { |
| | | ref, |
| | | reactive |
| | | } from 'vue'; |
| | | |
| | | // 使用 reactive 创建响应式状态 |
| | | const state = reactive({ |
| | | showSex: false, |
| | | model1: { |
| | | userInfo: { |
| | | name: '', |
| | | sex: '', |
| | | }, |
| | | }, |
| | | actions: [{ |
| | | name: '男' |
| | | }, |
| | | { |
| | | name: '女' |
| | | }, |
| | | { |
| | | name: '保密' |
| | | }, |
| | | ], |
| | | |
| | | radio: '', |
| | | switchVal: false, |
| | | }); |
| | | |
| | | // 使用 ref 创建响应式引用 |
| | | const formRef = ref(null); |
| | | |
| | | // 定义方法 |
| | | function sexSelect(e) { |
| | | state.model1.userInfo.sex = e.name; |
| | | if (formRef.value) { |
| | | formRef.value.validateField('userInfo.sex'); |
| | | } |
| | | } |
| | | </script> |
| | | |
| | | <style> |
| | | .content{ |
| | | background-color: #fff; |
| | | padding: 0 20rpx; |
| | | } |
| | | </style> |
| New file |
| | |
| | | <template> |
| | | <view class=""> |
| | | <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> |
| | | <view class="fui-list__item"> |
| | | <text>企业名称</text> |
| | | <text class="fui-text__explain">我是企业名称</text> |
| | | </view> |
| | | </fui-list-cell> |
| | | <fui-list-cell arrow> |
| | | <view class="fui-list__item"> |
| | | <text>企业注册地址</text> |
| | | <text class="fui-text__explain">我是企业注册地址</text> |
| | | </view> |
| | | </fui-list-cell> |
| | | <fui-list-cell arrow> |
| | | <view class="fui-list__item"> |
| | | <text>联系电话</text> |
| | | <text class="fui-text__explain">13245678956</text> |
| | | </view> |
| | | </fui-list-cell> |
| | | |
| | | <fui-list-cell arrow> |
| | | <view class="fui-list__item"> |
| | | <text>公司简介</text> |
| | | <text class="fui-text__explain">我是公司简介</text> |
| | | </view> |
| | | </fui-list-cell> <fui-list-cell arrow @click="goApply"> |
| | | <text>完善企业资料</text> |
| | | </fui-list-cell> |
| | | </fui-list> |
| | | </view> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { |
| | | ref |
| | | } from 'vue'; |
| | | // let src = "http://pic2.sc.chinaz.com/Files/pic/pic9/202002/hpic2119_s.jpg" |
| | | const goApply = () => { |
| | | uni.navigateTo({ |
| | | url: '/pages/enterprise/enterprise' |
| | | }); |
| | | } |
| | | </script> |
| | | |
| | | <style> |
| | | .content { |
| | | height: 300rpx; |
| | | background-color: #d8d8d8; |
| | | } |
| | | |
| | | .fui-list__item { |
| | | flex: 1; |
| | | width: 100%; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: space-between; |
| | | } |
| | | |
| | | .fui-text__explain { |
| | | font-size: 28rpx; |
| | | color: #7F7F7F; |
| | | flex-shrink: 0; |
| | | } |
| | | </style> |
| | |
| | | <template> |
| | | <view> |
| | | <view class="wrap"> |
| | | |
| | | <image src="@/static/logo.png" mode="widthFix" class="tip_img"></image> |
| | | <view class="login_tip"> |
| | | 为了提供更优质的服务,需要获取您的头像和昵称。 |
| | | </view> |
| | | <view class="login_btn"> |
| | | <!-- #ifdef MP-WEIXIN || MP-QQ || MP-BAIDU --> |
| | | <button v-if="canIUseGetUserProfile" type="primary" class="uni-tip-button" @click="login">授权并登录</button> |
| | | <button v-else type="primary" open-type="getUserInfo" @getuserinfo="login" |
| | | <!-- <button v-if="canIUseGetUserProfile" type="primary" class="uni-tip-button" @click="login">授权并登录</button> --> |
| | | <button type="primary" open-type="getUserInfo" @getuserinfo="login" |
| | | class="uni-tip-button">授权并登录</button> |
| | | <view class="no_login" @click="back"> |
| | | 暂不授权 |
| | |
| | | <!-- #endif --> |
| | | <checkbox-group @change="changeAgree"> |
| | | <view class="regisiter-agreement"> |
| | | |
| | | <label> |
| | | <checkbox value="1" :checked="isChecked" color="#35A6FF" style="transform:scale(0.7)" /> |
| | | |
| | | 已阅读并同意以下协议 |
| | | <text class="color-base-text" @click.stop="openPopup(1)">《用户服务协议》</text>和 <text |
| | | class="color-base-text" @click.stop="openPopup(2)">《隐私政策》</text> |
| | |
| | | title: '加载中', |
| | | mask: true |
| | | }) |
| | | this.$api.sendRequest({ |
| | | url: '/api.php/user/info', |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: uni.getStorageSync('authInfo').id |
| | | }, |
| | |
| | | uni.removeStorageSync('wx_openid_set'); |
| | | uni.removeStorageSync('source_member'); |
| | | uni.removeStorageSync('authInfo'); |
| | | this.$api.sendRequest({ |
| | | url: "/api.php/user/is_perfect", |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: res.data.id, |
| | | }, |
| | |
| | | if (this.isSub) return; |
| | | this.isSub = true; |
| | | |
| | | this.$api.sendRequest({ |
| | | url: '/api.php/login/binding_mobile', |
| | | this.$api.temLogin({ |
| | | data, |
| | | success: res => { |
| | | if (res.code == 1) { |
| | |
| | | uni.removeStorageSync('wx_openid_set'); |
| | | uni.removeStorageSync('source_member'); |
| | | uni.removeStorageSync('authInfo'); |
| | | this.$api.sendRequest({ |
| | | url: "/api.php/user/is_perfect", |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: res.data.id, |
| | | }, |
| | |
| | | avatar: userInfo.avatarUrl, |
| | | |
| | | } |
| | | if (uni.getStorageSync('source_member')) { |
| | | data.source_member = uni.getStorageSync('source_member') |
| | | } |
| | | if (res.code) { |
| | | this.$api.sendRequest({ |
| | | url: '/api.php/login/wx_login', |
| | | data, |
| | | success: res => { |
| | | if (res.code >= 0) { |
| | | // if (res.data.openid) this.authInfo.weapp_openid = res.data.openid; |
| | | // if (res.data.unionid) this.authInfo.wx_unionid = res.data.unionid; |
| | | typeof callback == 'function' && callback(res); |
| | | } else { |
| | | this.$util.showToast({ |
| | | title: '小程序配置错误' |
| | | }); |
| | | } |
| | | } |
| | | }) |
| | | } |
| | | // if (uni.getStorageSync('source_member')) { |
| | | // data.source_member = uni.getStorageSync('source_member') |
| | | // } |
| | | // if (res.code) { |
| | | // this.$api.temLogin(data) |
| | | // } |
| | | }, |
| | | fail: () => { |
| | | this.$util.showToast({ |
| | |
| | | }, |
| | | login(e) { |
| | | if (!this.isChecked) { |
| | | return this.$util.showToast({ |
| | | return this.$common.showToast({ |
| | | title: "请先同意协议" |
| | | }) |
| | | } |
| | |
| | | uni.removeStorageSync( |
| | | 'source_member'); |
| | | uni.removeStorageSync('authInfo'); |
| | | this.$api.sendRequest({ |
| | | url: "/api.php/user/is_perfect", |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: data.data.id, |
| | | }, |
| | |
| | | uni.removeStorageSync('wx_openid_set'); |
| | | uni.removeStorageSync('source_member'); |
| | | uni.removeStorageSync('authInfo'); |
| | | this.$api.sendRequest({ |
| | | url: "/api.php/user/is_perfect", |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: data.data.id, |
| | | }, |
| New file |
| | |
| | | <template> |
| | | <view> |
| | | <view class="wrap"> |
| | | <image src="@/static/logo.png" mode="widthFix" class="tip_img"></image> |
| | | <view class="login_tip"> |
| | | 为了提供更优质的服务,需要获取您的头像和昵称。 |
| | | </view> |
| | | <view class="login_btn"> |
| | | <!-- #ifdef MP-WEIXIN || MP-QQ || MP-BAIDU --> |
| | | <button v-if="canIUseGetUserProfile" type="primary" class="uni-tip-button" @click="login">授权并登录</button> |
| | | <button v-else type="primary" open-type="getUserInfo" @getuserinfo="login" |
| | | class="uni-tip-button">授权并登录</button> |
| | | <view class="no_login" @click="back"> |
| | | 暂不授权 |
| | | </view> |
| | | <!-- #endif --> |
| | | <checkbox-group @change="changeAgree"> |
| | | <view class="regisiter-agreement"> |
| | | <label> |
| | | <checkbox value="1" :checked="isChecked" color="#35A6FF" style="transform:scale(0.7)" /> |
| | | 已阅读并同意以下协议 |
| | | <text class="color-base-text" @click.stop="openPopup(1)">《用户服务协议》</text>和 <text |
| | | class="color-base-text" @click.stop="openPopup(2)">《隐私政策》</text> |
| | | </label> |
| | | </view> |
| | | </checkbox-group> |
| | | </view> |
| | | <!-- <view class="mobile_login" @click="toMobileLogin"> |
| | | 同意并输入手机号登录 |
| | | </view> --> |
| | | <!-- <view class="agreement_wrap"> |
| | | <view class="agree_item"> |
| | | <view class="item_icon" @click="isChecked = !isChecked"> |
| | | <image v-if="!isChecked" :src="$util.img('upload/img/iconCheck.png')" mode="aspectFit" |
| | | class="item_select_img"></image> |
| | | <image v-else :src="$util.img('upload/img/publish-selected.png')" mode="aspectFit" |
| | | class="item_select_img"></image> |
| | | </view> |
| | | <view class="item_content"> |
| | | 首次登录自动注册运满满及货车帮账号,且已阅读并同意<text class="agreement">《用户服务协议》</text><text |
| | | class="agreement">《个人信息保护政策》</text><text class="agreement">《账号关联协议》</text> |
| | | </view> |
| | | </view> |
| | | <view class="agree_item"> |
| | | <view class="item_icon" @click="isCheckedSan = !isCheckedSan"> |
| | | <image v-if="!isCheckedSan" :src="$util.img('upload/img/iconCheck.png')" mode="aspectFit" |
| | | class="item_select_img"></image> |
| | | <image v-else :src="$util.img('upload/img/publish-selected.png')" mode="aspectFit" |
| | | class="item_select_img"></image> |
| | | </view> |
| | | <view class="item_content"> |
| | | 已阅读并同意<text class="agreement">《第三方合作清单》</text> |
| | | </view> |
| | | </view> |
| | | </view> --> |
| | | </view> |
| | | <u-popup ref="popup" type="center"> |
| | | <view class="bind-wrap"> |
| | | <!-- #ifdef MP-WEIXIN || MP-QQ || MP-BAIDU --> |
| | | <view class="heard">提示</view> |
| | | <view class="bind-tips">为了方便您接收通知消息,需要您完成授权</view> |
| | | <view class="auth-login ns-btn-default-all color-base-bg" @click="toWeb"> |
| | | 去授权 |
| | | </view> |
| | | <!-- <button open-type="getPhoneNumber" class="auth-login ns-btn-default-all color-base-bg" |
| | | @getphonenumber="mobileAuthLogin"><text>点击绑定手机号码</text></button> --> |
| | | <!-- #endif --> |
| | | </view> |
| | | </u-popup> |
| | | <u-popup ref="bindMobile"> |
| | | <view class="bind-wrap"> |
| | | <!-- #ifdef MP-WEIXIN || MP-QQ || MP-BAIDU --> |
| | | <view class="heard">提示</view> |
| | | <view class="bind-tips">为了方便联系您,需要绑定您的手机号码</view> |
| | | <button open-type="getPhoneNumber" class="auth-login ns-btn-default-all color-base-bg" |
| | | @getphonenumber="mobileAuthLogin"><text>点击绑定手机号码</text></button> |
| | | <!-- #endif --> |
| | | </view> |
| | | </u-popup> |
| | | </view> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | data() { |
| | | return { |
| | | isChecked: false, |
| | | isCheckedSan: false, |
| | | canIUseGetUserProfile: false |
| | | }; |
| | | }, |
| | | created() { |
| | | // #ifdef MP-WEIXIN |
| | | if (wx.getUserProfile) this.canIUseGetUserProfile = true; |
| | | // #endif |
| | | }, |
| | | onShow() { |
| | | if (uni.getStorageSync('wx_openid_set') && uni.getStorageSync('wx_openid_set') == 1) { |
| | | uni.showLoading({ |
| | | title: '加载中', |
| | | mask: true |
| | | }) |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: uni.getStorageSync('authInfo').id |
| | | }, |
| | | success: res => { |
| | | |
| | | if (res.code == 1) { |
| | | // uni.hideLoading() |
| | | // if (res.data.openid) this.authInfo.weapp_openid = res.data.openid; |
| | | // if (res.data.unionid) this.authInfo.wx_unionid = res.data.unionid; |
| | | if (res.data.wx_openid) { |
| | | this.$util.showToast({ |
| | | title: "登录成功", |
| | | icon: "success" |
| | | }) |
| | | uni.setStorage({ |
| | | key: 'uid', |
| | | data: res.data.id, |
| | | success: () => { |
| | | uni.removeStorageSync('wx_openid_set'); |
| | | uni.removeStorageSync('source_member'); |
| | | uni.removeStorageSync('authInfo'); |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: res.data.id, |
| | | }, |
| | | success: res => { |
| | | if (res.code == 1) { |
| | | console.log(res) |
| | | uni.setStorageSync( |
| | | 'is_perfect_user', '1') |
| | | } else { |
| | | uni.setStorageSync( |
| | | 'is_perfect_user', res.code |
| | | ) |
| | | } |
| | | }, |
| | | fail: res => { |
| | | this.$util.showToast({ |
| | | title: "接口错误" |
| | | }); |
| | | } |
| | | }); |
| | | // this.$store.dispatch('getCartNumber'); |
| | | setTimeout(() => { |
| | | this.$util.redirectTo( |
| | | '/pages/index/index', {}, |
| | | 'tabbar') |
| | | }, 1000) |
| | | } |
| | | }); |
| | | } else { |
| | | this.$util.showToast({ |
| | | title: '授权失败' |
| | | }); |
| | | } |
| | | if (this.$refs.loadingCover) this.$refs.loadingCover.hide(); |
| | | } else { |
| | | uni.removeStorageSync('uid') |
| | | this.$forceUpdate() |
| | | this.$util.showToast({ |
| | | title: res.msg |
| | | }); |
| | | if (this.$refs.loadingCover) this.$refs.loadingCover.hide(); |
| | | } |
| | | } |
| | | }) |
| | | } |
| | | }, |
| | | methods: { |
| | | openPopup(type) { |
| | | this.$util.redirectTo('/otherPages/member/webView/webView', { |
| | | link: type |
| | | }) |
| | | }, |
| | | changeAgree(e) { |
| | | console.log(e) |
| | | if (e.detail.value.length > 0) { |
| | | this.isChecked = true |
| | | } else { |
| | | this.isChecked = false |
| | | } |
| | | }, |
| | | toWeb() { |
| | | if (!this.isChecked) { |
| | | return this.$util.showToast({ |
| | | title: "请先同意协议" |
| | | }) |
| | | } |
| | | uni.setStorageSync('wx_openid_set', 1) |
| | | this.$util.redirectTo('/otherPages/member/webView/webView', { |
| | | uid: uni.getStorageSync('authInfo').id |
| | | }) |
| | | }, |
| | | back() { |
| | | uni.navigateBack() |
| | | }, |
| | | toMobileLogin() { |
| | | if (!this.isChecked) { |
| | | return this.$util.showToast({ |
| | | title: "请先同意协议" |
| | | }) |
| | | } |
| | | this.$util.redirectTo('/otherPages/member/mobileLogin/mobileLogin') |
| | | }, |
| | | mobileAuthLogin(e) { |
| | | console.log(e) |
| | | if (!this.isChecked) { |
| | | return this.$util.showToast({ |
| | | title: "请先同意协议" |
| | | }) |
| | | } |
| | | // return |
| | | if (e.detail.errMsg == 'getPhoneNumber:ok') { |
| | | let authData = uni.getStorageSync('authInfo'); |
| | | console.log(authData) |
| | | var data = { |
| | | code: e.detail.code, |
| | | uid: authData.id |
| | | // iv: e.detail.iv, |
| | | // encryptedData: e.detail.encryptedData |
| | | }; |
| | | console.log(e) |
| | | // if (Object.keys(authData).length) { |
| | | // Object.assign(data, authData); |
| | | // } |
| | | // if (authData.avatarUrl) data.headimg = authData.avatarUrl; |
| | | // if (authData.nickName) data.nickname = authData.nickName; |
| | | // if (uni.getStorageSync('source_member')) data.source_member = uni.getStorageSync('source_member'); |
| | | |
| | | if (this.isSub) return; |
| | | this.isSub = true; |
| | | |
| | | this.$api.temLogin({ |
| | | data, |
| | | success: res => { |
| | | if (res.code == 1) { |
| | | console.log(res) |
| | | |
| | | if (res.data.wx_openid) { |
| | | this.$util.showToast({ |
| | | title: "登录成功", |
| | | icon: "success" |
| | | }) |
| | | uni.setStorage({ |
| | | key: 'uid', |
| | | data: res.data.id, |
| | | success: () => { |
| | | uni.removeStorageSync('wx_openid_set'); |
| | | uni.removeStorageSync('source_member'); |
| | | uni.removeStorageSync('authInfo'); |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: res.data.id, |
| | | }, |
| | | success: res => { |
| | | if (res.code == 1) { |
| | | console.log(res) |
| | | uni.setStorageSync( |
| | | 'is_perfect_user', '1') |
| | | } else { |
| | | uni.setStorageSync( |
| | | 'is_perfect_user', res |
| | | .code) |
| | | } |
| | | }, |
| | | fail: res => { |
| | | this.$util.showToast({ |
| | | title: "接口错误" |
| | | }); |
| | | } |
| | | }); |
| | | // this.$store.dispatch('getCartNumber'); |
| | | setTimeout(() => { |
| | | this.$util.redirectTo( |
| | | '/pages/index/index', {}, |
| | | 'tabbar') |
| | | }, 1000) |
| | | } |
| | | }); |
| | | } else { |
| | | this.$refs.bindMobile.close() |
| | | // uni.setStorageSync('wx_openid_set',1) |
| | | this.$refs.popup.open() |
| | | } |
| | | |
| | | // this.$store.commit('setToken', res.data.token); |
| | | // this.$refs.bindMobile.close(); |
| | | // if (res.data.is_register && this.$refs.registerReward.getReward()) { |
| | | // this.$refs.registerReward.open(); |
| | | // } |
| | | } else { |
| | | this.isSub = false; |
| | | this.$util.showToast({ |
| | | title: res.msg |
| | | }); |
| | | } |
| | | }, |
| | | fail: res => { |
| | | this.isSub = false; |
| | | this.$util.showToast({ |
| | | title: 'request:fail' |
| | | }); |
| | | } |
| | | }); |
| | | } |
| | | }, |
| | | getCode(userInfo, callback) { |
| | | uni.login({ |
| | | provider: 'weixin', |
| | | timeout: 3000, |
| | | success: res => { |
| | | console.log(res) |
| | | let data = { |
| | | code: res.code, |
| | | nickname: userInfo.nickName, |
| | | avatar: userInfo.avatarUrl, |
| | | |
| | | } |
| | | // if (uni.getStorageSync('source_member')) { |
| | | // data.source_member = uni.getStorageSync('source_member') |
| | | // } |
| | | // if (res.code) { |
| | | // this.$api.temLogin(data) |
| | | // } |
| | | }, |
| | | fail: () => { |
| | | this.$util.showToast({ |
| | | title: '请求失败' |
| | | }); |
| | | } |
| | | }) |
| | | }, |
| | | login(e) { |
| | | if (!this.isChecked) { |
| | | return this.$common.showToast({ |
| | | title: "请先同意协议" |
| | | }) |
| | | } |
| | | // if (!this.isChecked || !this.isCheckedSan) { |
| | | // this.$util.showToast({ |
| | | // title: "请勾选用户注册/登录协议和第三方合作清单" |
| | | // }) |
| | | // return |
| | | // } |
| | | // #ifdef MP-WEIXIN |
| | | if (this.canIUseGetUserProfile) { |
| | | wx.getUserProfile({ |
| | | desc: '获取用户个人信息', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写 |
| | | success: (res) => { |
| | | console.log(res) |
| | | if (res.errMsg == 'getUserProfile:ok') { |
| | | |
| | | // this.authInfo.nickName = res.userInfo.nickName; |
| | | // this.authInfo.avatarUrl = res.userInfo.avatarUrl; |
| | | // uni.setStorageSync('authInfo', this.authInfo) |
| | | |
| | | this.getCode(res.userInfo, data => { |
| | | console.log(data) |
| | | if (data.code == 1) { |
| | | uni.setStorageSync('authInfo', data.data) |
| | | if (!data.data.mobile) { |
| | | this.$refs.bindMobile.open() |
| | | } else { |
| | | if (data.data.wx_openid) { |
| | | this.$util.showToast({ |
| | | title: "登录成功", |
| | | icon: "success" |
| | | }) |
| | | uni.setStorage({ |
| | | key: 'uid', |
| | | data: data.data.id, |
| | | success: () => { |
| | | uni.removeStorageSync( |
| | | 'wx_openid_set'); |
| | | uni.removeStorageSync( |
| | | 'source_member'); |
| | | uni.removeStorageSync('authInfo'); |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: data.data.id, |
| | | }, |
| | | success: res => { |
| | | if (res.code == |
| | | 1) { |
| | | console |
| | | .log( |
| | | res |
| | | ) |
| | | uni.setStorageSync( |
| | | 'is_perfect_user', |
| | | '1' |
| | | ) |
| | | } else { |
| | | uni.setStorageSync( |
| | | 'is_perfect_user', |
| | | res |
| | | .code |
| | | ) |
| | | } |
| | | }, |
| | | fail: res => { |
| | | this.$util |
| | | .showToast({ |
| | | title: "接口错误" |
| | | }); |
| | | } |
| | | }); |
| | | // this.$store.dispatch('getCartNumber'); |
| | | setTimeout(() => { |
| | | this.$util.redirectTo( |
| | | '/pages/index/index', {}, |
| | | 'tabbar') |
| | | }, 1000) |
| | | } |
| | | }); |
| | | } else { |
| | | // uni.setStorageSync('wx_openid_set',1) |
| | | this.$refs.popup.open() |
| | | } |
| | | |
| | | |
| | | } |
| | | } |
| | | return |
| | | // if (data) { |
| | | // this.authLogin(data); |
| | | // } else { |
| | | // this.$refs.auth.close(); |
| | | // this.toLogin(); |
| | | // } |
| | | }); |
| | | } |
| | | } |
| | | }) |
| | | } else if (e.detail.errMsg == 'getUserInfo:ok') { |
| | | this.getCode(data => { |
| | | if (data.code == 1) { |
| | | uni.setStorageSync('authInfo', data.data) |
| | | if (!data.data.mobile) { |
| | | this.$refs.bindMobile.open() |
| | | } else { |
| | | if (data.data.wx_openid) { |
| | | this.$util.showToast({ |
| | | title: "登录成功", |
| | | icon: "success" |
| | | }) |
| | | uni.setStorage({ |
| | | key: 'uid', |
| | | data: data.data.id, |
| | | success: () => { |
| | | uni.removeStorageSync('wx_openid_set'); |
| | | uni.removeStorageSync('source_member'); |
| | | uni.removeStorageSync('authInfo'); |
| | | this.$api.temLogin({ |
| | | data: { |
| | | uid: data.data.id, |
| | | }, |
| | | success: res => { |
| | | if (res.code == 1) { |
| | | console.log(res) |
| | | uni.setStorageSync( |
| | | 'is_perfect_user', '1') |
| | | } else { |
| | | uni.setStorageSync( |
| | | 'is_perfect_user', res.code |
| | | ) |
| | | } |
| | | }, |
| | | fail: res => { |
| | | this.$util.showToast({ |
| | | title: "接口错误" |
| | | }); |
| | | } |
| | | }); |
| | | // this.$store.dispatch('getCartNumber'); |
| | | setTimeout(() => { |
| | | this.$util.redirectTo( |
| | | '/pages/index/index', {}, |
| | | 'tabbar') |
| | | }, 1000) |
| | | } |
| | | }); |
| | | } else { |
| | | // uni.setStorageSync('wx_openid_set',1) |
| | | this.$refs.popup.open() |
| | | } |
| | | |
| | | |
| | | } |
| | | } |
| | | }); |
| | | } |
| | | // #endif |
| | | // if (!uni.getStorageSync('wx_openid_set')) { |
| | | // // #ifdef MP-QQ || MP-BAIDU |
| | | // if (e.detail.errMsg == 'getUserInfo:ok') { |
| | | // this.getCode(data => { |
| | | // if (data) { |
| | | // this.authLogin(data); |
| | | // } else { |
| | | // this.$refs.auth.close(); |
| | | // this.toLogin(); |
| | | // } |
| | | // }); |
| | | // } |
| | | // // #endif |
| | | |
| | | // // #ifdef MP-WEIXIN |
| | | // if (this.canIUseGetUserProfile) { |
| | | // wx.getUserProfile({ |
| | | // desc: '获取用户个人信息', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写 |
| | | // success: (res) => { |
| | | // if (res.errMsg == 'getUserProfile:ok') { |
| | | |
| | | // // this.authInfo.nickName = res.userInfo.nickName; |
| | | // // this.authInfo.avatarUrl = res.userInfo.avatarUrl; |
| | | // // uni.setStorageSync('authInfo', this.authInfo) |
| | | |
| | | // this.getCode(data => { |
| | | // console.log(data) |
| | | // return |
| | | // if (data) { |
| | | // this.authLogin(data); |
| | | // } else { |
| | | // this.$refs.auth.close(); |
| | | // this.toLogin(); |
| | | // } |
| | | // }); |
| | | // } |
| | | // } |
| | | // }) |
| | | // } else if (e.detail.errMsg == 'getUserInfo:ok') { |
| | | // this.getCode(data => { |
| | | // if (data) { |
| | | // this.authLogin(data); |
| | | // } else { |
| | | // this.$refs.auth.close(); |
| | | // this.toLogin(); |
| | | // } |
| | | // }); |
| | | // } |
| | | // // #endif |
| | | |
| | | // // #ifndef MP |
| | | // this.$refs.auth.close(); |
| | | // this.toLogin(); |
| | | // // #endif |
| | | // } else { |
| | | // this.$refs.auth.close(); |
| | | // this.toLogin(); |
| | | // } |
| | | }, |
| | | } |
| | | } |
| | | </script> |
| | | |
| | | <style lang="scss" scoped> |
| | | .wrap { |
| | | background: linear-gradient(to bottom, #B4DEFF, #ffffff); |
| | | display: flex; |
| | | align-items: center; |
| | | flex-direction: column; |
| | | padding: 0 80rpx; |
| | | height: 100vh; |
| | | |
| | | .login_tip { |
| | | font-size: 28rpx; |
| | | color: #333; |
| | | padding: 40rpx 0; |
| | | width: 400rpx; |
| | | text-align: center; |
| | | } |
| | | |
| | | .tip_img { |
| | | width: 160rpx; |
| | | margin-top: 300rpx; |
| | | } |
| | | |
| | | .login_btn { |
| | | width: 100%; |
| | | |
| | | .regisiter-agreement { |
| | | text-align: center; |
| | | margin-top: 30rpx; |
| | | font-size: 28rpx; |
| | | color: #838383; |
| | | line-height: 60rpx; |
| | | |
| | | .color-base-text { |
| | | color: #35A6FF; |
| | | } |
| | | } |
| | | |
| | | .uni-tip-button { |
| | | width: 100%; |
| | | font-size: 28rpx; |
| | | height: 70rpx; |
| | | line-height: 70rpx; |
| | | background-color: #35A6FF; |
| | | border-radius: 70rpx; |
| | | } |
| | | |
| | | .no_login { |
| | | font-size: 28rpx; |
| | | height: 70rpx; |
| | | line-height: 70rpx; |
| | | border: 2rpx solid #35A6FF; |
| | | color: #35A6FF; |
| | | border-radius: 70rpx; |
| | | text-align: center; |
| | | margin-top: 30rpx; |
| | | } |
| | | } |
| | | |
| | | .mobile_login { |
| | | margin: 40rpx 0; |
| | | font-size: 32rpx; |
| | | color: #666; |
| | | line-height: 1; |
| | | } |
| | | |
| | | .agreement_wrap { |
| | | margin-top: 40rpx; |
| | | |
| | | .agree_item { |
| | | display: flex; |
| | | margin-bottom: 30rpx; |
| | | |
| | | .item_icon { |
| | | width: 34rpx; |
| | | height: 34rpx; |
| | | margin-right: 10rpx; |
| | | flex-shrink: 0; |
| | | |
| | | .item_select_img { |
| | | width: 100%; |
| | | height: 100%; |
| | | } |
| | | } |
| | | |
| | | .item_content { |
| | | font-size: 28rpx; |
| | | line-height: 36rpx; |
| | | color: #999; |
| | | |
| | | .agreement { |
| | | color: #35A6FF; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | .bind-wrap { |
| | | width: 600rpx; |
| | | background: #fff; |
| | | box-sizing: border-box; |
| | | border-radius: 20rpx; |
| | | overflow: hidden; |
| | | |
| | | .heard { |
| | | font-size: 40rpx; |
| | | text-align: center; |
| | | font-weight: 600; |
| | | padding: 40rpx 0 0; |
| | | } |
| | | |
| | | .footer { |
| | | border-top: 1px solid #eee; |
| | | display: flex; |
| | | |
| | | view { |
| | | flex: 1; |
| | | height: 100rpx; |
| | | line-height: 100rpx; |
| | | text-align: center; |
| | | |
| | | &:first-child { |
| | | font-size: 28rpx; |
| | | border-right: 1px solid #eee; |
| | | } |
| | | } |
| | | } |
| | | |
| | | .bind-tips { |
| | | color: #aaa; |
| | | font-size: 28rpx; |
| | | padding: 20rpx 50rpx; |
| | | text-align: center; |
| | | } |
| | | |
| | | .auth-login { |
| | | width: 300rpx; |
| | | margin: 20rpx auto 60rpx auto; |
| | | } |
| | | |
| | | .bind-tip-icon { |
| | | padding-top: 80rpx; |
| | | width: 100%; |
| | | text-align: center; |
| | | |
| | | image { |
| | | width: 300rpx; |
| | | } |
| | | } |
| | | } |
| | | |
| | | .ns-btn-default-all { |
| | | width: 100%; |
| | | height: 70rpx; |
| | | border-radius: 70rpx; |
| | | text-align: center; |
| | | line-height: 70rpx; |
| | | font-size: 28rpx; |
| | | color: #ffffff; |
| | | background-color: #35A6FF; |
| | | } |
| | | </style> |
| New file |
| | |
| | | <template> |
| | | <view class="full-page"> |
| | | <view class="content"> |
| | | <up-form labelPosition="left" :model="model1" :rules="rules" ref="form1" labelWidth='90'> |
| | | <up-form-item label="身份证正面" prop="userInfo.sex" required borderBottom @click="showSex = true; hideKeyboard()" |
| | | ref="item1"> |
| | | <tem-upload src="/static/positive.png" /> |
| | | <!-- <template #right> |
| | | <up-icon name="arrow-right"></up-icon> |
| | | </template> --> |
| | | </up-form-item> |
| | | <up-form-item label="身份证反面" prop="userInfo.sex" required borderBottom @click="showSex = true; hideKeyboard()" |
| | | ref="item1"> |
| | | <tem-upload src="/static/negative.png"/> |
| | | |
| | | </up-form-item> |
| | | <up-form-item label="姓名" required prop="userInfo.name" borderBottom ref="item1"> |
| | | <up-input v-model="state.model1.userInfo.name" border="none" placeholder="请输入姓名"></up-input> |
| | | </up-form-item> |
| | | <up-form-item label="联系电话" required prop="userInfo.name" borderBottom ref="item1"> |
| | | <up-input v-model="state.model1.userInfo.name" border="none" placeholder="请输入联系电话"></up-input> |
| | | </up-form-item> |
| | | <up-form-item label="身份证号" required prop="userInfo.name" borderBottom ref="item1"> |
| | | <up-input v-model="state.model1.userInfo.name" border="none" placeholder="请输入身份证号"></up-input> |
| | | </up-form-item> |
| | | <up-form-item label="简历描述" required prop="userInfo.name" borderBottom ref="item1"> |
| | | <up-textarea v-model="state.model1.userInfo.name" placeholder="请输入简历描述" ></up-textarea> |
| | | </up-form-item> |
| | | <view class="tabbtns"> |
| | | <up-button color='#fece01' class="text-69" text="保存"></up-button> |
| | | </view> |
| | | </up-form> |
| | | </view> |
| | | |
| | | </view> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { |
| | | ref, |
| | | reactive |
| | | } from 'vue'; |
| | | |
| | | // 使用 reactive 创建响应式状态 |
| | | const state = reactive({ |
| | | showSex: false, |
| | | model1: { |
| | | userInfo: { |
| | | name: '', |
| | | sex: '', |
| | | }, |
| | | }, |
| | | actions: [{ |
| | | name: '男' |
| | | }, |
| | | { |
| | | name: '女' |
| | | }, |
| | | { |
| | | name: '保密' |
| | | }, |
| | | ], |
| | | |
| | | radio: '', |
| | | switchVal: false, |
| | | }); |
| | | |
| | | // 使用 ref 创建响应式引用 |
| | | const formRef = ref(null); |
| | | |
| | | // 定义方法 |
| | | function sexSelect(e) { |
| | | state.model1.userInfo.sex = e.name; |
| | | if (formRef.value) { |
| | | formRef.value.validateField('userInfo.sex'); |
| | | } |
| | | } |
| | | </script> |
| | | |
| | | <style> |
| | | .content{ |
| | | background-color: #fff; |
| | | padding: 0 20rpx; |
| | | } |
| | | </style> |
| | |
| | | 职位管理 |
| | | </view> |
| | | </view> |
| | | <view class="tool_item" @click="toPage('/otherPages/member/sendCompany/sendCompany')"> |
| | | <view class="tool_item" @click="toEnterprise"> |
| | | <image src="@/static/image/qiye.png" mode="aspectFit" class="item_img"></image> |
| | | <view class="tool_label"> |
| | | 我的企业 |
| | |
| | | url: '/pages/release/index' |
| | | }) |
| | | }, |
| | | toEnterprise(){ |
| | | uni.navigateTo({ |
| | | url: '/pages/enterprise/index' |
| | | }) |
| | | }, |
| | | checkToken: function(t) {}, |
| | | |
| | | loginOutInit: function() {}, |
| New file |
| | |
| | | <template> |
| | | <view class=""> |
| | | <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> |
| | | <view class="fui-list__item"> |
| | | <text>姓名</text> |
| | | <text class="fui-text__explain">李丽</text> |
| | | </view> |
| | | </fui-list-cell> |
| | | <fui-list-cell arrow> |
| | | <view class="fui-list__item"> |
| | | <text>手机号</text> |
| | | <text class="fui-text__explain">13215465785</text> |
| | | </view> |
| | | </fui-list-cell> |
| | | <fui-list-cell arrow @click="goApply"> |
| | | <text>申请接单</text> |
| | | </fui-list-cell> |
| | | </fui-list> |
| | | </view> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import {ref} from 'vue'; |
| | | // let src = "http://pic2.sc.chinaz.com/Files/pic/pic9/202002/hpic2119_s.jpg" |
| | | const goApply = ()=>{ |
| | | uni.navigateTo({ |
| | | url: '/pages/mine/apply' |
| | | }); |
| | | } |
| | | </script> |
| | | |
| | | <style> |
| | | .content { |
| | | height: 300rpx; |
| | | background-color: #d8d8d8; |
| | | } |
| | | |
| | | .fui-list__item { |
| | | flex: 1; |
| | | width: 100%; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: space-between; |
| | | } |
| | | |
| | | .fui-text__explain { |
| | | font-size: 28rpx; |
| | | color: #7F7F7F; |
| | | flex-shrink: 0; |
| | | } |
| | | </style> |
| | |
| | | <template> |
| | | <view> |
| | | <up-sticky bgColor="#fff"> |
| | | <up-tabs :list="list1" @change='change' :current='state.currentIdex'></up-tabs> |
| | | <up-subsection :list="list" v-if="state.currentIdex==0" :current="current4" activeColor="#f9ae3d" |
| | | <up-subsection :list="list" :current="current4" activeColor="#f9ae3d" |
| | | @change="sectionChange"></up-subsection> |
| | | <up-subsection :list="list2" v-else :current="current4" activeColor="#f9ae3d" |
| | | @change="sectionChange"></up-subsection> |
| | | |
| | | </up-sticky> |
| | | <up-empty mode="order" icon="http://cdn.uviewui.com/uview/empty/order.png"> |
| | | </up-empty> |
| | |
| | | .chuany-text-black, .line-black, .lines-black { color: #333333; } |
| | | .chuany-text-white, .line-white, .lines-white { color: #ffffff; } |
| | | .text-7f{ color: #7f7f7f; } |
| | | .text-69{ color: #696969; } |
| | | .text-69{ color: #696969 !important; } |
| | | /*背景颜色*/ |
| | | .coreshop-bg-red { background-color: #e54d42; color: #ffffff; } |
| | | .coreshop-bg-orange { background-color: #f37b1d; color: #ffffff; } |
| | |
| | | const store = createStore({ |
| | | // 为了不和页面或组件的data中的造成混淆,state中的变量前面建议加上$符号 |
| | | state: { |
| | | // 用户信息 |
| | | $userInfo: { |
| | | id: 1 |
| | | config: { |
| | | shopLogo:"/static/images/logo/logo.png" |
| | | }, // 店铺配置信息 //添加一个前端项目中的图片地址 |
| | | orderTab: 0, // 选中的订单tab页 |
| | | scene: 0, // 选中的订单tab页 |
| | | redirectPage: '', |
| | | uuid: '',//当前客户端 |
| | | searchStyle: '', |
| | | sessionAuthId: '', //微信缓存授权信息 |
| | | searchFixed: false,//搜索框样式 |
| | | showLoginTip:false,//显示登录框 |
| | | hasLogin: false,//存储用户当前是否登录,作为切换特效使用 |
| | | userShip: {}, //地区信息 |
| | | userInfo: {}, //用户信息存储 |
| | | invoice: {}, //发票信息 |
| | | deliveryData: {},//派送订单详情 |
| | | }, |
| | | mutations: { |
| | | config(state, payload) { |
| | | state.config = payload |
| | | }, |
| | | orderTab(state, tab) { |
| | | state.orderTab = tab |
| | | }, |
| | | scene(state, tab) { |
| | | state.scene = tab |
| | | }, |
| | | redirect(state, payload) { |
| | | state.redirectPage = payload.page |
| | | }, |
| | | searchStyle(state, style) { |
| | | state.searchStyle = style |
| | | }, |
| | | sessionAuthId(state, payload) { |
| | | state.sessionAuthId = payload |
| | | }, |
| | | searchFixed(state, payload) { |
| | | state.searchFixed = payload |
| | | }, |
| | | showLoginTip(state, payload) { |
| | | state.showLoginTip = payload |
| | | }, |
| | | hasLogin(state, payload) { |
| | | state.hasLogin = payload |
| | | }, |
| | | userShip(state, userShip) { |
| | | state.userShip = userShip |
| | | }, |
| | | userInfo(state, userInfo) { |
| | | state.userInfo = userInfo |
| | | }, |
| | | invoice(state, invoice) { |
| | | state.invoice = invoice |
| | | }, |
| | | deliveryData(state,data){ |
| | | state.deliveryData = data |
| | | } |
| | | }, |
| | | actions: { |
| | | |
| | | }, |
| | | getters: { |
| | | shopConfig: state => state.config, |
| | | scene: state => state.scene, |
| | | userInfo: state => state.userInfo, |
| | | uuid: state => state.uuid, |
| | | hasLogin: state => state.hasLogin, |
| | | sessionAuthId: state => state.sessionAuthId, |
| | | deliveryData: state => state.deliveryData |
| | | } |
| | | }) |
| | | |
| | | export default store |
| | | |
| | |
| | | </script> |
| | | <script> |
| | | /*<!--*/ |
| | | const data = {"version":2,"tree":{"name":"root","children":[{"name":"app.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src","children":[{"uid":"c90d7c0b-1","name":"pages-json-js"},{"uid":"c90d7c0b-3","name":"App.vue?vue&type=style&index=0&lang.scss"},{"uid":"c90d7c0b-5","name":"App.vue"},{"uid":"c90d7c0b-7","name":"main.ts"}]}]},{"name":"common/assets.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/static","children":[{"name":"image","children":[{"uid":"c90d7c0b-9","name":"fabu.png"},{"uid":"c90d7c0b-11","name":"guanli.png"},{"uid":"c90d7c0b-13","name":"qiye.png"},{"uid":"c90d7c0b-15","name":"server.png"},{"uid":"c90d7c0b-19","name":"dingwei.png"},{"uid":"c90d7c0b-21","name":"fabuding.png"}]},{"uid":"c90d7c0b-17","name":"logo.png"}]}]},{"name":"common/config.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/config.js","uid":"c90d7c0b-23"}]},{"name":"common/locales/en.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","uid":"c90d7c0b-25"}]},{"name":"common/locales/zh.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","uid":"c90d7c0b-27"}]},{"name":"common/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","uid":"c90d7c0b-29"}]},{"name":"common/vendor.js","children":[{"name":"node_modules","children":[{"name":"@vue/shared/dist/shared.esm-bundler.js","uid":"c90d7c0b-31"},{"name":"@dcloudio","children":[{"name":"uni-i18n/dist/uni-i18n.es.js","uid":"c90d7c0b-33"},{"name":"uni-shared/dist/uni-shared.es.js","uid":"c90d7c0b-35"}]},{"name":"vuex/dist/vuex.esm-bundler.js","uid":"c90d7c0b-45"}]},{"name":"D:/zcweb/uniapp/temporaryworker/node_modules","children":[{"name":"@dcloudio","children":[{"name":"uni-mp-weixin/dist","children":[{"uid":"c90d7c0b-37","name":"uni.api.esm.js"},{"uid":"c90d7c0b-43","name":"uni.mp.esm.js"}]},{"name":"uni-mp-vue/dist/vue.runtime.esm.js","uid":"c90d7c0b-41"},{"name":"uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","uid":"c90d7c0b-61"}]},{"name":"@intlify","children":[{"name":"shared/dist/shared.esm-bundler.js","uid":"c90d7c0b-47"},{"name":"message-resolver/dist/message-resolver.esm-bundler.js","uid":"c90d7c0b-49"},{"name":"runtime/dist/runtime.esm-bundler.js","uid":"c90d7c0b-51"},{"name":"message-compiler/dist/message-compiler.esm-bundler.js","uid":"c90d7c0b-53"},{"name":"devtools-if/dist/devtools-if.esm-bundler.js","uid":"c90d7c0b-55"},{"name":"core-base/dist/core-base.esm-bundler.js","uid":"c90d7c0b-57"},{"name":"vue-devtools/dist/vue-devtools.esm-bundler.js","uid":"c90d7c0b-59"}]}]},{"uid":"c90d7c0b-39","name":"\u0000plugin-vue:export-helper"}]},{"name":"components/firstui/fui-fab/bindingx.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/bindingx.js","uid":"c90d7c0b-63"}]},{"name":"components/firstui/fui-fab/mpjs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/mpjs.js","uid":"c90d7c0b-65"}]},{"name":"store/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","uid":"c90d7c0b-67"}]},{"name":"uni_modules/uview-plus/components/u-badge/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-badge/props.js","uid":"c90d7c0b-69"}]},{"name":"uni_modules/uview-plus/libs/vue.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","uid":"c90d7c0b-71"}]},{"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":"c90d7c0b-73"}]},{"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":"c90d7c0b-75"}]},{"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":"c90d7c0b-77"}]},{"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":"c90d7c0b-79"}]},{"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":"c90d7c0b-81"}]},{"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":"c90d7c0b-83"}]},{"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":"c90d7c0b-85"}]},{"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":"c90d7c0b-87"}]},{"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":"c90d7c0b-89"}]},{"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":"c90d7c0b-91"}]},{"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":"c90d7c0b-93"}]},{"name":"uni_modules/uview-plus/components/u-overlay/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay/props.js","uid":"c90d7c0b-95"}]},{"name":"uni_modules/uview-plus/components/u-popup/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup/props.js","uid":"c90d7c0b-97"}]},{"name":"uni_modules/uview-plus/components/u-safe-bottom/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom/props.js","uid":"c90d7c0b-99"}]},{"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":"c90d7c0b-101"}]},{"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":"c90d7c0b-103"}]},{"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":"c90d7c0b-105"}]},{"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":"c90d7c0b-107"}]},{"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":"c90d7c0b-109"}]},{"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":"c90d7c0b-111"}]},{"name":"uni_modules/uview-plus/components/u-status-bar/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar/props.js","uid":"c90d7c0b-113"}]},{"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":"c90d7c0b-115"}]},{"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":"c90d7c0b-117"}]},{"name":"uni_modules/uview-plus/components/u-tabs/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tabs/props.js","uid":"c90d7c0b-119"}]},{"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":"c90d7c0b-121"}]},{"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":"c90d7c0b-123"}]},{"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":"c90d7c0b-125"}]},{"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":"c90d7c0b-127"}]},{"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":"c90d7c0b-129"}]},{"name":"uni_modules/uview-plus/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","uid":"c90d7c0b-131"}]},{"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":"c90d7c0b-133"}]},{"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":"c90d7c0b-135"}]},{"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":"c90d7c0b-137"}]},{"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":"c90d7c0b-139"}]},{"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":"c90d7c0b-141"}]},{"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":"c90d7c0b-143"}]},{"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":"c90d7c0b-145"}]},{"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":"c90d7c0b-147"}]},{"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":"c90d7c0b-149"}]},{"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":"c90d7c0b-151"}]},{"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":"c90d7c0b-153"}]},{"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":"c90d7c0b-155"}]},{"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":"c90d7c0b-157"}]},{"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":"c90d7c0b-159"}]},{"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":"c90d7c0b-161"}]},{"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":"c90d7c0b-163"}]},{"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":"c90d7c0b-165"}]},{"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":"c90d7c0b-167"}]},{"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":"c90d7c0b-169"}]},{"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":"c90d7c0b-171"}]},{"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":"c90d7c0b-173"}]},{"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":"c90d7c0b-175"}]},{"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":"c90d7c0b-177"}]},{"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":"c90d7c0b-179"}]},{"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":"c90d7c0b-181"}]},{"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":"c90d7c0b-183"}]},{"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":"c90d7c0b-185"}]},{"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":"c90d7c0b-187"}]},{"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":"c90d7c0b-189"}]},{"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":"c90d7c0b-191"}]},{"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":"c90d7c0b-193"}]},{"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":"c90d7c0b-195"}]},{"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":"c90d7c0b-197"}]},{"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":"c90d7c0b-199"}]},{"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":"c90d7c0b-201"}]},{"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":"c90d7c0b-203"}]},{"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":"c90d7c0b-205"}]},{"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":"c90d7c0b-207"}]},{"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":"c90d7c0b-209"}]},{"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":"c90d7c0b-211"}]},{"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":"c90d7c0b-213"}]},{"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":"c90d7c0b-215"}]},{"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":"c90d7c0b-217"}]},{"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":"c90d7c0b-219"}]},{"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":"c90d7c0b-221"}]},{"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":"c90d7c0b-223"}]},{"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":"c90d7c0b-225"}]},{"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":"c90d7c0b-227"}]},{"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":"c90d7c0b-229"}]},{"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":"c90d7c0b-231"}]},{"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":"c90d7c0b-233"}]},{"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":"c90d7c0b-235"}]},{"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":"c90d7c0b-237"}]},{"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":"c90d7c0b-239"}]},{"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":"c90d7c0b-241"}]},{"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":"c90d7c0b-243"}]},{"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":"c90d7c0b-245"}]},{"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":"c90d7c0b-247"}]},{"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":"c90d7c0b-249"}]},{"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":"c90d7c0b-251"}]},{"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":"c90d7c0b-253"}]},{"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":"c90d7c0b-255"}]},{"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":"c90d7c0b-257"}]},{"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":"c90d7c0b-259"}]},{"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":"c90d7c0b-261"}]},{"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":"c90d7c0b-263"}]},{"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":"c90d7c0b-265"}]},{"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":"c90d7c0b-267"}]},{"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":"c90d7c0b-269"}]},{"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":"c90d7c0b-271"}]},{"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":"c90d7c0b-273"}]},{"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":"c90d7c0b-275"}]},{"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":"c90d7c0b-277"}]},{"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":"c90d7c0b-279"}]},{"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":"c90d7c0b-281"}]},{"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":"c90d7c0b-283"}]},{"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":"c90d7c0b-285"}]},{"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":"c90d7c0b-287"}]},{"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":"c90d7c0b-289"}]},{"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":"c90d7c0b-291"}]},{"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":"c90d7c0b-293"}]},{"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":"c90d7c0b-295"}]},{"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":"c90d7c0b-297"}]},{"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":"c90d7c0b-299"}]},{"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":"c90d7c0b-301"}]},{"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":"c90d7c0b-303"}]},{"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":"c90d7c0b-305"}]},{"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":"c90d7c0b-307"}]},{"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":"c90d7c0b-309"}]},{"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":"c90d7c0b-311"}]},{"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":"c90d7c0b-313"}]},{"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":"c90d7c0b-315"}]},{"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":"c90d7c0b-317"}]},{"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":"c90d7c0b-319"}]},{"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":"c90d7c0b-321"}]},{"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":"c90d7c0b-323"}]},{"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":"c90d7c0b-325"}]},{"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":"c90d7c0b-327"}]},{"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":"c90d7c0b-329"}]},{"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":"c90d7c0b-331"}]},{"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":"c90d7c0b-333"}]},{"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":"c90d7c0b-335"}]},{"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":"c90d7c0b-337"}]},{"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":"c90d7c0b-339"}]},{"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":"c90d7c0b-341"}]},{"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":"c90d7c0b-343"}]},{"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":"c90d7c0b-345"}]},{"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":"c90d7c0b-347"}]},{"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":"c90d7c0b-349"}]},{"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":"c90d7c0b-351"}]},{"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":"c90d7c0b-353"}]},{"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":"c90d7c0b-355"}]},{"name":"util/request/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/util/request/index.js","uid":"c90d7c0b-357"}]},{"name":"util/request/interceptors.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/util/request/interceptors.js","uid":"c90d7c0b-359"}]},{"name":"pages/default/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/default","children":[{"uid":"c90d7c0b-361","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"c90d7c0b-363","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","uid":"c90d7c0b-365"}]},{"name":"pages/index/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/index","children":[{"uid":"c90d7c0b-367","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"c90d7c0b-369","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvaW5kZXgvaW5kZXgudnVl","uid":"c90d7c0b-371"}]},{"name":"pages/mine/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"c90d7c0b-373","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"c90d7c0b-375","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9pbmRleC52dWU","uid":"c90d7c0b-377"}]},{"name":"pages/login/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/login","children":[{"uid":"c90d7c0b-379","name":"index.vue?vue&type=style&index=0&scoped=45258083&lang.scss"},{"uid":"c90d7c0b-381","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbG9naW4vaW5kZXgudnVl","uid":"c90d7c0b-383"}]},{"name":"pages/detail/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/detail","children":[{"uid":"c90d7c0b-385","name":"detail.vue?vue&type=style&index=0&lang.css"},{"uid":"c90d7c0b-387","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXMvZGV0YWlsL2RldGFpbC52dWU","uid":"c90d7c0b-389"}]},{"name":"pages/order/order.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue","uid":"c90d7c0b-391"},{"name":"uniPage:/cGFnZXMvb3JkZXIvb3JkZXIudnVl","uid":"c90d7c0b-393"}]},{"name":"pages/release/release.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/release/release.vue","uid":"c90d7c0b-395"},{"name":"uniPage:/cGFnZXMvcmVsZWFzZS9yZWxlYXNlLnZ1ZQ","uid":"c90d7c0b-397"}]},{"name":"pages/release/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/release","children":[{"uid":"c90d7c0b-399","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"c90d7c0b-401","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","uid":"c90d7c0b-403"}]},{"name":"pages/wallet/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet","children":[{"uid":"c90d7c0b-405","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"c90d7c0b-407","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","uid":"c90d7c0b-409"}]},{"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":"c90d7c0b-411","name":"u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss"},{"uid":"c90d7c0b-413","name":"u-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","uid":"c90d7c0b-415"}]},{"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":"c90d7c0b-417","name":"u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss"},{"uid":"c90d7c0b-419","name":"u-tag.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","uid":"c90d7c0b-421"}]},{"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":"c90d7c0b-423","name":"u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss"},{"uid":"c90d7c0b-425","name":"u-empty.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","uid":"c90d7c0b-427"}]},{"name":"uni_modules/uview-plus/components/u-popup/u-popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup","children":[{"uid":"c90d7c0b-429","name":"u-popup.vue?vue&type=style&index=0&scoped=d4197e14&lang.scss"},{"uid":"c90d7c0b-431","name":"u-popup.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtcG9wdXAvdS1wb3B1cC52dWU","uid":"c90d7c0b-433"}]},{"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":"c90d7c0b-435","name":"u-button.vue?vue&type=script&lang.ts"},{"uid":"c90d7c0b-437","name":"u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss"},{"uid":"c90d7c0b-439","name":"u-button.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","uid":"c90d7c0b-441"}]},{"name":"uni_modules/uview-plus/components/u-tabs/u-tabs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tabs","children":[{"uid":"c90d7c0b-443","name":"u-tabs.vue?vue&type=style&index=0&scoped=fd6f7fdc&lang.scss"},{"uid":"c90d7c0b-445","name":"u-tabs.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFicy91LXRhYnMudnVl","uid":"c90d7c0b-447"}]},{"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":"c90d7c0b-449","name":"u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss"},{"uid":"c90d7c0b-451","name":"u-subsection.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","uid":"c90d7c0b-453"}]},{"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":"c90d7c0b-455","name":"u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss"},{"uid":"c90d7c0b-457","name":"u-sticky.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","uid":"c90d7c0b-459"}]},{"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":"c90d7c0b-461","name":"u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss"},{"uid":"c90d7c0b-463","name":"u-input.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","uid":"c90d7c0b-465"}]},{"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":"c90d7c0b-467","name":"u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss"},{"uid":"c90d7c0b-469","name":"u-form-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","uid":"c90d7c0b-471"}]},{"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":"c90d7c0b-473","name":"u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss"},{"uid":"c90d7c0b-475","name":"u-number-box.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","uid":"c90d7c0b-477"}]},{"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":"c90d7c0b-479","name":"u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss"},{"uid":"c90d7c0b-481","name":"u-textarea.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","uid":"c90d7c0b-483"}]},{"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":"c90d7c0b-485"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","uid":"c90d7c0b-487"}]},{"name":"components/firstui/fui-icon/fui-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon","children":[{"uid":"c90d7c0b-489","name":"fui-icon.js"},{"uid":"c90d7c0b-491","name":"fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css"},{"uid":"c90d7c0b-493","name":"fui-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","uid":"c90d7c0b-495"}]},{"name":"components/firstui/fui-fab/fui-fab.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab","children":[{"uid":"c90d7c0b-497","name":"fui-fab.vue?vue&type=style&index=0&scoped=2c25f223&lang.css"},{"uid":"c90d7c0b-499","name":"index.wxs?vue&type=wxs&index=0&src=true&name=handler&lang.wxs"},{"uid":"c90d7c0b-501","name":"fui-fab.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1mYWIvZnVpLWZhYi52dWU","uid":"c90d7c0b-503"}]},{"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":"c90d7c0b-505","name":"u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss"},{"uid":"c90d7c0b-507","name":"u-transition.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","uid":"c90d7c0b-509"}]},{"name":"uni_modules/uview-plus/components/u-overlay/u-overlay.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay","children":[{"uid":"c90d7c0b-511","name":"u-overlay.vue?vue&type=style&index=0&scoped=64260431&lang.scss"},{"uid":"c90d7c0b-513","name":"u-overlay.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utb3ZlcmxheS91LW92ZXJsYXkudnVl","uid":"c90d7c0b-515"}]},{"name":"uni_modules/uview-plus/components/u-status-bar/u-status-bar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar","children":[{"uid":"c90d7c0b-517","name":"u-status-bar.vue?vue&type=style&index=0&scoped=96630e2e&lang.scss"},{"uid":"c90d7c0b-519","name":"u-status-bar.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RhdHVzLWJhci91LXN0YXR1cy1iYXIudnVl","uid":"c90d7c0b-521"}]},{"name":"uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom","children":[{"uid":"c90d7c0b-523","name":"u-safe-bottom.vue?vue&type=style&index=0&scoped=3a3efedd&lang.scss"},{"uid":"c90d7c0b-525","name":"u-safe-bottom.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2FmZS1ib3R0b20vdS1zYWZlLWJvdHRvbS52dWU","uid":"c90d7c0b-527"}]},{"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":"c90d7c0b-529","name":"u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss"},{"uid":"c90d7c0b-531","name":"u-loading-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","uid":"c90d7c0b-533"}]},{"name":"uni_modules/uview-plus/components/u-badge/u-badge.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-badge","children":[{"uid":"c90d7c0b-535","name":"u-badge.vue?vue&type=style&index=0&scoped=01255db2&lang.scss"},{"uid":"c90d7c0b-537","name":"u-badge.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYmFkZ2UvdS1iYWRnZS52dWU","uid":"c90d7c0b-539"}]},{"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":"c90d7c0b-541","name":"u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss"},{"uid":"c90d7c0b-543","name":"u-line.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","uid":"c90d7c0b-545"}]}],"isRoot":true},"nodeParts":{"c90d7c0b-1":{"renderedLength":274,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-0"},"c90d7c0b-3":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-2"},"c90d7c0b-5":{"renderedLength":394,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-4"},"c90d7c0b-7":{"renderedLength":1007,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-6"},"c90d7c0b-9":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-8"},"c90d7c0b-11":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-10"},"c90d7c0b-13":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-12"},"c90d7c0b-15":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-14"},"c90d7c0b-17":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-16"},"c90d7c0b-19":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-18"},"c90d7c0b-21":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-20"},"c90d7c0b-23":{"renderedLength":65,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-22"},"c90d7c0b-25":{"renderedLength":957,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-24"},"c90d7c0b-27":{"renderedLength":721,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-26"},"c90d7c0b-29":{"renderedLength":82,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-28"},"c90d7c0b-31":{"renderedLength":5863,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-30"},"c90d7c0b-33":{"renderedLength":982,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-32"},"c90d7c0b-35":{"renderedLength":6055,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-34"},"c90d7c0b-37":{"renderedLength":32356,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-36"},"c90d7c0b-39":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-38"},"c90d7c0b-41":{"renderedLength":150700,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-40"},"c90d7c0b-43":{"renderedLength":23003,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-42"},"c90d7c0b-45":{"renderedLength":20242,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-44"},"c90d7c0b-47":{"renderedLength":4688,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-46"},"c90d7c0b-49":{"renderedLength":6952,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-48"},"c90d7c0b-51":{"renderedLength":3962,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-50"},"c90d7c0b-53":{"renderedLength":1681,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-52"},"c90d7c0b-55":{"renderedLength":214,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-54"},"c90d7c0b-57":{"renderedLength":24721,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-56"},"c90d7c0b-59":{"renderedLength":562,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-58"},"c90d7c0b-61":{"renderedLength":54238,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-60"},"c90d7c0b-63":{"renderedLength":408,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-62"},"c90d7c0b-65":{"renderedLength":356,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-64"},"c90d7c0b-67":{"renderedLength":213,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-66"},"c90d7c0b-69":{"renderedLength":3134,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-68"},"c90d7c0b-71":{"renderedLength":54,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-70"},"c90d7c0b-73":{"renderedLength":5935,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-72"},"c90d7c0b-75":{"renderedLength":6727,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-74"},"c90d7c0b-77":{"renderedLength":2129,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-76"},"c90d7c0b-79":{"renderedLength":2026,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-78"},"c90d7c0b-81":{"renderedLength":1754,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-80"},"c90d7c0b-83":{"renderedLength":7521,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-82"},"c90d7c0b-85":{"renderedLength":3376,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-84"},"c90d7c0b-87":{"renderedLength":7077,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-86"},"c90d7c0b-89":{"renderedLength":1312,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-88"},"c90d7c0b-91":{"renderedLength":2256,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-90"},"c90d7c0b-93":{"renderedLength":4420,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-92"},"c90d7c0b-95":{"renderedLength":857,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-94"},"c90d7c0b-97":{"renderedLength":3187,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-96"},"c90d7c0b-99":{"renderedLength":81,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-98"},"c90d7c0b-101":{"renderedLength":873,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-100"},"c90d7c0b-103":{"renderedLength":1010,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-102"},"c90d7c0b-105":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-104"},"c90d7c0b-107":{"renderedLength":581,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-106"},"c90d7c0b-109":{"renderedLength":702,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-108"},"c90d7c0b-111":{"renderedLength":734,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-110"},"c90d7c0b-113":{"renderedLength":230,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-112"},"c90d7c0b-115":{"renderedLength":1300,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-114"},"c90d7c0b-117":{"renderedLength":1799,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-116"},"c90d7c0b-119":{"renderedLength":2359,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-118"},"c90d7c0b-121":{"renderedLength":3233,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-120"},"c90d7c0b-123":{"renderedLength":4447,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-122"},"c90d7c0b-125":{"renderedLength":845,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-124"},"c90d7c0b-127":{"renderedLength":3135,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-126"},"c90d7c0b-129":{"renderedLength":13491,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-128"},"c90d7c0b-131":{"renderedLength":2717,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-130"},"c90d7c0b-133":{"renderedLength":7509,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-132"},"c90d7c0b-135":{"renderedLength":221,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-134"},"c90d7c0b-137":{"renderedLength":5812,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-136"},"c90d7c0b-139":{"renderedLength":4675,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-138"},"c90d7c0b-141":{"renderedLength":4601,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-140"},"c90d7c0b-143":{"renderedLength":6180,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-142"},"c90d7c0b-145":{"renderedLength":948,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-144"},"c90d7c0b-147":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-146"},"c90d7c0b-149":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-148"},"c90d7c0b-151":{"renderedLength":488,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-150"},"c90d7c0b-153":{"renderedLength":358,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-152"},"c90d7c0b-155":{"renderedLength":622,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-154"},"c90d7c0b-157":{"renderedLength":615,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-156"},"c90d7c0b-159":{"renderedLength":487,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-158"},"c90d7c0b-161":{"renderedLength":619,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-160"},"c90d7c0b-163":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-162"},"c90d7c0b-165":{"renderedLength":585,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-164"},"c90d7c0b-167":{"renderedLength":594,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-166"},"c90d7c0b-169":{"renderedLength":995,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-168"},"c90d7c0b-171":{"renderedLength":1126,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-170"},"c90d7c0b-173":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-172"},"c90d7c0b-175":{"renderedLength":647,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-174"},"c90d7c0b-177":{"renderedLength":383,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-176"},"c90d7c0b-179":{"renderedLength":596,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-178"},"c90d7c0b-181":{"renderedLength":718,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-180"},"c90d7c0b-183":{"renderedLength":353,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-182"},"c90d7c0b-185":{"renderedLength":473,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-184"},"c90d7c0b-187":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-186"},"c90d7c0b-189":{"renderedLength":401,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-188"},"c90d7c0b-191":{"renderedLength":374,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-190"},"c90d7c0b-193":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-192"},"c90d7c0b-195":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-194"},"c90d7c0b-197":{"renderedLength":419,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-196"},"c90d7c0b-199":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-198"},"c90d7c0b-201":{"renderedLength":500,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-200"},"c90d7c0b-203":{"renderedLength":538,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-202"},"c90d7c0b-205":{"renderedLength":492,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-204"},"c90d7c0b-207":{"renderedLength":536,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-206"},"c90d7c0b-209":{"renderedLength":408,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-208"},"c90d7c0b-211":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-210"},"c90d7c0b-213":{"renderedLength":357,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-212"},"c90d7c0b-215":{"renderedLength":694,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-214"},"c90d7c0b-217":{"renderedLength":427,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-216"},"c90d7c0b-219":{"renderedLength":478,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-218"},"c90d7c0b-221":{"renderedLength":1016,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-220"},"c90d7c0b-223":{"renderedLength":720,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-222"},"c90d7c0b-225":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-224"},"c90d7c0b-227":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-226"},"c90d7c0b-229":{"renderedLength":666,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-228"},"c90d7c0b-231":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-230"},"c90d7c0b-233":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-232"},"c90d7c0b-235":{"renderedLength":786,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-234"},"c90d7c0b-237":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-236"},"c90d7c0b-239":{"renderedLength":28917,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-238"},"c90d7c0b-241":{"renderedLength":605,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-240"},"c90d7c0b-243":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-242"},"c90d7c0b-245":{"renderedLength":835,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-244"},"c90d7c0b-247":{"renderedLength":395,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-246"},"c90d7c0b-249":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-248"},"c90d7c0b-251":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-250"},"c90d7c0b-253":{"renderedLength":716,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-252"},"c90d7c0b-255":{"renderedLength":684,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-254"},"c90d7c0b-257":{"renderedLength":582,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-256"},"c90d7c0b-259":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-258"},"c90d7c0b-261":{"renderedLength":587,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-260"},"c90d7c0b-263":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-262"},"c90d7c0b-265":{"renderedLength":348,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-264"},"c90d7c0b-267":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-266"},"c90d7c0b-269":{"renderedLength":494,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-268"},"c90d7c0b-271":{"renderedLength":916,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-270"},"c90d7c0b-273":{"renderedLength":535,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-272"},"c90d7c0b-275":{"renderedLength":563,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-274"},"c90d7c0b-277":{"renderedLength":602,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-276"},"c90d7c0b-279":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-278"},"c90d7c0b-281":{"renderedLength":474,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-280"},"c90d7c0b-283":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-282"},"c90d7c0b-285":{"renderedLength":442,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-284"},"c90d7c0b-287":{"renderedLength":529,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-286"},"c90d7c0b-289":{"renderedLength":342,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-288"},"c90d7c0b-291":{"renderedLength":489,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-290"},"c90d7c0b-293":{"renderedLength":966,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-292"},"c90d7c0b-295":{"renderedLength":468,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-294"},"c90d7c0b-297":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-296"},"c90d7c0b-299":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-298"},"c90d7c0b-301":{"renderedLength":435,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-300"},"c90d7c0b-303":{"renderedLength":700,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-302"},"c90d7c0b-305":{"renderedLength":574,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-304"},"c90d7c0b-307":{"renderedLength":782,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-306"},"c90d7c0b-309":{"renderedLength":773,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-308"},"c90d7c0b-311":{"renderedLength":617,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-310"},"c90d7c0b-313":{"renderedLength":467,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-312"},"c90d7c0b-315":{"renderedLength":559,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-314"},"c90d7c0b-317":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-316"},"c90d7c0b-319":{"renderedLength":785,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-318"},"c90d7c0b-321":{"renderedLength":2672,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-320"},"c90d7c0b-323":{"renderedLength":2342,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-322"},"c90d7c0b-325":{"renderedLength":1984,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-324"},"c90d7c0b-327":{"renderedLength":692,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-326"},"c90d7c0b-329":{"renderedLength":528,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-328"},"c90d7c0b-331":{"renderedLength":3369,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-330"},"c90d7c0b-333":{"renderedLength":1199,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-332"},"c90d7c0b-335":{"renderedLength":106,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-334"},"c90d7c0b-337":{"renderedLength":2368,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-336"},"c90d7c0b-339":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-338"},"c90d7c0b-341":{"renderedLength":8405,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-340"},"c90d7c0b-343":{"renderedLength":545,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-342"},"c90d7c0b-345":{"renderedLength":366,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-344"},"c90d7c0b-347":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-346"},"c90d7c0b-349":{"renderedLength":364,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-348"},"c90d7c0b-351":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-350"},"c90d7c0b-353":{"renderedLength":706,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-352"},"c90d7c0b-355":{"renderedLength":27130,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-354"},"c90d7c0b-357":{"renderedLength":380,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-356"},"c90d7c0b-359":{"renderedLength":1491,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-358"},"c90d7c0b-361":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-360"},"c90d7c0b-363":{"renderedLength":1687,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-362"},"c90d7c0b-365":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-364"},"c90d7c0b-367":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-366"},"c90d7c0b-369":{"renderedLength":3279,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-368"},"c90d7c0b-371":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-370"},"c90d7c0b-373":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-372"},"c90d7c0b-375":{"renderedLength":7366,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-374"},"c90d7c0b-377":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-376"},"c90d7c0b-379":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-378"},"c90d7c0b-381":{"renderedLength":15505,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-380"},"c90d7c0b-383":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-382"},"c90d7c0b-385":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-384"},"c90d7c0b-387":{"renderedLength":1640,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-386"},"c90d7c0b-389":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-388"},"c90d7c0b-391":{"renderedLength":2734,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-390"},"c90d7c0b-393":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-392"},"c90d7c0b-395":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-394"},"c90d7c0b-397":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-396"},"c90d7c0b-399":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-398"},"c90d7c0b-401":{"renderedLength":7704,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-400"},"c90d7c0b-403":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-402"},"c90d7c0b-405":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-404"},"c90d7c0b-407":{"renderedLength":1441,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-406"},"c90d7c0b-409":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-408"},"c90d7c0b-411":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-410"},"c90d7c0b-413":{"renderedLength":6290,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-412"},"c90d7c0b-415":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-414"},"c90d7c0b-417":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-416"},"c90d7c0b-419":{"renderedLength":5580,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-418"},"c90d7c0b-421":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-420"},"c90d7c0b-423":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-422"},"c90d7c0b-425":{"renderedLength":4038,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-424"},"c90d7c0b-427":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-426"},"c90d7c0b-429":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-428"},"c90d7c0b-431":{"renderedLength":8931,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-430"},"c90d7c0b-433":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-432"},"c90d7c0b-435":{"renderedLength":3576,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-434"},"c90d7c0b-437":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-436"},"c90d7c0b-439":{"renderedLength":2670,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-438"},"c90d7c0b-441":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-440"},"c90d7c0b-443":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-442"},"c90d7c0b-445":{"renderedLength":10643,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-444"},"c90d7c0b-447":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-446"},"c90d7c0b-449":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-448"},"c90d7c0b-451":{"renderedLength":7128,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-450"},"c90d7c0b-453":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-452"},"c90d7c0b-455":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-454"},"c90d7c0b-457":{"renderedLength":6628,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-456"},"c90d7c0b-459":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-458"},"c90d7c0b-461":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-460"},"c90d7c0b-463":{"renderedLength":14113,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-462"},"c90d7c0b-465":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-464"},"c90d7c0b-467":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-466"},"c90d7c0b-469":{"renderedLength":5696,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-468"},"c90d7c0b-471":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-470"},"c90d7c0b-473":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-472"},"c90d7c0b-475":{"renderedLength":11970,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-474"},"c90d7c0b-477":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-476"},"c90d7c0b-479":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-478"},"c90d7c0b-481":{"renderedLength":9049,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-480"},"c90d7c0b-483":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-482"},"c90d7c0b-485":{"renderedLength":6533,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-484"},"c90d7c0b-487":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-486"},"c90d7c0b-489":{"renderedLength":4098,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-488"},"c90d7c0b-491":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-490"},"c90d7c0b-493":{"renderedLength":2806,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-492"},"c90d7c0b-495":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-494"},"c90d7c0b-497":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-496"},"c90d7c0b-499":{"renderedLength":18,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-498"},"c90d7c0b-501":{"renderedLength":8832,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-500"},"c90d7c0b-503":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-502"},"c90d7c0b-505":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-504"},"c90d7c0b-507":{"renderedLength":2815,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-506"},"c90d7c0b-509":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-508"},"c90d7c0b-511":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-510"},"c90d7c0b-513":{"renderedLength":2211,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-512"},"c90d7c0b-515":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-514"},"c90d7c0b-517":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-516"},"c90d7c0b-519":{"renderedLength":1555,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-518"},"c90d7c0b-521":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-520"},"c90d7c0b-523":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-522"},"c90d7c0b-525":{"renderedLength":1528,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-524"},"c90d7c0b-527":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-526"},"c90d7c0b-529":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-528"},"c90d7c0b-531":{"renderedLength":5260,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-530"},"c90d7c0b-533":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-532"},"c90d7c0b-535":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-534"},"c90d7c0b-537":{"renderedLength":4199,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-536"},"c90d7c0b-539":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-538"},"c90d7c0b-541":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-540"},"c90d7c0b-543":{"renderedLength":2603,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-542"},"c90d7c0b-545":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"c90d7c0b-544"}},"nodeMetas":{"c90d7c0b-0":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages-json-js","moduleParts":{"app.js":"c90d7c0b-1"},"imported":[{"uid":"c90d7c0b-546"},{"uid":"c90d7c0b-364","dynamic":true},{"uid":"c90d7c0b-370","dynamic":true},{"uid":"c90d7c0b-376","dynamic":true},{"uid":"c90d7c0b-382","dynamic":true},{"uid":"c90d7c0b-388","dynamic":true},{"uid":"c90d7c0b-392","dynamic":true},{"uid":"c90d7c0b-396","dynamic":true},{"uid":"c90d7c0b-402","dynamic":true},{"uid":"c90d7c0b-408","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-6"}]},"c90d7c0b-2":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue?vue&type=style&index=0&lang.scss","moduleParts":{"app.js":"c90d7c0b-3"},"imported":[],"importedBy":[{"uid":"c90d7c0b-4"}]},"c90d7c0b-4":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue","moduleParts":{"app.js":"c90d7c0b-5"},"imported":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-2"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-6"}]},"c90d7c0b-6":{"id":"D:/zcweb/uniapp/temporaryworker/src/main.ts","moduleParts":{"app.js":"c90d7c0b-7"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-42"},{"uid":"c90d7c0b-0"},{"uid":"c90d7c0b-4"},{"uid":"c90d7c0b-66"},{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-26"},{"uid":"c90d7c0b-24"},{"uid":"c90d7c0b-350"},{"uid":"c90d7c0b-28"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-60"},{"uid":"c90d7c0b-356"}],"importedBy":[],"isEntry":true},"c90d7c0b-8":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/fabu.png","moduleParts":{"common/assets.js":"c90d7c0b-9"},"imported":[],"importedBy":[{"uid":"c90d7c0b-374"}]},"c90d7c0b-10":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/guanli.png","moduleParts":{"common/assets.js":"c90d7c0b-11"},"imported":[],"importedBy":[{"uid":"c90d7c0b-374"}]},"c90d7c0b-12":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/qiye.png","moduleParts":{"common/assets.js":"c90d7c0b-13"},"imported":[],"importedBy":[{"uid":"c90d7c0b-374"}]},"c90d7c0b-14":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/server.png","moduleParts":{"common/assets.js":"c90d7c0b-15"},"imported":[],"importedBy":[{"uid":"c90d7c0b-374"}]},"c90d7c0b-16":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/logo.png","moduleParts":{"common/assets.js":"c90d7c0b-17"},"imported":[],"importedBy":[{"uid":"c90d7c0b-380"},{"uid":"c90d7c0b-386"}]},"c90d7c0b-18":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/dingwei.png","moduleParts":{"common/assets.js":"c90d7c0b-19"},"imported":[],"importedBy":[{"uid":"c90d7c0b-386"}]},"c90d7c0b-20":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/fabuding.png","moduleParts":{"common/assets.js":"c90d7c0b-21"},"imported":[],"importedBy":[{"uid":"c90d7c0b-386"}]},"c90d7c0b-22":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/config.js","moduleParts":{"common/config.js":"c90d7c0b-23"},"imported":[],"importedBy":[{"uid":"c90d7c0b-356"}]},"c90d7c0b-24":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","moduleParts":{"common/locales/en.js":"c90d7c0b-25"},"imported":[],"importedBy":[{"uid":"c90d7c0b-6"}]},"c90d7c0b-26":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","moduleParts":{"common/locales/zh.js":"c90d7c0b-27"},"imported":[],"importedBy":[{"uid":"c90d7c0b-6"}]},"c90d7c0b-28":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","moduleParts":{"common/mixin.js":"c90d7c0b-29"},"imported":[],"importedBy":[{"uid":"c90d7c0b-6"}]},"c90d7c0b-30":{"id":"\\node_modules\\@vue\\shared\\dist\\shared.esm-bundler.js","moduleParts":{"common/vendor.js":"c90d7c0b-31"},"imported":[],"importedBy":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-42"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-34"}]},"c90d7c0b-32":{"id":"\\node_modules\\@dcloudio\\uni-i18n\\dist\\uni-i18n.es.js","moduleParts":{"common/vendor.js":"c90d7c0b-33"},"imported":[{"uid":"c90d7c0b-36"}],"importedBy":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-42"}]},"c90d7c0b-34":{"id":"\\node_modules\\@dcloudio\\uni-shared\\dist\\uni-shared.es.js","moduleParts":{"common/vendor.js":"c90d7c0b-35"},"imported":[{"uid":"c90d7c0b-30"}],"importedBy":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-42"},{"uid":"c90d7c0b-40"}]},"c90d7c0b-36":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.api.esm.js","moduleParts":{"common/vendor.js":"c90d7c0b-37"},"imported":[{"uid":"c90d7c0b-30"},{"uid":"c90d7c0b-32"},{"uid":"c90d7c0b-34"}],"importedBy":[{"uid":"c90d7c0b-6"},{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-32"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-138"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-362"},{"uid":"c90d7c0b-368"},{"uid":"c90d7c0b-374"},{"uid":"c90d7c0b-380"},{"uid":"c90d7c0b-406"},{"uid":"c90d7c0b-450"},{"uid":"c90d7c0b-456"},{"uid":"c90d7c0b-492"},{"uid":"c90d7c0b-500"},{"uid":"c90d7c0b-322"}]},"c90d7c0b-38":{"id":"\u0000plugin-vue:export-helper","moduleParts":{"common/vendor.js":"c90d7c0b-39"},"imported":[],"importedBy":[{"uid":"c90d7c0b-6"},{"uid":"c90d7c0b-4"},{"uid":"c90d7c0b-362"},{"uid":"c90d7c0b-368"},{"uid":"c90d7c0b-374"},{"uid":"c90d7c0b-380"},{"uid":"c90d7c0b-386"},{"uid":"c90d7c0b-390"},{"uid":"c90d7c0b-394"},{"uid":"c90d7c0b-400"},{"uid":"c90d7c0b-406"},{"uid":"c90d7c0b-412"},{"uid":"c90d7c0b-418"},{"uid":"c90d7c0b-424"},{"uid":"c90d7c0b-430"},{"uid":"c90d7c0b-438"},{"uid":"c90d7c0b-444"},{"uid":"c90d7c0b-450"},{"uid":"c90d7c0b-456"},{"uid":"c90d7c0b-462"},{"uid":"c90d7c0b-468"},{"uid":"c90d7c0b-474"},{"uid":"c90d7c0b-480"},{"uid":"c90d7c0b-484"},{"uid":"c90d7c0b-492"},{"uid":"c90d7c0b-500"},{"uid":"c90d7c0b-506"},{"uid":"c90d7c0b-512"},{"uid":"c90d7c0b-518"},{"uid":"c90d7c0b-524"},{"uid":"c90d7c0b-530"},{"uid":"c90d7c0b-536"},{"uid":"c90d7c0b-542"}]},"c90d7c0b-40":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-vue/dist/vue.runtime.esm.js","moduleParts":{"common/vendor.js":"c90d7c0b-41"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-34"},{"uid":"c90d7c0b-30"}],"importedBy":[{"uid":"c90d7c0b-6"},{"uid":"c90d7c0b-42"},{"uid":"c90d7c0b-60"},{"uid":"c90d7c0b-44"},{"uid":"c90d7c0b-362"},{"uid":"c90d7c0b-368"},{"uid":"c90d7c0b-374"},{"uid":"c90d7c0b-380"},{"uid":"c90d7c0b-386"},{"uid":"c90d7c0b-390"},{"uid":"c90d7c0b-400"},{"uid":"c90d7c0b-406"},{"uid":"c90d7c0b-412"},{"uid":"c90d7c0b-418"},{"uid":"c90d7c0b-424"},{"uid":"c90d7c0b-430"},{"uid":"c90d7c0b-438"},{"uid":"c90d7c0b-444"},{"uid":"c90d7c0b-450"},{"uid":"c90d7c0b-456"},{"uid":"c90d7c0b-462"},{"uid":"c90d7c0b-468"},{"uid":"c90d7c0b-474"},{"uid":"c90d7c0b-480"},{"uid":"c90d7c0b-492"},{"uid":"c90d7c0b-500"},{"uid":"c90d7c0b-506"},{"uid":"c90d7c0b-512"},{"uid":"c90d7c0b-518"},{"uid":"c90d7c0b-524"},{"uid":"c90d7c0b-530"},{"uid":"c90d7c0b-536"},{"uid":"c90d7c0b-542"},{"uid":"c90d7c0b-126"}]},"c90d7c0b-42":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.mp.esm.js","moduleParts":{"common/vendor.js":"c90d7c0b-43"},"imported":[{"uid":"c90d7c0b-34"},{"uid":"c90d7c0b-30"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-32"}],"importedBy":[{"uid":"c90d7c0b-6"}]},"c90d7c0b-44":{"id":"\\node_modules\\vuex\\dist\\vuex.esm-bundler.js","moduleParts":{"common/vendor.js":"c90d7c0b-45"},"imported":[{"uid":"c90d7c0b-40"}],"importedBy":[{"uid":"c90d7c0b-66"}]},"c90d7c0b-46":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/shared/dist/shared.esm-bundler.js","moduleParts":{"common/vendor.js":"c90d7c0b-47"},"imported":[],"importedBy":[{"uid":"c90d7c0b-60"},{"uid":"c90d7c0b-56"},{"uid":"c90d7c0b-50"},{"uid":"c90d7c0b-52"}]},"c90d7c0b-48":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-resolver/dist/message-resolver.esm-bundler.js","moduleParts":{"common/vendor.js":"c90d7c0b-49"},"imported":[],"importedBy":[{"uid":"c90d7c0b-56"}]},"c90d7c0b-50":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/runtime/dist/runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"c90d7c0b-51"},"imported":[{"uid":"c90d7c0b-46"}],"importedBy":[{"uid":"c90d7c0b-56"}]},"c90d7c0b-52":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-compiler/dist/message-compiler.esm-bundler.js","moduleParts":{"common/vendor.js":"c90d7c0b-53"},"imported":[{"uid":"c90d7c0b-46"}],"importedBy":[{"uid":"c90d7c0b-56"}]},"c90d7c0b-54":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/devtools-if/dist/devtools-if.esm-bundler.js","moduleParts":{"common/vendor.js":"c90d7c0b-55"},"imported":[],"importedBy":[{"uid":"c90d7c0b-56"}]},"c90d7c0b-56":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/core-base/dist/core-base.esm-bundler.js","moduleParts":{"common/vendor.js":"c90d7c0b-57"},"imported":[{"uid":"c90d7c0b-46"},{"uid":"c90d7c0b-48"},{"uid":"c90d7c0b-50"},{"uid":"c90d7c0b-52"},{"uid":"c90d7c0b-54"}],"importedBy":[{"uid":"c90d7c0b-60"}]},"c90d7c0b-58":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/vue-devtools/dist/vue-devtools.esm-bundler.js","moduleParts":{"common/vendor.js":"c90d7c0b-59"},"imported":[],"importedBy":[{"uid":"c90d7c0b-60"}]},"c90d7c0b-60":{"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":"c90d7c0b-61"},"imported":[{"uid":"c90d7c0b-46"},{"uid":"c90d7c0b-56"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-58"}],"importedBy":[{"uid":"c90d7c0b-6"}]},"c90d7c0b-62":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/bindingx.js","moduleParts":{"components/firstui/fui-fab/bindingx.js":"c90d7c0b-63"},"imported":[],"importedBy":[{"uid":"c90d7c0b-500"}]},"c90d7c0b-64":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/mpjs.js","moduleParts":{"components/firstui/fui-fab/mpjs.js":"c90d7c0b-65"},"imported":[],"importedBy":[{"uid":"c90d7c0b-500"}]},"c90d7c0b-66":{"id":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","moduleParts":{"store/index.js":"c90d7c0b-67"},"imported":[{"uid":"c90d7c0b-44"}],"importedBy":[{"uid":"c90d7c0b-6"},{"uid":"c90d7c0b-358"}]},"c90d7c0b-68":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-badge/props.js","moduleParts":{"uni_modules/uview-plus/components/u-badge/props.js":"c90d7c0b-69"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-536"}]},"c90d7c0b-70":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","moduleParts":{"uni_modules/uview-plus/libs/vue.js":"c90d7c0b-71"},"imported":[],"importedBy":[{"uid":"c90d7c0b-350"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-84"},{"uid":"c90d7c0b-120"},{"uid":"c90d7c0b-76"},{"uid":"c90d7c0b-96"},{"uid":"c90d7c0b-118"},{"uid":"c90d7c0b-116"},{"uid":"c90d7c0b-114"},{"uid":"c90d7c0b-86"},{"uid":"c90d7c0b-78"},{"uid":"c90d7c0b-92"},{"uid":"c90d7c0b-122"},{"uid":"c90d7c0b-80"},{"uid":"c90d7c0b-348"},{"uid":"c90d7c0b-352"},{"uid":"c90d7c0b-74"},{"uid":"c90d7c0b-124"},{"uid":"c90d7c0b-94"},{"uid":"c90d7c0b-112"},{"uid":"c90d7c0b-98"},{"uid":"c90d7c0b-90"},{"uid":"c90d7c0b-68"},{"uid":"c90d7c0b-88"}]},"c90d7c0b-72":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","moduleParts":{"uni_modules/uview-plus/libs/config/props.js":"c90d7c0b-73"},"imported":[{"uid":"c90d7c0b-100"},{"uid":"c90d7c0b-154"},{"uid":"c90d7c0b-156"},{"uid":"c90d7c0b-158"},{"uid":"c90d7c0b-160"},{"uid":"c90d7c0b-162"},{"uid":"c90d7c0b-164"},{"uid":"c90d7c0b-166"},{"uid":"c90d7c0b-168"},{"uid":"c90d7c0b-170"},{"uid":"c90d7c0b-172"},{"uid":"c90d7c0b-174"},{"uid":"c90d7c0b-176"},{"uid":"c90d7c0b-178"},{"uid":"c90d7c0b-180"},{"uid":"c90d7c0b-182"},{"uid":"c90d7c0b-184"},{"uid":"c90d7c0b-186"},{"uid":"c90d7c0b-188"},{"uid":"c90d7c0b-190"},{"uid":"c90d7c0b-192"},{"uid":"c90d7c0b-194"},{"uid":"c90d7c0b-196"},{"uid":"c90d7c0b-198"},{"uid":"c90d7c0b-102"},{"uid":"c90d7c0b-200"},{"uid":"c90d7c0b-202"},{"uid":"c90d7c0b-204"},{"uid":"c90d7c0b-206"},{"uid":"c90d7c0b-208"},{"uid":"c90d7c0b-210"},{"uid":"c90d7c0b-212"},{"uid":"c90d7c0b-104"},{"uid":"c90d7c0b-214"},{"uid":"c90d7c0b-216"},{"uid":"c90d7c0b-218"},{"uid":"c90d7c0b-220"},{"uid":"c90d7c0b-222"},{"uid":"c90d7c0b-224"},{"uid":"c90d7c0b-226"},{"uid":"c90d7c0b-106"},{"uid":"c90d7c0b-228"},{"uid":"c90d7c0b-230"},{"uid":"c90d7c0b-108"},{"uid":"c90d7c0b-232"},{"uid":"c90d7c0b-234"},{"uid":"c90d7c0b-236"},{"uid":"c90d7c0b-110"},{"uid":"c90d7c0b-238"},{"uid":"c90d7c0b-240"},{"uid":"c90d7c0b-242"},{"uid":"c90d7c0b-244"},{"uid":"c90d7c0b-246"},{"uid":"c90d7c0b-248"},{"uid":"c90d7c0b-250"},{"uid":"c90d7c0b-252"},{"uid":"c90d7c0b-254"},{"uid":"c90d7c0b-256"},{"uid":"c90d7c0b-258"},{"uid":"c90d7c0b-260"},{"uid":"c90d7c0b-262"},{"uid":"c90d7c0b-264"},{"uid":"c90d7c0b-266"},{"uid":"c90d7c0b-268"},{"uid":"c90d7c0b-270"},{"uid":"c90d7c0b-272"},{"uid":"c90d7c0b-274"},{"uid":"c90d7c0b-276"},{"uid":"c90d7c0b-278"},{"uid":"c90d7c0b-280"},{"uid":"c90d7c0b-282"},{"uid":"c90d7c0b-284"},{"uid":"c90d7c0b-286"},{"uid":"c90d7c0b-288"},{"uid":"c90d7c0b-290"},{"uid":"c90d7c0b-292"},{"uid":"c90d7c0b-294"},{"uid":"c90d7c0b-296"},{"uid":"c90d7c0b-298"},{"uid":"c90d7c0b-300"},{"uid":"c90d7c0b-302"},{"uid":"c90d7c0b-304"},{"uid":"c90d7c0b-306"},{"uid":"c90d7c0b-308"},{"uid":"c90d7c0b-310"},{"uid":"c90d7c0b-312"},{"uid":"c90d7c0b-314"},{"uid":"c90d7c0b-316"},{"uid":"c90d7c0b-318"}],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-444"},{"uid":"c90d7c0b-468"},{"uid":"c90d7c0b-84"},{"uid":"c90d7c0b-120"},{"uid":"c90d7c0b-76"},{"uid":"c90d7c0b-96"},{"uid":"c90d7c0b-118"},{"uid":"c90d7c0b-116"},{"uid":"c90d7c0b-114"},{"uid":"c90d7c0b-86"},{"uid":"c90d7c0b-78"},{"uid":"c90d7c0b-92"},{"uid":"c90d7c0b-122"},{"uid":"c90d7c0b-80"},{"uid":"c90d7c0b-74"},{"uid":"c90d7c0b-124"},{"uid":"c90d7c0b-94"},{"uid":"c90d7c0b-112"},{"uid":"c90d7c0b-98"},{"uid":"c90d7c0b-90"},{"uid":"c90d7c0b-68"},{"uid":"c90d7c0b-88"}]},"c90d7c0b-74":{"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":"c90d7c0b-75"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-434"}]},"c90d7c0b-76":{"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":"c90d7c0b-77"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-424"}]},"c90d7c0b-78":{"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":"c90d7c0b-79"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-468"}]},"c90d7c0b-80":{"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":"c90d7c0b-81"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-484"}]},"c90d7c0b-82":{"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":"c90d7c0b-83"},"imported":[],"importedBy":[{"uid":"c90d7c0b-412"}]},"c90d7c0b-84":{"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":"c90d7c0b-85"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-412"}]},"c90d7c0b-86":{"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":"c90d7c0b-87"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-462"}]},"c90d7c0b-88":{"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":"c90d7c0b-89"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-542"}]},"c90d7c0b-90":{"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":"c90d7c0b-91"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-530"}]},"c90d7c0b-92":{"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":"c90d7c0b-93"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-474"}]},"c90d7c0b-94":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay/props.js","moduleParts":{"uni_modules/uview-plus/components/u-overlay/props.js":"c90d7c0b-95"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-512"}]},"c90d7c0b-96":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup/props.js","moduleParts":{"uni_modules/uview-plus/components/u-popup/props.js":"c90d7c0b-97"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-430"}]},"c90d7c0b-98":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom/props.js","moduleParts":{"uni_modules/uview-plus/components/u-safe-bottom/props.js":"c90d7c0b-99"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-524"}]},"c90d7c0b-100":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","moduleParts":{"uni_modules/uview-plus/libs/config/config.js":"c90d7c0b-101"},"imported":[],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-72"},{"uid":"c90d7c0b-104"},{"uid":"c90d7c0b-106"},{"uid":"c90d7c0b-108"},{"uid":"c90d7c0b-412"}]},"c90d7c0b-102":{"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":"c90d7c0b-103"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-104":{"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":"c90d7c0b-105"},"imported":[{"uid":"c90d7c0b-100"}],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-106":{"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":"c90d7c0b-107"},"imported":[{"uid":"c90d7c0b-100"}],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-108":{"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":"c90d7c0b-109"},"imported":[{"uid":"c90d7c0b-100"}],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-110":{"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":"c90d7c0b-111"},"imported":[{"uid":"c90d7c0b-150"}],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-112":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar/props.js","moduleParts":{"uni_modules/uview-plus/components/u-status-bar/props.js":"c90d7c0b-113"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-518"}]},"c90d7c0b-114":{"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":"c90d7c0b-115"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-456"}]},"c90d7c0b-116":{"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":"c90d7c0b-117"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-450"}]},"c90d7c0b-118":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tabs/props.js","moduleParts":{"uni_modules/uview-plus/components/u-tabs/props.js":"c90d7c0b-119"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-444"}]},"c90d7c0b-120":{"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":"c90d7c0b-121"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-418"}]},"c90d7c0b-122":{"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":"c90d7c0b-123"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-480"}]},"c90d7c0b-124":{"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":"c90d7c0b-125"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-72"}],"importedBy":[{"uid":"c90d7c0b-506"}]},"c90d7c0b-126":{"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":"c90d7c0b-127"},"imported":[{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-128"}],"importedBy":[{"uid":"c90d7c0b-506"}]},"c90d7c0b-128":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","moduleParts":{"uni_modules/uview-plus/libs/function/index.js":"c90d7c0b-129"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-142"},{"uid":"c90d7c0b-320"},{"uid":"c90d7c0b-100"}],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-350"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-138"},{"uid":"c90d7c0b-412"},{"uid":"c90d7c0b-424"},{"uid":"c90d7c0b-430"},{"uid":"c90d7c0b-444"},{"uid":"c90d7c0b-450"},{"uid":"c90d7c0b-456"},{"uid":"c90d7c0b-462"},{"uid":"c90d7c0b-468"},{"uid":"c90d7c0b-474"},{"uid":"c90d7c0b-480"},{"uid":"c90d7c0b-484"},{"uid":"c90d7c0b-434"},{"uid":"c90d7c0b-506"},{"uid":"c90d7c0b-512"},{"uid":"c90d7c0b-518"},{"uid":"c90d7c0b-524"},{"uid":"c90d7c0b-530"},{"uid":"c90d7c0b-536"},{"uid":"c90d7c0b-542"},{"uid":"c90d7c0b-126"}]},"c90d7c0b-130":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","moduleParts":{"uni_modules/uview-plus/index.js":"c90d7c0b-131"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-346"},{"uid":"c90d7c0b-138"},{"uid":"c90d7c0b-140"},{"uid":"c90d7c0b-142"},{"uid":"c90d7c0b-144"},{"uid":"c90d7c0b-146"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-100"},{"uid":"c90d7c0b-72"},{"uid":"c90d7c0b-148"},{"uid":"c90d7c0b-150"},{"uid":"c90d7c0b-152"}],"importedBy":[{"uid":"c90d7c0b-6"},{"uid":"c90d7c0b-4"},{"uid":"c90d7c0b-356"},{"uid":"c90d7c0b-358"}]},"c90d7c0b-132":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mixin.js":"c90d7c0b-133"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-142"},{"uid":"c90d7c0b-138"}],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-412"},{"uid":"c90d7c0b-418"},{"uid":"c90d7c0b-424"},{"uid":"c90d7c0b-430"},{"uid":"c90d7c0b-444"},{"uid":"c90d7c0b-450"},{"uid":"c90d7c0b-456"},{"uid":"c90d7c0b-462"},{"uid":"c90d7c0b-468"},{"uid":"c90d7c0b-474"},{"uid":"c90d7c0b-480"},{"uid":"c90d7c0b-484"},{"uid":"c90d7c0b-434"},{"uid":"c90d7c0b-506"},{"uid":"c90d7c0b-512"},{"uid":"c90d7c0b-518"},{"uid":"c90d7c0b-524"},{"uid":"c90d7c0b-530"},{"uid":"c90d7c0b-536"},{"uid":"c90d7c0b-542"}]},"c90d7c0b-134":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpMixin.js":"c90d7c0b-135"},"imported":[{"uid":"c90d7c0b-70"}],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-412"},{"uid":"c90d7c0b-418"},{"uid":"c90d7c0b-424"},{"uid":"c90d7c0b-430"},{"uid":"c90d7c0b-444"},{"uid":"c90d7c0b-450"},{"uid":"c90d7c0b-456"},{"uid":"c90d7c0b-462"},{"uid":"c90d7c0b-468"},{"uid":"c90d7c0b-474"},{"uid":"c90d7c0b-480"},{"uid":"c90d7c0b-484"},{"uid":"c90d7c0b-434"},{"uid":"c90d7c0b-506"},{"uid":"c90d7c0b-512"},{"uid":"c90d7c0b-518"},{"uid":"c90d7c0b-524"},{"uid":"c90d7c0b-530"},{"uid":"c90d7c0b-536"},{"uid":"c90d7c0b-542"}]},"c90d7c0b-136":{"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":"c90d7c0b-137"},"imported":[{"uid":"c90d7c0b-334"},{"uid":"c90d7c0b-332"},{"uid":"c90d7c0b-336"},{"uid":"c90d7c0b-338"},{"uid":"c90d7c0b-330"},{"uid":"c90d7c0b-340"}],"importedBy":[{"uid":"c90d7c0b-346"}]},"c90d7c0b-138":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","moduleParts":{"uni_modules/uview-plus/libs/util/route.js":"c90d7c0b-139"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-128"}],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-132"}]},"c90d7c0b-140":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","moduleParts":{"uni_modules/uview-plus/libs/function/colorGradient.js":"c90d7c0b-141"},"imported":[],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-530"}]},"c90d7c0b-142":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","moduleParts":{"uni_modules/uview-plus/libs/function/test.js":"c90d7c0b-143"},"imported":[],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-418"},{"uid":"c90d7c0b-484"}]},"c90d7c0b-144":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","moduleParts":{"uni_modules/uview-plus/libs/function/debounce.js":"c90d7c0b-145"},"imported":[],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-462"}]},"c90d7c0b-146":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","moduleParts":{"uni_modules/uview-plus/libs/function/throttle.js":"c90d7c0b-147"},"imported":[],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-434"}]},"c90d7c0b-148":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","moduleParts":{"uni_modules/uview-plus/libs/config/zIndex.js":"c90d7c0b-149"},"imported":[],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-456"}]},"c90d7c0b-150":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","moduleParts":{"uni_modules/uview-plus/libs/config/color.js":"c90d7c0b-151"},"imported":[],"importedBy":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-110"},{"uid":"c90d7c0b-468"},{"uid":"c90d7c0b-434"}]},"c90d7c0b-152":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","moduleParts":{"uni_modules/uview-plus/libs/function/platform.js":"c90d7c0b-153"},"imported":[],"importedBy":[{"uid":"c90d7c0b-130"}]},"c90d7c0b-154":{"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":"c90d7c0b-155"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-156":{"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":"c90d7c0b-157"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-158":{"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":"c90d7c0b-159"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-160":{"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":"c90d7c0b-161"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-162":{"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":"c90d7c0b-163"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-164":{"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":"c90d7c0b-165"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-166":{"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":"c90d7c0b-167"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-168":{"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":"c90d7c0b-169"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-170":{"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":"c90d7c0b-171"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-172":{"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":"c90d7c0b-173"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-174":{"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":"c90d7c0b-175"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-176":{"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":"c90d7c0b-177"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-178":{"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":"c90d7c0b-179"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-180":{"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":"c90d7c0b-181"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-182":{"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":"c90d7c0b-183"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-184":{"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":"c90d7c0b-185"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-186":{"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":"c90d7c0b-187"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-188":{"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":"c90d7c0b-189"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-190":{"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":"c90d7c0b-191"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-192":{"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":"c90d7c0b-193"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-194":{"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":"c90d7c0b-195"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-196":{"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":"c90d7c0b-197"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-198":{"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":"c90d7c0b-199"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-200":{"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":"c90d7c0b-201"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-202":{"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":"c90d7c0b-203"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-204":{"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":"c90d7c0b-205"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-206":{"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":"c90d7c0b-207"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-208":{"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":"c90d7c0b-209"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-210":{"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":"c90d7c0b-211"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-212":{"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":"c90d7c0b-213"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-214":{"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":"c90d7c0b-215"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-216":{"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":"c90d7c0b-217"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-218":{"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":"c90d7c0b-219"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-220":{"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":"c90d7c0b-221"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-222":{"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":"c90d7c0b-223"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-224":{"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":"c90d7c0b-225"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-226":{"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":"c90d7c0b-227"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-228":{"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":"c90d7c0b-229"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-230":{"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":"c90d7c0b-231"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-232":{"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":"c90d7c0b-233"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-234":{"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":"c90d7c0b-235"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-236":{"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":"c90d7c0b-237"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-238":{"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":"c90d7c0b-239"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-240":{"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":"c90d7c0b-241"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-242":{"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":"c90d7c0b-243"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-244":{"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":"c90d7c0b-245"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-246":{"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":"c90d7c0b-247"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-248":{"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":"c90d7c0b-249"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-250":{"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":"c90d7c0b-251"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-252":{"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":"c90d7c0b-253"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-254":{"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":"c90d7c0b-255"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-256":{"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":"c90d7c0b-257"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-258":{"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":"c90d7c0b-259"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-260":{"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":"c90d7c0b-261"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-262":{"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":"c90d7c0b-263"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-264":{"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":"c90d7c0b-265"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-266":{"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":"c90d7c0b-267"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-268":{"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":"c90d7c0b-269"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-270":{"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":"c90d7c0b-271"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-272":{"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":"c90d7c0b-273"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-274":{"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":"c90d7c0b-275"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-276":{"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":"c90d7c0b-277"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-278":{"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":"c90d7c0b-279"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-280":{"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":"c90d7c0b-281"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-282":{"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":"c90d7c0b-283"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-284":{"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":"c90d7c0b-285"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-286":{"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":"c90d7c0b-287"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-288":{"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":"c90d7c0b-289"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-290":{"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":"c90d7c0b-291"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-292":{"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":"c90d7c0b-293"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-294":{"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":"c90d7c0b-295"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-296":{"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":"c90d7c0b-297"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-298":{"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":"c90d7c0b-299"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-300":{"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":"c90d7c0b-301"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-302":{"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":"c90d7c0b-303"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-304":{"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":"c90d7c0b-305"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-306":{"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":"c90d7c0b-307"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-308":{"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":"c90d7c0b-309"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-310":{"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":"c90d7c0b-311"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-312":{"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":"c90d7c0b-313"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-314":{"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":"c90d7c0b-315"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-316":{"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":"c90d7c0b-317"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-318":{"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":"c90d7c0b-319"},"imported":[],"importedBy":[{"uid":"c90d7c0b-72"}]},"c90d7c0b-320":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","moduleParts":{"uni_modules/uview-plus/libs/function/digit.js":"c90d7c0b-321"},"imported":[],"importedBy":[{"uid":"c90d7c0b-128"}]},"c90d7c0b-322":{"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":"c90d7c0b-323"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-324"},{"uid":"c90d7c0b-326"},{"uid":"c90d7c0b-328"},{"uid":"c90d7c0b-330"}],"importedBy":[{"uid":"c90d7c0b-334"}]},"c90d7c0b-324":{"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":"c90d7c0b-325"},"imported":[{"uid":"c90d7c0b-330"}],"importedBy":[{"uid":"c90d7c0b-322"}]},"c90d7c0b-326":{"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":"c90d7c0b-327"},"imported":[{"uid":"c90d7c0b-342"},{"uid":"c90d7c0b-344"}],"importedBy":[{"uid":"c90d7c0b-322"}]},"c90d7c0b-328":{"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":"c90d7c0b-329"},"imported":[],"importedBy":[{"uid":"c90d7c0b-322"}]},"c90d7c0b-330":{"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":"c90d7c0b-331"},"imported":[],"importedBy":[{"uid":"c90d7c0b-136"},{"uid":"c90d7c0b-336"},{"uid":"c90d7c0b-322"},{"uid":"c90d7c0b-324"}]},"c90d7c0b-332":{"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":"c90d7c0b-333"},"imported":[],"importedBy":[{"uid":"c90d7c0b-136"}]},"c90d7c0b-334":{"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":"c90d7c0b-335"},"imported":[{"uid":"c90d7c0b-322"}],"importedBy":[{"uid":"c90d7c0b-136"}]},"c90d7c0b-336":{"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":"c90d7c0b-337"},"imported":[{"uid":"c90d7c0b-330"}],"importedBy":[{"uid":"c90d7c0b-136"}]},"c90d7c0b-338":{"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":"c90d7c0b-339"},"imported":[],"importedBy":[{"uid":"c90d7c0b-136"}]},"c90d7c0b-340":{"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":"c90d7c0b-341"},"imported":[],"importedBy":[{"uid":"c90d7c0b-136"}]},"c90d7c0b-342":{"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":"c90d7c0b-343"},"imported":[],"importedBy":[{"uid":"c90d7c0b-326"}]},"c90d7c0b-344":{"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":"c90d7c0b-345"},"imported":[],"importedBy":[{"uid":"c90d7c0b-326"}]},"c90d7c0b-346":{"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":"c90d7c0b-347"},"imported":[{"uid":"c90d7c0b-136"}],"importedBy":[{"uid":"c90d7c0b-130"}]},"c90d7c0b-348":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/button.js":"c90d7c0b-349"},"imported":[{"uid":"c90d7c0b-70"}],"importedBy":[{"uid":"c90d7c0b-434"}]},"c90d7c0b-350":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpShare.js":"c90d7c0b-351"},"imported":[{"uid":"c90d7c0b-70"},{"uid":"c90d7c0b-128"}],"importedBy":[{"uid":"c90d7c0b-6"}]},"c90d7c0b-352":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/openType.js":"c90d7c0b-353"},"imported":[{"uid":"c90d7c0b-70"}],"importedBy":[{"uid":"c90d7c0b-434"}]},"c90d7c0b-354":{"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":"c90d7c0b-355"},"imported":[],"importedBy":[{"uid":"c90d7c0b-484"}]},"c90d7c0b-356":{"id":"D:/zcweb/uniapp/temporaryworker/src/util/request/index.js","moduleParts":{"util/request/index.js":"c90d7c0b-357"},"imported":[{"uid":"c90d7c0b-22"},{"uid":"c90d7c0b-358"},{"uid":"c90d7c0b-130"}],"importedBy":[{"uid":"c90d7c0b-6"}]},"c90d7c0b-358":{"id":"D:/zcweb/uniapp/temporaryworker/src/util/request/interceptors.js","moduleParts":{"util/request/interceptors.js":"c90d7c0b-359"},"imported":[{"uid":"c90d7c0b-130"},{"uid":"c90d7c0b-66"}],"importedBy":[{"uid":"c90d7c0b-356"}]},"c90d7c0b-360":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/default/index.js":"c90d7c0b-361"},"imported":[],"importedBy":[{"uid":"c90d7c0b-362"}]},"c90d7c0b-362":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue","moduleParts":{"pages/default/index.js":"c90d7c0b-363"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-360"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-414","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-364"}]},"c90d7c0b-364":{"id":"uniPage://cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","moduleParts":{"pages/default/index.js":"c90d7c0b-365"},"imported":[{"uid":"c90d7c0b-362"}],"importedBy":[{"uid":"c90d7c0b-0"}]},"c90d7c0b-366":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/index/index.js":"c90d7c0b-367"},"imported":[],"importedBy":[{"uid":"c90d7c0b-368"}]},"c90d7c0b-368":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue","moduleParts":{"pages/index/index.js":"c90d7c0b-369"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-366"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-420","dynamic":true},{"uid":"c90d7c0b-426","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-370"}]},"c90d7c0b-370":{"id":"uniPage://cGFnZXMvaW5kZXgvaW5kZXgudnVl","moduleParts":{"pages/index/index.js":"c90d7c0b-371"},"imported":[{"uid":"c90d7c0b-368"}],"importedBy":[{"uid":"c90d7c0b-0"}]},"c90d7c0b-372":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/mine/index.js":"c90d7c0b-373"},"imported":[],"importedBy":[{"uid":"c90d7c0b-374"}]},"c90d7c0b-374":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue","moduleParts":{"pages/mine/index.js":"c90d7c0b-375"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-8"},{"uid":"c90d7c0b-10"},{"uid":"c90d7c0b-12"},{"uid":"c90d7c0b-14"},{"uid":"c90d7c0b-372"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-414","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-376"}]},"c90d7c0b-376":{"id":"uniPage://cGFnZXMvbWluZS9pbmRleC52dWU","moduleParts":{"pages/mine/index.js":"c90d7c0b-377"},"imported":[{"uid":"c90d7c0b-374"}],"importedBy":[{"uid":"c90d7c0b-0"}]},"c90d7c0b-378":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue?vue&type=style&index=0&scoped=45258083&lang.scss","moduleParts":{"pages/login/index.js":"c90d7c0b-379"},"imported":[],"importedBy":[{"uid":"c90d7c0b-380"}]},"c90d7c0b-380":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue","moduleParts":{"pages/login/index.js":"c90d7c0b-381"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-16"},{"uid":"c90d7c0b-378"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-432","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-382"}]},"c90d7c0b-382":{"id":"uniPage://cGFnZXMvbG9naW4vaW5kZXgudnVl","moduleParts":{"pages/login/index.js":"c90d7c0b-383"},"imported":[{"uid":"c90d7c0b-380"}],"importedBy":[{"uid":"c90d7c0b-0"}]},"c90d7c0b-384":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/detail/detail.js":"c90d7c0b-385"},"imported":[],"importedBy":[{"uid":"c90d7c0b-386"}]},"c90d7c0b-386":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue","moduleParts":{"pages/detail/detail.js":"c90d7c0b-387"},"imported":[{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-16"},{"uid":"c90d7c0b-18"},{"uid":"c90d7c0b-20"},{"uid":"c90d7c0b-384"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-414","dynamic":true},{"uid":"c90d7c0b-420","dynamic":true},{"uid":"c90d7c0b-440","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-388"}]},"c90d7c0b-388":{"id":"uniPage://cGFnZXMvZGV0YWlsL2RldGFpbC52dWU","moduleParts":{"pages/detail/detail.js":"c90d7c0b-389"},"imported":[{"uid":"c90d7c0b-386"}],"importedBy":[{"uid":"c90d7c0b-0"}]},"c90d7c0b-390":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue","moduleParts":{"pages/order/order.js":"c90d7c0b-391"},"imported":[{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-446","dynamic":true},{"uid":"c90d7c0b-452","dynamic":true},{"uid":"c90d7c0b-458","dynamic":true},{"uid":"c90d7c0b-426","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-392"}]},"c90d7c0b-392":{"id":"uniPage://cGFnZXMvb3JkZXIvb3JkZXIudnVl","moduleParts":{"pages/order/order.js":"c90d7c0b-393"},"imported":[{"uid":"c90d7c0b-390"}],"importedBy":[{"uid":"c90d7c0b-0"}]},"c90d7c0b-394":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/release.vue","moduleParts":{"pages/release/release.js":"c90d7c0b-395"},"imported":[{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-396"}]},"c90d7c0b-396":{"id":"uniPage://cGFnZXMvcmVsZWFzZS9yZWxlYXNlLnZ1ZQ","moduleParts":{"pages/release/release.js":"c90d7c0b-397"},"imported":[{"uid":"c90d7c0b-394"}],"importedBy":[{"uid":"c90d7c0b-0"}]},"c90d7c0b-398":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/release/index.js":"c90d7c0b-399"},"imported":[],"importedBy":[{"uid":"c90d7c0b-400"}]},"c90d7c0b-400":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue","moduleParts":{"pages/release/index.js":"c90d7c0b-401"},"imported":[{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-398"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-464","dynamic":true},{"uid":"c90d7c0b-414","dynamic":true},{"uid":"c90d7c0b-470","dynamic":true},{"uid":"c90d7c0b-420","dynamic":true},{"uid":"c90d7c0b-476","dynamic":true},{"uid":"c90d7c0b-482","dynamic":true},{"uid":"c90d7c0b-486","dynamic":true},{"uid":"c90d7c0b-440","dynamic":true},{"uid":"c90d7c0b-494","dynamic":true},{"uid":"c90d7c0b-502","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-402"}]},"c90d7c0b-402":{"id":"uniPage://cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","moduleParts":{"pages/release/index.js":"c90d7c0b-403"},"imported":[{"uid":"c90d7c0b-400"}],"importedBy":[{"uid":"c90d7c0b-0"}]},"c90d7c0b-404":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/wallet/index.js":"c90d7c0b-405"},"imported":[],"importedBy":[{"uid":"c90d7c0b-406"}]},"c90d7c0b-406":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue","moduleParts":{"pages/wallet/index.js":"c90d7c0b-407"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-404"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-440","dynamic":true},{"uid":"c90d7c0b-414","dynamic":true},{"uid":"c90d7c0b-426","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-408"}]},"c90d7c0b-408":{"id":"uniPage://cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","moduleParts":{"pages/wallet/index.js":"c90d7c0b-409"},"imported":[{"uid":"c90d7c0b-406"}],"importedBy":[{"uid":"c90d7c0b-0"}]},"c90d7c0b-410":{"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":"c90d7c0b-411"},"imported":[],"importedBy":[{"uid":"c90d7c0b-412"}]},"c90d7c0b-412":{"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":"c90d7c0b-413"},"imported":[{"uid":"c90d7c0b-82"},{"uid":"c90d7c0b-84"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-100"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-410"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-414"}]},"c90d7c0b-414":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"c90d7c0b-415"},"imported":[{"uid":"c90d7c0b-412"}],"importedBy":[{"uid":"c90d7c0b-362"},{"uid":"c90d7c0b-374"},{"uid":"c90d7c0b-386"},{"uid":"c90d7c0b-400"},{"uid":"c90d7c0b-406"},{"uid":"c90d7c0b-418"},{"uid":"c90d7c0b-424"},{"uid":"c90d7c0b-430"},{"uid":"c90d7c0b-438"},{"uid":"c90d7c0b-462"},{"uid":"c90d7c0b-468"},{"uid":"c90d7c0b-474"}]},"c90d7c0b-416":{"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":"c90d7c0b-417"},"imported":[],"importedBy":[{"uid":"c90d7c0b-418"}]},"c90d7c0b-418":{"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":"c90d7c0b-419"},"imported":[{"uid":"c90d7c0b-120"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-142"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-416"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-414","dynamic":true},{"uid":"c90d7c0b-508","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-420"}]},"c90d7c0b-420":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"c90d7c0b-421"},"imported":[{"uid":"c90d7c0b-418"}],"importedBy":[{"uid":"c90d7c0b-368"},{"uid":"c90d7c0b-386"},{"uid":"c90d7c0b-400"}]},"c90d7c0b-422":{"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":"c90d7c0b-423"},"imported":[],"importedBy":[{"uid":"c90d7c0b-424"}]},"c90d7c0b-424":{"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":"c90d7c0b-425"},"imported":[{"uid":"c90d7c0b-76"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-422"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-414","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-426"}]},"c90d7c0b-426":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"c90d7c0b-427"},"imported":[{"uid":"c90d7c0b-424"}],"importedBy":[{"uid":"c90d7c0b-368"},{"uid":"c90d7c0b-390"},{"uid":"c90d7c0b-406"}]},"c90d7c0b-428":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup/u-popup.vue?vue&type=style&index=0&scoped=d4197e14&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-popup/u-popup.js":"c90d7c0b-429"},"imported":[],"importedBy":[{"uid":"c90d7c0b-430"}]},"c90d7c0b-430":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup/u-popup.vue","moduleParts":{"uni_modules/uview-plus/components/u-popup/u-popup.js":"c90d7c0b-431"},"imported":[{"uid":"c90d7c0b-96"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-428"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-514","dynamic":true},{"uid":"c90d7c0b-520","dynamic":true},{"uid":"c90d7c0b-414","dynamic":true},{"uid":"c90d7c0b-526","dynamic":true},{"uid":"c90d7c0b-508","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-432"}]},"c90d7c0b-432":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtcG9wdXAvdS1wb3B1cC52dWU","moduleParts":{"uni_modules/uview-plus/components/u-popup/u-popup.js":"c90d7c0b-433"},"imported":[{"uid":"c90d7c0b-430"}],"importedBy":[{"uid":"c90d7c0b-380"}]},"c90d7c0b-434":{"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":"c90d7c0b-435"},"imported":[{"uid":"c90d7c0b-348"},{"uid":"c90d7c0b-352"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-74"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-146"},{"uid":"c90d7c0b-150"}],"importedBy":[{"uid":"c90d7c0b-438"}]},"c90d7c0b-436":{"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":"c90d7c0b-437"},"imported":[],"importedBy":[{"uid":"c90d7c0b-438"}]},"c90d7c0b-438":{"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":"c90d7c0b-439"},"imported":[{"uid":"c90d7c0b-434"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-436"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-532","dynamic":true},{"uid":"c90d7c0b-414","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-440"}]},"c90d7c0b-440":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"c90d7c0b-441"},"imported":[{"uid":"c90d7c0b-438"}],"importedBy":[{"uid":"c90d7c0b-386"},{"uid":"c90d7c0b-400"},{"uid":"c90d7c0b-406"}]},"c90d7c0b-442":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tabs/u-tabs.vue?vue&type=style&index=0&scoped=fd6f7fdc&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-tabs/u-tabs.js":"c90d7c0b-443"},"imported":[],"importedBy":[{"uid":"c90d7c0b-444"}]},"c90d7c0b-444":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-tabs/u-tabs.vue","moduleParts":{"uni_modules/uview-plus/components/u-tabs/u-tabs.js":"c90d7c0b-445"},"imported":[{"uid":"c90d7c0b-118"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-72"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-442"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-538","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-446"}]},"c90d7c0b-446":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFicy91LXRhYnMudnVl","moduleParts":{"uni_modules/uview-plus/components/u-tabs/u-tabs.js":"c90d7c0b-447"},"imported":[{"uid":"c90d7c0b-444"}],"importedBy":[{"uid":"c90d7c0b-390"}]},"c90d7c0b-448":{"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":"c90d7c0b-449"},"imported":[],"importedBy":[{"uid":"c90d7c0b-450"}]},"c90d7c0b-450":{"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":"c90d7c0b-451"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-116"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-448"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-452"}]},"c90d7c0b-452":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"c90d7c0b-453"},"imported":[{"uid":"c90d7c0b-450"}],"importedBy":[{"uid":"c90d7c0b-390"}]},"c90d7c0b-454":{"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":"c90d7c0b-455"},"imported":[],"importedBy":[{"uid":"c90d7c0b-456"}]},"c90d7c0b-456":{"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":"c90d7c0b-457"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-114"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-148"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-454"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-458"}]},"c90d7c0b-458":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"c90d7c0b-459"},"imported":[{"uid":"c90d7c0b-456"}],"importedBy":[{"uid":"c90d7c0b-390"}]},"c90d7c0b-460":{"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":"c90d7c0b-461"},"imported":[],"importedBy":[{"uid":"c90d7c0b-462"}]},"c90d7c0b-462":{"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":"c90d7c0b-463"},"imported":[{"uid":"c90d7c0b-86"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-144"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-460"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-414","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-464"}]},"c90d7c0b-464":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"c90d7c0b-465"},"imported":[{"uid":"c90d7c0b-462"}],"importedBy":[{"uid":"c90d7c0b-400"}]},"c90d7c0b-466":{"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":"c90d7c0b-467"},"imported":[],"importedBy":[{"uid":"c90d7c0b-468"}]},"c90d7c0b-468":{"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":"c90d7c0b-469"},"imported":[{"uid":"c90d7c0b-78"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-72"},{"uid":"c90d7c0b-150"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-466"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-414","dynamic":true},{"uid":"c90d7c0b-544","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-470"}]},"c90d7c0b-470":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"c90d7c0b-471"},"imported":[{"uid":"c90d7c0b-468"}],"importedBy":[{"uid":"c90d7c0b-400"}]},"c90d7c0b-472":{"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":"c90d7c0b-473"},"imported":[],"importedBy":[{"uid":"c90d7c0b-474"}]},"c90d7c0b-474":{"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":"c90d7c0b-475"},"imported":[{"uid":"c90d7c0b-92"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-472"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-414","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-476"}]},"c90d7c0b-476":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"c90d7c0b-477"},"imported":[{"uid":"c90d7c0b-474"}],"importedBy":[{"uid":"c90d7c0b-400"}]},"c90d7c0b-478":{"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":"c90d7c0b-479"},"imported":[],"importedBy":[{"uid":"c90d7c0b-480"}]},"c90d7c0b-480":{"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":"c90d7c0b-481"},"imported":[{"uid":"c90d7c0b-122"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-478"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-482"}]},"c90d7c0b-482":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"c90d7c0b-483"},"imported":[{"uid":"c90d7c0b-480"}],"importedBy":[{"uid":"c90d7c0b-400"}]},"c90d7c0b-484":{"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":"c90d7c0b-485"},"imported":[{"uid":"c90d7c0b-80"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-354"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-142"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-486"}]},"c90d7c0b-486":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"c90d7c0b-487"},"imported":[{"uid":"c90d7c0b-484"}],"importedBy":[{"uid":"c90d7c0b-400"}]},"c90d7c0b-488":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.js","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"c90d7c0b-489"},"imported":[],"importedBy":[{"uid":"c90d7c0b-492"}]},"c90d7c0b-490":{"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":"c90d7c0b-491"},"imported":[],"importedBy":[{"uid":"c90d7c0b-492"}]},"c90d7c0b-492":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"c90d7c0b-493"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-488"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-490"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-494"}]},"c90d7c0b-494":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"c90d7c0b-495"},"imported":[{"uid":"c90d7c0b-492"}],"importedBy":[{"uid":"c90d7c0b-400"},{"uid":"c90d7c0b-500"}]},"c90d7c0b-496":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/fui-fab.vue?vue&type=style&index=0&scoped=2c25f223&lang.css","moduleParts":{"components/firstui/fui-fab/fui-fab.js":"c90d7c0b-497"},"imported":[],"importedBy":[{"uid":"c90d7c0b-500"}]},"c90d7c0b-498":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/index.wxs?vue&type=wxs&index=0&src=true&name=handler&lang.wxs","moduleParts":{"components/firstui/fui-fab/fui-fab.js":"c90d7c0b-499"},"imported":[],"importedBy":[{"uid":"c90d7c0b-500"}]},"c90d7c0b-500":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/fui-fab.vue","moduleParts":{"components/firstui/fui-fab/fui-fab.js":"c90d7c0b-501"},"imported":[{"uid":"c90d7c0b-36"},{"uid":"c90d7c0b-64"},{"uid":"c90d7c0b-62"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-496"},{"uid":"c90d7c0b-498"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-494","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-502"}]},"c90d7c0b-502":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1mYWIvZnVpLWZhYi52dWU","moduleParts":{"components/firstui/fui-fab/fui-fab.js":"c90d7c0b-503"},"imported":[{"uid":"c90d7c0b-500"}],"importedBy":[{"uid":"c90d7c0b-400"}]},"c90d7c0b-504":{"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":"c90d7c0b-505"},"imported":[],"importedBy":[{"uid":"c90d7c0b-506"}]},"c90d7c0b-506":{"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":"c90d7c0b-507"},"imported":[{"uid":"c90d7c0b-124"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-126"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-504"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-508"}]},"c90d7c0b-508":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"c90d7c0b-509"},"imported":[{"uid":"c90d7c0b-506"}],"importedBy":[{"uid":"c90d7c0b-418"},{"uid":"c90d7c0b-430"},{"uid":"c90d7c0b-512"}]},"c90d7c0b-510":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay/u-overlay.vue?vue&type=style&index=0&scoped=64260431&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-overlay/u-overlay.js":"c90d7c0b-511"},"imported":[],"importedBy":[{"uid":"c90d7c0b-512"}]},"c90d7c0b-512":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay/u-overlay.vue","moduleParts":{"uni_modules/uview-plus/components/u-overlay/u-overlay.js":"c90d7c0b-513"},"imported":[{"uid":"c90d7c0b-94"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-510"},{"uid":"c90d7c0b-38"},{"uid":"c90d7c0b-508","dynamic":true}],"importedBy":[{"uid":"c90d7c0b-514"}]},"c90d7c0b-514":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utb3ZlcmxheS91LW92ZXJsYXkudnVl","moduleParts":{"uni_modules/uview-plus/components/u-overlay/u-overlay.js":"c90d7c0b-515"},"imported":[{"uid":"c90d7c0b-512"}],"importedBy":[{"uid":"c90d7c0b-430"}]},"c90d7c0b-516":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar/u-status-bar.vue?vue&type=style&index=0&scoped=96630e2e&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-status-bar/u-status-bar.js":"c90d7c0b-517"},"imported":[],"importedBy":[{"uid":"c90d7c0b-518"}]},"c90d7c0b-518":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar/u-status-bar.vue","moduleParts":{"uni_modules/uview-plus/components/u-status-bar/u-status-bar.js":"c90d7c0b-519"},"imported":[{"uid":"c90d7c0b-112"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-516"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-520"}]},"c90d7c0b-520":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RhdHVzLWJhci91LXN0YXR1cy1iYXIudnVl","moduleParts":{"uni_modules/uview-plus/components/u-status-bar/u-status-bar.js":"c90d7c0b-521"},"imported":[{"uid":"c90d7c0b-518"}],"importedBy":[{"uid":"c90d7c0b-430"}]},"c90d7c0b-522":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.vue?vue&type=style&index=0&scoped=3a3efedd&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.js":"c90d7c0b-523"},"imported":[],"importedBy":[{"uid":"c90d7c0b-524"}]},"c90d7c0b-524":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.vue","moduleParts":{"uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.js":"c90d7c0b-525"},"imported":[{"uid":"c90d7c0b-98"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-522"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-526"}]},"c90d7c0b-526":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2FmZS1ib3R0b20vdS1zYWZlLWJvdHRvbS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.js":"c90d7c0b-527"},"imported":[{"uid":"c90d7c0b-524"}],"importedBy":[{"uid":"c90d7c0b-430"}]},"c90d7c0b-528":{"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":"c90d7c0b-529"},"imported":[],"importedBy":[{"uid":"c90d7c0b-530"}]},"c90d7c0b-530":{"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":"c90d7c0b-531"},"imported":[{"uid":"c90d7c0b-90"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-140"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-528"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-532"}]},"c90d7c0b-532":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"c90d7c0b-533"},"imported":[{"uid":"c90d7c0b-530"}],"importedBy":[{"uid":"c90d7c0b-438"}]},"c90d7c0b-534":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-badge/u-badge.vue?vue&type=style&index=0&scoped=01255db2&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-badge/u-badge.js":"c90d7c0b-535"},"imported":[],"importedBy":[{"uid":"c90d7c0b-536"}]},"c90d7c0b-536":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-badge/u-badge.vue","moduleParts":{"uni_modules/uview-plus/components/u-badge/u-badge.js":"c90d7c0b-537"},"imported":[{"uid":"c90d7c0b-68"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-534"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-538"}]},"c90d7c0b-538":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYmFkZ2UvdS1iYWRnZS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-badge/u-badge.js":"c90d7c0b-539"},"imported":[{"uid":"c90d7c0b-536"}],"importedBy":[{"uid":"c90d7c0b-444"}]},"c90d7c0b-540":{"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":"c90d7c0b-541"},"imported":[],"importedBy":[{"uid":"c90d7c0b-542"}]},"c90d7c0b-542":{"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":"c90d7c0b-543"},"imported":[{"uid":"c90d7c0b-88"},{"uid":"c90d7c0b-134"},{"uid":"c90d7c0b-132"},{"uid":"c90d7c0b-128"},{"uid":"c90d7c0b-40"},{"uid":"c90d7c0b-540"},{"uid":"c90d7c0b-38"}],"importedBy":[{"uid":"c90d7c0b-544"}]},"c90d7c0b-544":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"c90d7c0b-545"},"imported":[{"uid":"c90d7c0b-542"}],"importedBy":[{"uid":"c90d7c0b-468"}]},"c90d7c0b-546":{"id":"D:/zcweb/uniapp/temporaryworker/src/manifest-json-js","moduleParts":{},"imported":[],"importedBy":[{"uid":"c90d7c0b-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":"03bf05e2-1","name":"pages-json-js"},{"uid":"03bf05e2-3","name":"App.vue?vue&type=style&index=0&lang.scss"},{"uid":"03bf05e2-5","name":"App.vue"},{"uid":"03bf05e2-7","name":"main.ts"}]}]},{"name":"common/assets.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/static","children":[{"name":"image","children":[{"uid":"03bf05e2-9","name":"fabu.png"},{"uid":"03bf05e2-11","name":"guanli.png"},{"uid":"03bf05e2-13","name":"qiye.png"},{"uid":"03bf05e2-15","name":"server.png"},{"uid":"03bf05e2-19","name":"dingwei.png"},{"uid":"03bf05e2-21","name":"fabuding.png"}]},{"uid":"03bf05e2-17","name":"logo.png"}]}]},{"name":"common/config.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/config.js","uid":"03bf05e2-23"}]},{"name":"common/locales/en.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","uid":"03bf05e2-25"}]},{"name":"common/locales/zh.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","uid":"03bf05e2-27"}]},{"name":"common/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","uid":"03bf05e2-29"}]},{"name":"common/request/http.api.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","uid":"03bf05e2-31"}]},{"name":"common/vendor.js","children":[{"name":"node_modules","children":[{"name":"@vue/shared/dist/shared.esm-bundler.js","uid":"03bf05e2-33"},{"name":"@dcloudio","children":[{"name":"uni-i18n/dist/uni-i18n.es.js","uid":"03bf05e2-35"},{"name":"uni-shared/dist/uni-shared.es.js","uid":"03bf05e2-37"}]},{"name":"vuex/dist/vuex.esm-bundler.js","uid":"03bf05e2-47"}]},{"name":"D:/zcweb/uniapp/temporaryworker/node_modules","children":[{"name":"@dcloudio","children":[{"name":"uni-mp-weixin/dist","children":[{"uid":"03bf05e2-39","name":"uni.api.esm.js"},{"uid":"03bf05e2-45","name":"uni.mp.esm.js"}]},{"name":"uni-mp-vue/dist/vue.runtime.esm.js","uid":"03bf05e2-43"},{"name":"uni-cli-shared/lib/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js","uid":"03bf05e2-63"}]},{"name":"@intlify","children":[{"name":"shared/dist/shared.esm-bundler.js","uid":"03bf05e2-49"},{"name":"message-resolver/dist/message-resolver.esm-bundler.js","uid":"03bf05e2-51"},{"name":"runtime/dist/runtime.esm-bundler.js","uid":"03bf05e2-53"},{"name":"message-compiler/dist/message-compiler.esm-bundler.js","uid":"03bf05e2-55"},{"name":"devtools-if/dist/devtools-if.esm-bundler.js","uid":"03bf05e2-57"},{"name":"core-base/dist/core-base.esm-bundler.js","uid":"03bf05e2-59"},{"name":"vue-devtools/dist/vue-devtools.esm-bundler.js","uid":"03bf05e2-61"}]}]},{"uid":"03bf05e2-41","name":"\u0000plugin-vue:export-helper"}]},{"name":"common/setting/constVarsHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","uid":"03bf05e2-65"}]},{"name":"common/utils/commonHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","uid":"03bf05e2-67"}]},{"name":"common/utils/dbHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","uid":"03bf05e2-69"}]},{"name":"common/utils/uploadHelper.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","uid":"03bf05e2-71"}]},{"name":"components/firstui/fui-fab/bindingx.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/bindingx.js","uid":"03bf05e2-73"}]},{"name":"components/firstui/fui-fab/mpjs.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/mpjs.js","uid":"03bf05e2-75"}]},{"name":"store/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","uid":"03bf05e2-77"}]},{"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":"03bf05e2-79"}]},{"name":"uni_modules/uview-plus/libs/vue.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","uid":"03bf05e2-81"}]},{"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":"03bf05e2-83"}]},{"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":"03bf05e2-85"}]},{"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":"03bf05e2-87"}]},{"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":"03bf05e2-89"}]},{"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":"03bf05e2-91"}]},{"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":"03bf05e2-93"}]},{"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":"03bf05e2-95"}]},{"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":"03bf05e2-97"}]},{"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":"03bf05e2-99"}]},{"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":"03bf05e2-101"}]},{"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":"03bf05e2-103"}]},{"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":"03bf05e2-105"}]},{"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":"03bf05e2-107"}]},{"name":"uni_modules/uview-plus/components/u-overlay/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay/props.js","uid":"03bf05e2-109"}]},{"name":"uni_modules/uview-plus/components/u-popup/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup/props.js","uid":"03bf05e2-111"}]},{"name":"uni_modules/uview-plus/components/u-safe-bottom/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom/props.js","uid":"03bf05e2-113"}]},{"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":"03bf05e2-115"}]},{"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":"03bf05e2-117"}]},{"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":"03bf05e2-119"}]},{"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":"03bf05e2-121"}]},{"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":"03bf05e2-123"}]},{"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":"03bf05e2-125"}]},{"name":"uni_modules/uview-plus/components/u-status-bar/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar/props.js","uid":"03bf05e2-127"}]},{"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":"03bf05e2-129"}]},{"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":"03bf05e2-131"}]},{"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":"03bf05e2-133"}]},{"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":"03bf05e2-135"}]},{"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":"03bf05e2-137"}]},{"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":"03bf05e2-139"}]},{"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":"03bf05e2-141"}]},{"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":"03bf05e2-143"}]},{"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":"03bf05e2-145"}]},{"name":"uni_modules/uview-plus/components/u-upload/mixin.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-upload/mixin.js","uid":"03bf05e2-147"}]},{"name":"uni_modules/uview-plus/components/u-upload/props.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-upload/props.js","uid":"03bf05e2-149"}]},{"name":"uni_modules/uview-plus/components/u-upload/utils.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-upload/utils.js","uid":"03bf05e2-151"}]},{"name":"uni_modules/uview-plus/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","uid":"03bf05e2-153"}]},{"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":"03bf05e2-155"}]},{"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":"03bf05e2-157"}]},{"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":"03bf05e2-159"}]},{"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":"03bf05e2-161"}]},{"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":"03bf05e2-163"}]},{"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":"03bf05e2-165"}]},{"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":"03bf05e2-167"}]},{"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":"03bf05e2-169"}]},{"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":"03bf05e2-171"}]},{"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":"03bf05e2-173"}]},{"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":"03bf05e2-175"}]},{"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":"03bf05e2-177"}]},{"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":"03bf05e2-179"}]},{"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":"03bf05e2-181"}]},{"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":"03bf05e2-183"}]},{"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":"03bf05e2-185"}]},{"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":"03bf05e2-187"}]},{"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":"03bf05e2-189"}]},{"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":"03bf05e2-191"}]},{"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":"03bf05e2-193"}]},{"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":"03bf05e2-195"}]},{"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":"03bf05e2-197"}]},{"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":"03bf05e2-199"}]},{"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":"03bf05e2-201"}]},{"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":"03bf05e2-203"}]},{"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":"03bf05e2-205"}]},{"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":"03bf05e2-207"}]},{"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":"03bf05e2-209"}]},{"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":"03bf05e2-211"}]},{"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":"03bf05e2-213"}]},{"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":"03bf05e2-215"}]},{"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":"03bf05e2-217"}]},{"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":"03bf05e2-219"}]},{"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":"03bf05e2-221"}]},{"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":"03bf05e2-223"}]},{"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":"03bf05e2-225"}]},{"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":"03bf05e2-227"}]},{"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":"03bf05e2-229"}]},{"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":"03bf05e2-231"}]},{"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":"03bf05e2-233"}]},{"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":"03bf05e2-235"}]},{"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":"03bf05e2-237"}]},{"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":"03bf05e2-239"}]},{"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":"03bf05e2-241"}]},{"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":"03bf05e2-243"}]},{"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":"03bf05e2-245"}]},{"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":"03bf05e2-247"}]},{"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":"03bf05e2-249"}]},{"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":"03bf05e2-251"}]},{"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":"03bf05e2-253"}]},{"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":"03bf05e2-255"}]},{"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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-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":"03bf05e2-375"}]},{"name":"util/request/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/util/request/index.js","uid":"03bf05e2-377"}]},{"name":"util/request/interceptors.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/util/request/interceptors.js","uid":"03bf05e2-379"}]},{"name":"pages/default/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/default","children":[{"uid":"03bf05e2-381","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"03bf05e2-383","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","uid":"03bf05e2-385"}]},{"name":"pages/index/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/index","children":[{"uid":"03bf05e2-387","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"03bf05e2-389","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvaW5kZXgvaW5kZXgudnVl","uid":"03bf05e2-391"}]},{"name":"pages/mine/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"03bf05e2-393","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"03bf05e2-395","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9pbmRleC52dWU","uid":"03bf05e2-397"}]},{"name":"pages/login/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/login","children":[{"uid":"03bf05e2-399","name":"index.vue?vue&type=style&index=0&scoped=45258083&lang.scss"},{"uid":"03bf05e2-401","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvbG9naW4vaW5kZXgudnVl","uid":"03bf05e2-403"}]},{"name":"pages/detail/detail.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/detail","children":[{"uid":"03bf05e2-405","name":"detail.vue?vue&type=style&index=0&lang.css"},{"uid":"03bf05e2-407","name":"detail.vue"}]},{"name":"uniPage:/cGFnZXMvZGV0YWlsL2RldGFpbC52dWU","uid":"03bf05e2-409"}]},{"name":"pages/order/order.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue","uid":"03bf05e2-411"},{"name":"uniPage:/cGFnZXMvb3JkZXIvb3JkZXIudnVl","uid":"03bf05e2-413"}]},{"name":"pages/release/release.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/release/release.vue","uid":"03bf05e2-415"},{"name":"uniPage:/cGFnZXMvcmVsZWFzZS9yZWxlYXNlLnZ1ZQ","uid":"03bf05e2-417"}]},{"name":"pages/release/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/release","children":[{"uid":"03bf05e2-419","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"03bf05e2-421","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","uid":"03bf05e2-423"}]},{"name":"pages/wallet/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet","children":[{"uid":"03bf05e2-425","name":"index.vue?vue&type=style&index=0&lang.scss"},{"uid":"03bf05e2-427","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","uid":"03bf05e2-429"}]},{"name":"pages/mine/mine.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"03bf05e2-431","name":"mine.vue?vue&type=style&index=0&lang.css"},{"uid":"03bf05e2-433","name":"mine.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9taW5lLnZ1ZQ","uid":"03bf05e2-435"}]},{"name":"pages/mine/apply.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/mine","children":[{"uid":"03bf05e2-437","name":"apply.vue?vue&type=style&index=0&lang.css"},{"uid":"03bf05e2-439","name":"apply.vue"}]},{"name":"uniPage:/cGFnZXMvbWluZS9hcHBseS52dWU","uid":"03bf05e2-441"}]},{"name":"pages/enterprise/index.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"03bf05e2-443","name":"index.vue?vue&type=style&index=0&lang.css"},{"uid":"03bf05e2-445","name":"index.vue"}]},{"name":"uniPage:/cGFnZXMvZW50ZXJwcmlzZS9pbmRleC52dWU","uid":"03bf05e2-447"}]},{"name":"pages/enterprise/enterprise.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise","children":[{"uid":"03bf05e2-449","name":"enterprise.vue?vue&type=style&index=0&lang.css"},{"uid":"03bf05e2-451","name":"enterprise.vue"}]},{"name":"uniPage:/cGFnZXMvZW50ZXJwcmlzZS9lbnRlcnByaXNlLnZ1ZQ","uid":"03bf05e2-453"}]},{"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":"03bf05e2-455","name":"u-icon.vue?vue&type=style&index=0&scoped=bc34bf57&lang.scss"},{"uid":"03bf05e2-457","name":"u-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","uid":"03bf05e2-459"}]},{"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":"03bf05e2-461","name":"u-tag.vue?vue&type=style&index=0&scoped=90ff8a51&lang.scss"},{"uid":"03bf05e2-463","name":"u-tag.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","uid":"03bf05e2-465"}]},{"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":"03bf05e2-467","name":"u-empty.vue?vue&type=style&index=0&scoped=2eac7384&lang.scss"},{"uid":"03bf05e2-469","name":"u-empty.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","uid":"03bf05e2-471"}]},{"name":"uni_modules/uview-plus/components/u-popup/u-popup.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup","children":[{"uid":"03bf05e2-473","name":"u-popup.vue?vue&type=style&index=0&scoped=d4197e14&lang.scss"},{"uid":"03bf05e2-475","name":"u-popup.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtcG9wdXAvdS1wb3B1cC52dWU","uid":"03bf05e2-477"}]},{"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":"03bf05e2-479","name":"u-button.vue?vue&type=script&lang.ts"},{"uid":"03bf05e2-481","name":"u-button.vue?vue&type=style&index=0&scoped=52094d52&lang.scss"},{"uid":"03bf05e2-483","name":"u-button.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","uid":"03bf05e2-485"}]},{"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":"03bf05e2-487","name":"u-subsection.vue?vue&type=style&index=0&scoped=bb8563b6&lang.scss"},{"uid":"03bf05e2-489","name":"u-subsection.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","uid":"03bf05e2-491"}]},{"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":"03bf05e2-493","name":"u-sticky.vue?vue&type=style&index=0&scoped=442db378&lang.scss"},{"uid":"03bf05e2-495","name":"u-sticky.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","uid":"03bf05e2-497"}]},{"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":"03bf05e2-499","name":"u-input.vue?vue&type=style&index=0&scoped=a5e5d5c3&lang.scss"},{"uid":"03bf05e2-501","name":"u-input.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","uid":"03bf05e2-503"}]},{"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":"03bf05e2-505","name":"u-form-item.vue?vue&type=style&index=0&scoped=98223e3d&lang.scss"},{"uid":"03bf05e2-507","name":"u-form-item.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","uid":"03bf05e2-509"}]},{"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":"03bf05e2-511","name":"u-number-box.vue?vue&type=style&index=0&scoped=ff7ec725&lang.scss"},{"uid":"03bf05e2-513","name":"u-number-box.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","uid":"03bf05e2-515"}]},{"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":"03bf05e2-517","name":"u-textarea.vue?vue&type=style&index=0&scoped=574e2c9d&lang.scss"},{"uid":"03bf05e2-519","name":"u-textarea.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","uid":"03bf05e2-521"}]},{"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":"03bf05e2-523"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","uid":"03bf05e2-525"}]},{"name":"components/firstui/fui-icon/fui-icon.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon","children":[{"uid":"03bf05e2-527","name":"fui-icon.js"},{"uid":"03bf05e2-529","name":"fui-icon.vue?vue&type=style&index=0&scoped=2cb4dbf4&lang.css"},{"uid":"03bf05e2-531","name":"fui-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","uid":"03bf05e2-533"}]},{"name":"components/firstui/fui-fab/fui-fab.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab","children":[{"uid":"03bf05e2-535","name":"fui-fab.vue?vue&type=style&index=0&scoped=2c25f223&lang.css"},{"uid":"03bf05e2-537","name":"index.wxs?vue&type=wxs&index=0&src=true&name=handler&lang.wxs"},{"uid":"03bf05e2-539","name":"fui-fab.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1mYWIvZnVpLWZhYi52dWU","uid":"03bf05e2-541"}]},{"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":"03bf05e2-543","name":"u-avatar.vue?vue&type=style&index=0&scoped=4139b3f3&lang.scss"},{"uid":"03bf05e2-545","name":"u-avatar.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","uid":"03bf05e2-547"}]},{"name":"components/firstui/fui-list-cell/fui-list-cell.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list-cell","children":[{"uid":"03bf05e2-549","name":"fui-list-cell.vue?vue&type=style&index=0&scoped=77eef2c9&lang.css"},{"uid":"03bf05e2-551","name":"fui-list-cell.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","uid":"03bf05e2-553"}]},{"name":"components/firstui/fui-list/fui-list.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list","children":[{"uid":"03bf05e2-555","name":"fui-list.vue?vue&type=style&index=0&scoped=61b84bd4&lang.css"},{"uid":"03bf05e2-557","name":"fui-list.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","uid":"03bf05e2-559"}]},{"name":"components/tem/tem-upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/components/tem/tem-upload.vue","uid":"03bf05e2-561"},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy90ZW0vdGVtLXVwbG9hZC52dWU","uid":"03bf05e2-563"}]},{"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":"03bf05e2-565","name":"u-transition.vue?vue&type=style&index=0&scoped=69991aca&lang.scss"},{"uid":"03bf05e2-567","name":"u-transition.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","uid":"03bf05e2-569"}]},{"name":"uni_modules/uview-plus/components/u-overlay/u-overlay.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay","children":[{"uid":"03bf05e2-571","name":"u-overlay.vue?vue&type=style&index=0&scoped=64260431&lang.scss"},{"uid":"03bf05e2-573","name":"u-overlay.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utb3ZlcmxheS91LW92ZXJsYXkudnVl","uid":"03bf05e2-575"}]},{"name":"uni_modules/uview-plus/components/u-status-bar/u-status-bar.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar","children":[{"uid":"03bf05e2-577","name":"u-status-bar.vue?vue&type=style&index=0&scoped=96630e2e&lang.scss"},{"uid":"03bf05e2-579","name":"u-status-bar.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RhdHVzLWJhci91LXN0YXR1cy1iYXIudnVl","uid":"03bf05e2-581"}]},{"name":"uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom","children":[{"uid":"03bf05e2-583","name":"u-safe-bottom.vue?vue&type=style&index=0&scoped=3a3efedd&lang.scss"},{"uid":"03bf05e2-585","name":"u-safe-bottom.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2FmZS1ib3R0b20vdS1zYWZlLWJvdHRvbS52dWU","uid":"03bf05e2-587"}]},{"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":"03bf05e2-589","name":"u-loading-icon.vue?vue&type=style&index=0&scoped=bfe4499f&lang.scss"},{"uid":"03bf05e2-591","name":"u-loading-icon.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","uid":"03bf05e2-593"}]},{"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":"03bf05e2-595","name":"u-line.vue?vue&type=style&index=0&scoped=18143249&lang.scss"},{"uid":"03bf05e2-597","name":"u-line.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","uid":"03bf05e2-599"}]},{"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":"03bf05e2-601","name":"u-text.vue?vue&type=style&index=0&scoped=8194d41c&lang.scss"},{"uid":"03bf05e2-603","name":"u-text.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","uid":"03bf05e2-605"}]},{"name":"uni_modules/uview-plus/components/u-upload/u-upload.js","children":[{"name":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-upload","children":[{"uid":"03bf05e2-607","name":"u-upload.vue?vue&type=style&index=0&scoped=8361a029&lang.scss"},{"uid":"03bf05e2-609","name":"u-upload.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdXBsb2FkL3UtdXBsb2FkLnZ1ZQ","uid":"03bf05e2-611"}]},{"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":"03bf05e2-613","name":"u-link.vue?vue&type=style&index=0&scoped=d6e711cb&lang.scss"},{"uid":"03bf05e2-615","name":"u-link.vue"}]},{"name":"uniComponent:/RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","uid":"03bf05e2-617"}]}],"isRoot":true},"nodeParts":{"03bf05e2-1":{"renderedLength":398,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-0"},"03bf05e2-3":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-2"},"03bf05e2-5":{"renderedLength":394,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-4"},"03bf05e2-7":{"renderedLength":1381,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-6"},"03bf05e2-9":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-8"},"03bf05e2-11":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-10"},"03bf05e2-13":{"renderedLength":48,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-12"},"03bf05e2-15":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-14"},"03bf05e2-17":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-16"},"03bf05e2-19":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-18"},"03bf05e2-21":{"renderedLength":46,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-20"},"03bf05e2-23":{"renderedLength":90,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-22"},"03bf05e2-25":{"renderedLength":957,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-24"},"03bf05e2-27":{"renderedLength":721,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-26"},"03bf05e2-29":{"renderedLength":82,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-28"},"03bf05e2-31":{"renderedLength":251,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-30"},"03bf05e2-33":{"renderedLength":5863,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-32"},"03bf05e2-35":{"renderedLength":982,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-34"},"03bf05e2-37":{"renderedLength":6055,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-36"},"03bf05e2-39":{"renderedLength":32356,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-38"},"03bf05e2-41":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-40"},"03bf05e2-43":{"renderedLength":149923,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-42"},"03bf05e2-45":{"renderedLength":23003,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-44"},"03bf05e2-47":{"renderedLength":20242,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-46"},"03bf05e2-49":{"renderedLength":4688,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-48"},"03bf05e2-51":{"renderedLength":6952,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-50"},"03bf05e2-53":{"renderedLength":3962,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-52"},"03bf05e2-55":{"renderedLength":1681,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-54"},"03bf05e2-57":{"renderedLength":214,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-56"},"03bf05e2-59":{"renderedLength":24721,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-58"},"03bf05e2-61":{"renderedLength":562,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-60"},"03bf05e2-63":{"renderedLength":54238,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-62"},"03bf05e2-65":{"renderedLength":1859,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-64"},"03bf05e2-67":{"renderedLength":2078,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-66"},"03bf05e2-69":{"renderedLength":1310,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-68"},"03bf05e2-71":{"renderedLength":5467,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-70"},"03bf05e2-73":{"renderedLength":408,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-72"},"03bf05e2-75":{"renderedLength":356,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-74"},"03bf05e2-77":{"renderedLength":2272,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-76"},"03bf05e2-79":{"renderedLength":2993,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-78"},"03bf05e2-81":{"renderedLength":54,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-80"},"03bf05e2-83":{"renderedLength":5935,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-82"},"03bf05e2-85":{"renderedLength":6180,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-84"},"03bf05e2-87":{"renderedLength":6727,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-86"},"03bf05e2-89":{"renderedLength":2129,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-88"},"03bf05e2-91":{"renderedLength":2026,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-90"},"03bf05e2-93":{"renderedLength":1754,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-92"},"03bf05e2-95":{"renderedLength":7521,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-94"},"03bf05e2-97":{"renderedLength":3376,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-96"},"03bf05e2-99":{"renderedLength":7077,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-98"},"03bf05e2-101":{"renderedLength":1312,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-100"},"03bf05e2-103":{"renderedLength":1396,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-102"},"03bf05e2-105":{"renderedLength":2256,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-104"},"03bf05e2-107":{"renderedLength":4420,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-106"},"03bf05e2-109":{"renderedLength":857,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-108"},"03bf05e2-111":{"renderedLength":3187,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-110"},"03bf05e2-113":{"renderedLength":81,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-112"},"03bf05e2-115":{"renderedLength":873,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-114"},"03bf05e2-117":{"renderedLength":1010,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-116"},"03bf05e2-119":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-118"},"03bf05e2-121":{"renderedLength":581,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-120"},"03bf05e2-123":{"renderedLength":702,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-122"},"03bf05e2-125":{"renderedLength":734,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-124"},"03bf05e2-127":{"renderedLength":230,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-126"},"03bf05e2-129":{"renderedLength":1300,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-128"},"03bf05e2-131":{"renderedLength":1799,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-130"},"03bf05e2-133":{"renderedLength":3233,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-132"},"03bf05e2-135":{"renderedLength":4129,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-134"},"03bf05e2-137":{"renderedLength":4427,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-136"},"03bf05e2-139":{"renderedLength":13491,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-138"},"03bf05e2-141":{"renderedLength":4447,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-140"},"03bf05e2-143":{"renderedLength":845,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-142"},"03bf05e2-145":{"renderedLength":3135,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-144"},"03bf05e2-147":{"renderedLength":345,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-146"},"03bf05e2-149":{"renderedLength":5180,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-148"},"03bf05e2-151":{"renderedLength":3449,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-150"},"03bf05e2-153":{"renderedLength":2717,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-152"},"03bf05e2-155":{"renderedLength":7509,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-154"},"03bf05e2-157":{"renderedLength":221,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-156"},"03bf05e2-159":{"renderedLength":5812,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-158"},"03bf05e2-161":{"renderedLength":4675,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-160"},"03bf05e2-163":{"renderedLength":4601,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-162"},"03bf05e2-165":{"renderedLength":948,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-164"},"03bf05e2-167":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-166"},"03bf05e2-169":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-168"},"03bf05e2-171":{"renderedLength":488,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-170"},"03bf05e2-173":{"renderedLength":358,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-172"},"03bf05e2-175":{"renderedLength":622,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-174"},"03bf05e2-177":{"renderedLength":615,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-176"},"03bf05e2-179":{"renderedLength":487,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-178"},"03bf05e2-181":{"renderedLength":619,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-180"},"03bf05e2-183":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-182"},"03bf05e2-185":{"renderedLength":585,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-184"},"03bf05e2-187":{"renderedLength":594,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-186"},"03bf05e2-189":{"renderedLength":995,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-188"},"03bf05e2-191":{"renderedLength":1126,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-190"},"03bf05e2-193":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-192"},"03bf05e2-195":{"renderedLength":647,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-194"},"03bf05e2-197":{"renderedLength":383,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-196"},"03bf05e2-199":{"renderedLength":596,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-198"},"03bf05e2-201":{"renderedLength":718,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-200"},"03bf05e2-203":{"renderedLength":353,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-202"},"03bf05e2-205":{"renderedLength":473,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-204"},"03bf05e2-207":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-206"},"03bf05e2-209":{"renderedLength":401,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-208"},"03bf05e2-211":{"renderedLength":374,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-210"},"03bf05e2-213":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-212"},"03bf05e2-215":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-214"},"03bf05e2-217":{"renderedLength":419,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-216"},"03bf05e2-219":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-218"},"03bf05e2-221":{"renderedLength":500,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-220"},"03bf05e2-223":{"renderedLength":538,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-222"},"03bf05e2-225":{"renderedLength":492,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-224"},"03bf05e2-227":{"renderedLength":536,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-226"},"03bf05e2-229":{"renderedLength":408,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-228"},"03bf05e2-231":{"renderedLength":350,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-230"},"03bf05e2-233":{"renderedLength":357,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-232"},"03bf05e2-235":{"renderedLength":694,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-234"},"03bf05e2-237":{"renderedLength":427,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-236"},"03bf05e2-239":{"renderedLength":478,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-238"},"03bf05e2-241":{"renderedLength":1016,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-240"},"03bf05e2-243":{"renderedLength":720,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-242"},"03bf05e2-245":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-244"},"03bf05e2-247":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-246"},"03bf05e2-249":{"renderedLength":666,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-248"},"03bf05e2-251":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-250"},"03bf05e2-253":{"renderedLength":579,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-252"},"03bf05e2-255":{"renderedLength":786,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-254"},"03bf05e2-257":{"renderedLength":774,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-256"},"03bf05e2-259":{"renderedLength":28917,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-258"},"03bf05e2-261":{"renderedLength":605,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-260"},"03bf05e2-263":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-262"},"03bf05e2-265":{"renderedLength":835,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-264"},"03bf05e2-267":{"renderedLength":395,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-266"},"03bf05e2-269":{"renderedLength":389,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-268"},"03bf05e2-271":{"renderedLength":484,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-270"},"03bf05e2-273":{"renderedLength":716,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-272"},"03bf05e2-275":{"renderedLength":684,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-274"},"03bf05e2-277":{"renderedLength":582,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-276"},"03bf05e2-279":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-278"},"03bf05e2-281":{"renderedLength":587,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-280"},"03bf05e2-283":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-282"},"03bf05e2-285":{"renderedLength":348,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-284"},"03bf05e2-287":{"renderedLength":457,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-286"},"03bf05e2-289":{"renderedLength":494,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-288"},"03bf05e2-291":{"renderedLength":916,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-290"},"03bf05e2-293":{"renderedLength":535,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-292"},"03bf05e2-295":{"renderedLength":563,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-294"},"03bf05e2-297":{"renderedLength":602,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-296"},"03bf05e2-299":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-298"},"03bf05e2-301":{"renderedLength":474,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-300"},"03bf05e2-303":{"renderedLength":390,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-302"},"03bf05e2-305":{"renderedLength":442,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-304"},"03bf05e2-307":{"renderedLength":529,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-306"},"03bf05e2-309":{"renderedLength":342,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-308"},"03bf05e2-311":{"renderedLength":489,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-310"},"03bf05e2-313":{"renderedLength":966,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-312"},"03bf05e2-315":{"renderedLength":468,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-314"},"03bf05e2-317":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-316"},"03bf05e2-319":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-318"},"03bf05e2-321":{"renderedLength":435,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-320"},"03bf05e2-323":{"renderedLength":700,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-322"},"03bf05e2-325":{"renderedLength":574,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-324"},"03bf05e2-327":{"renderedLength":782,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-326"},"03bf05e2-329":{"renderedLength":773,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-328"},"03bf05e2-331":{"renderedLength":617,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-330"},"03bf05e2-333":{"renderedLength":467,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-332"},"03bf05e2-335":{"renderedLength":559,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-334"},"03bf05e2-337":{"renderedLength":430,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-336"},"03bf05e2-339":{"renderedLength":785,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-338"},"03bf05e2-341":{"renderedLength":2672,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-340"},"03bf05e2-343":{"renderedLength":2342,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-342"},"03bf05e2-345":{"renderedLength":1984,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-344"},"03bf05e2-347":{"renderedLength":692,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-346"},"03bf05e2-349":{"renderedLength":528,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-348"},"03bf05e2-351":{"renderedLength":3369,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-350"},"03bf05e2-353":{"renderedLength":1199,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-352"},"03bf05e2-355":{"renderedLength":106,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-354"},"03bf05e2-357":{"renderedLength":2368,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-356"},"03bf05e2-359":{"renderedLength":337,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-358"},"03bf05e2-361":{"renderedLength":8405,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-360"},"03bf05e2-363":{"renderedLength":545,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-362"},"03bf05e2-365":{"renderedLength":366,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-364"},"03bf05e2-367":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-366"},"03bf05e2-369":{"renderedLength":364,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-368"},"03bf05e2-371":{"renderedLength":725,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-370"},"03bf05e2-373":{"renderedLength":706,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-372"},"03bf05e2-375":{"renderedLength":27130,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-374"},"03bf05e2-377":{"renderedLength":380,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-376"},"03bf05e2-379":{"renderedLength":1491,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-378"},"03bf05e2-381":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-380"},"03bf05e2-383":{"renderedLength":1687,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-382"},"03bf05e2-385":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-384"},"03bf05e2-387":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-386"},"03bf05e2-389":{"renderedLength":3279,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-388"},"03bf05e2-391":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-390"},"03bf05e2-393":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-392"},"03bf05e2-395":{"renderedLength":7478,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-394"},"03bf05e2-397":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-396"},"03bf05e2-399":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-398"},"03bf05e2-401":{"renderedLength":14549,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-400"},"03bf05e2-403":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-402"},"03bf05e2-405":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-404"},"03bf05e2-407":{"renderedLength":1640,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-406"},"03bf05e2-409":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-408"},"03bf05e2-411":{"renderedLength":2163,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-410"},"03bf05e2-413":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-412"},"03bf05e2-415":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-414"},"03bf05e2-417":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-416"},"03bf05e2-419":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-418"},"03bf05e2-421":{"renderedLength":7704,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-420"},"03bf05e2-423":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-422"},"03bf05e2-425":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-424"},"03bf05e2-427":{"renderedLength":1441,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-426"},"03bf05e2-429":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-428"},"03bf05e2-431":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-430"},"03bf05e2-433":{"renderedLength":1627,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-432"},"03bf05e2-435":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-434"},"03bf05e2-437":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-436"},"03bf05e2-439":{"renderedLength":5062,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-438"},"03bf05e2-441":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-440"},"03bf05e2-443":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-442"},"03bf05e2-445":{"renderedLength":1738,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-444"},"03bf05e2-447":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-446"},"03bf05e2-449":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-448"},"03bf05e2-451":{"renderedLength":5201,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-450"},"03bf05e2-453":{"renderedLength":31,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-452"},"03bf05e2-455":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-454"},"03bf05e2-457":{"renderedLength":6290,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-456"},"03bf05e2-459":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-458"},"03bf05e2-461":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-460"},"03bf05e2-463":{"renderedLength":5580,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-462"},"03bf05e2-465":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-464"},"03bf05e2-467":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-466"},"03bf05e2-469":{"renderedLength":4038,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-468"},"03bf05e2-471":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-470"},"03bf05e2-473":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-472"},"03bf05e2-475":{"renderedLength":8931,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-474"},"03bf05e2-477":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-476"},"03bf05e2-479":{"renderedLength":3576,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-478"},"03bf05e2-481":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-480"},"03bf05e2-483":{"renderedLength":2670,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-482"},"03bf05e2-485":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-484"},"03bf05e2-487":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-486"},"03bf05e2-489":{"renderedLength":7128,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-488"},"03bf05e2-491":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-490"},"03bf05e2-493":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-492"},"03bf05e2-495":{"renderedLength":6628,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-494"},"03bf05e2-497":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-496"},"03bf05e2-499":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-498"},"03bf05e2-501":{"renderedLength":14113,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-500"},"03bf05e2-503":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-502"},"03bf05e2-505":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-504"},"03bf05e2-507":{"renderedLength":5696,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-506"},"03bf05e2-509":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-508"},"03bf05e2-511":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-510"},"03bf05e2-513":{"renderedLength":11970,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-512"},"03bf05e2-515":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-514"},"03bf05e2-517":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-516"},"03bf05e2-519":{"renderedLength":9049,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-518"},"03bf05e2-521":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-520"},"03bf05e2-523":{"renderedLength":6533,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-522"},"03bf05e2-525":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-524"},"03bf05e2-527":{"renderedLength":4098,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-526"},"03bf05e2-529":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-528"},"03bf05e2-531":{"renderedLength":2806,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-530"},"03bf05e2-533":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-532"},"03bf05e2-535":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-534"},"03bf05e2-537":{"renderedLength":18,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-536"},"03bf05e2-539":{"renderedLength":8832,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-538"},"03bf05e2-541":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-540"},"03bf05e2-543":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-542"},"03bf05e2-545":{"renderedLength":9787,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-544"},"03bf05e2-547":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-546"},"03bf05e2-549":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-548"},"03bf05e2-551":{"renderedLength":4058,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-550"},"03bf05e2-553":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-552"},"03bf05e2-555":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-554"},"03bf05e2-557":{"renderedLength":3296,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-556"},"03bf05e2-559":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-558"},"03bf05e2-561":{"renderedLength":2171,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-560"},"03bf05e2-563":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-562"},"03bf05e2-565":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-564"},"03bf05e2-567":{"renderedLength":2815,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-566"},"03bf05e2-569":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-568"},"03bf05e2-571":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-570"},"03bf05e2-573":{"renderedLength":2211,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-572"},"03bf05e2-575":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-574"},"03bf05e2-577":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-576"},"03bf05e2-579":{"renderedLength":1555,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-578"},"03bf05e2-581":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-580"},"03bf05e2-583":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-582"},"03bf05e2-585":{"renderedLength":1528,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-584"},"03bf05e2-587":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-586"},"03bf05e2-589":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-588"},"03bf05e2-591":{"renderedLength":5260,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-590"},"03bf05e2-593":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-592"},"03bf05e2-595":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-594"},"03bf05e2-597":{"renderedLength":2603,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-596"},"03bf05e2-599":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-598"},"03bf05e2-601":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-600"},"03bf05e2-603":{"renderedLength":7024,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-602"},"03bf05e2-605":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-604"},"03bf05e2-607":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-606"},"03bf05e2-609":{"renderedLength":12545,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-608"},"03bf05e2-611":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-610"},"03bf05e2-613":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-612"},"03bf05e2-615":{"renderedLength":2880,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-614"},"03bf05e2-617":{"renderedLength":30,"gzipLength":0,"brotliLength":0,"metaUid":"03bf05e2-616"}},"nodeMetas":{"03bf05e2-0":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages-json-js","moduleParts":{"app.js":"03bf05e2-1"},"imported":[{"uid":"03bf05e2-618"},{"uid":"03bf05e2-384","dynamic":true},{"uid":"03bf05e2-390","dynamic":true},{"uid":"03bf05e2-396","dynamic":true},{"uid":"03bf05e2-402","dynamic":true},{"uid":"03bf05e2-408","dynamic":true},{"uid":"03bf05e2-412","dynamic":true},{"uid":"03bf05e2-416","dynamic":true},{"uid":"03bf05e2-422","dynamic":true},{"uid":"03bf05e2-428","dynamic":true},{"uid":"03bf05e2-434","dynamic":true},{"uid":"03bf05e2-440","dynamic":true},{"uid":"03bf05e2-446","dynamic":true},{"uid":"03bf05e2-452","dynamic":true}],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-2":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue?vue&type=style&index=0&lang.scss","moduleParts":{"app.js":"03bf05e2-3"},"imported":[],"importedBy":[{"uid":"03bf05e2-4"}]},"03bf05e2-4":{"id":"D:/zcweb/uniapp/temporaryworker/src/App.vue","moduleParts":{"app.js":"03bf05e2-5"},"imported":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-2"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-6":{"id":"D:/zcweb/uniapp/temporaryworker/src/main.ts","moduleParts":{"app.js":"03bf05e2-7"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-44"},{"uid":"03bf05e2-0"},{"uid":"03bf05e2-4"},{"uid":"03bf05e2-76"},{"uid":"03bf05e2-152"},{"uid":"03bf05e2-70"},{"uid":"03bf05e2-66"},{"uid":"03bf05e2-68"},{"uid":"03bf05e2-64"},{"uid":"03bf05e2-30"},{"uid":"03bf05e2-26"},{"uid":"03bf05e2-24"},{"uid":"03bf05e2-370"},{"uid":"03bf05e2-28"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-62"},{"uid":"03bf05e2-376"}],"importedBy":[],"isEntry":true},"03bf05e2-8":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/fabu.png","moduleParts":{"common/assets.js":"03bf05e2-9"},"imported":[],"importedBy":[{"uid":"03bf05e2-394"}]},"03bf05e2-10":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/guanli.png","moduleParts":{"common/assets.js":"03bf05e2-11"},"imported":[],"importedBy":[{"uid":"03bf05e2-394"}]},"03bf05e2-12":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/qiye.png","moduleParts":{"common/assets.js":"03bf05e2-13"},"imported":[],"importedBy":[{"uid":"03bf05e2-394"}]},"03bf05e2-14":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/server.png","moduleParts":{"common/assets.js":"03bf05e2-15"},"imported":[],"importedBy":[{"uid":"03bf05e2-394"}]},"03bf05e2-16":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/logo.png","moduleParts":{"common/assets.js":"03bf05e2-17"},"imported":[],"importedBy":[{"uid":"03bf05e2-400"},{"uid":"03bf05e2-406"}]},"03bf05e2-18":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/dingwei.png","moduleParts":{"common/assets.js":"03bf05e2-19"},"imported":[],"importedBy":[{"uid":"03bf05e2-406"}]},"03bf05e2-20":{"id":"D:/zcweb/uniapp/temporaryworker/src/static/image/fabuding.png","moduleParts":{"common/assets.js":"03bf05e2-21"},"imported":[],"importedBy":[{"uid":"03bf05e2-406"}]},"03bf05e2-22":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/config.js","moduleParts":{"common/config.js":"03bf05e2-23"},"imported":[],"importedBy":[{"uid":"03bf05e2-376"}]},"03bf05e2-24":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/en.js","moduleParts":{"common/locales/en.js":"03bf05e2-25"},"imported":[],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-26":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/locales/zh.js","moduleParts":{"common/locales/zh.js":"03bf05e2-27"},"imported":[],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-28":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/mixin.js","moduleParts":{"common/mixin.js":"03bf05e2-29"},"imported":[],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-30":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/request/http.api.js","moduleParts":{"common/request/http.api.js":"03bf05e2-31"},"imported":[{"uid":"03bf05e2-38"}],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-32":{"id":"\\node_modules\\@vue\\shared\\dist\\shared.esm-bundler.js","moduleParts":{"common/vendor.js":"03bf05e2-33"},"imported":[],"importedBy":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-44"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-36"}]},"03bf05e2-34":{"id":"\\node_modules\\@dcloudio\\uni-i18n\\dist\\uni-i18n.es.js","moduleParts":{"common/vendor.js":"03bf05e2-35"},"imported":[{"uid":"03bf05e2-38"}],"importedBy":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-44"}]},"03bf05e2-36":{"id":"\\node_modules\\@dcloudio\\uni-shared\\dist\\uni-shared.es.js","moduleParts":{"common/vendor.js":"03bf05e2-37"},"imported":[{"uid":"03bf05e2-32"}],"importedBy":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-44"},{"uid":"03bf05e2-42"}]},"03bf05e2-38":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.api.esm.js","moduleParts":{"common/vendor.js":"03bf05e2-39"},"imported":[{"uid":"03bf05e2-32"},{"uid":"03bf05e2-34"},{"uid":"03bf05e2-36"}],"importedBy":[{"uid":"03bf05e2-6"},{"uid":"03bf05e2-152"},{"uid":"03bf05e2-70"},{"uid":"03bf05e2-66"},{"uid":"03bf05e2-68"},{"uid":"03bf05e2-30"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-34"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-160"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-382"},{"uid":"03bf05e2-388"},{"uid":"03bf05e2-394"},{"uid":"03bf05e2-400"},{"uid":"03bf05e2-426"},{"uid":"03bf05e2-432"},{"uid":"03bf05e2-444"},{"uid":"03bf05e2-488"},{"uid":"03bf05e2-494"},{"uid":"03bf05e2-530"},{"uid":"03bf05e2-538"},{"uid":"03bf05e2-550"},{"uid":"03bf05e2-342"},{"uid":"03bf05e2-602"},{"uid":"03bf05e2-608"},{"uid":"03bf05e2-150"},{"uid":"03bf05e2-614"}]},"03bf05e2-40":{"id":"\u0000plugin-vue:export-helper","moduleParts":{"common/vendor.js":"03bf05e2-41"},"imported":[],"importedBy":[{"uid":"03bf05e2-6"},{"uid":"03bf05e2-4"},{"uid":"03bf05e2-382"},{"uid":"03bf05e2-388"},{"uid":"03bf05e2-394"},{"uid":"03bf05e2-400"},{"uid":"03bf05e2-406"},{"uid":"03bf05e2-410"},{"uid":"03bf05e2-414"},{"uid":"03bf05e2-420"},{"uid":"03bf05e2-426"},{"uid":"03bf05e2-432"},{"uid":"03bf05e2-438"},{"uid":"03bf05e2-444"},{"uid":"03bf05e2-450"},{"uid":"03bf05e2-456"},{"uid":"03bf05e2-462"},{"uid":"03bf05e2-468"},{"uid":"03bf05e2-474"},{"uid":"03bf05e2-482"},{"uid":"03bf05e2-488"},{"uid":"03bf05e2-494"},{"uid":"03bf05e2-500"},{"uid":"03bf05e2-506"},{"uid":"03bf05e2-512"},{"uid":"03bf05e2-518"},{"uid":"03bf05e2-522"},{"uid":"03bf05e2-530"},{"uid":"03bf05e2-538"},{"uid":"03bf05e2-544"},{"uid":"03bf05e2-550"},{"uid":"03bf05e2-556"},{"uid":"03bf05e2-560"},{"uid":"03bf05e2-566"},{"uid":"03bf05e2-572"},{"uid":"03bf05e2-578"},{"uid":"03bf05e2-584"},{"uid":"03bf05e2-590"},{"uid":"03bf05e2-596"},{"uid":"03bf05e2-602"},{"uid":"03bf05e2-608"},{"uid":"03bf05e2-614"}]},"03bf05e2-42":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-vue/dist/vue.runtime.esm.js","moduleParts":{"common/vendor.js":"03bf05e2-43"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-36"},{"uid":"03bf05e2-32"}],"importedBy":[{"uid":"03bf05e2-6"},{"uid":"03bf05e2-44"},{"uid":"03bf05e2-62"},{"uid":"03bf05e2-46"},{"uid":"03bf05e2-382"},{"uid":"03bf05e2-388"},{"uid":"03bf05e2-394"},{"uid":"03bf05e2-400"},{"uid":"03bf05e2-406"},{"uid":"03bf05e2-410"},{"uid":"03bf05e2-420"},{"uid":"03bf05e2-426"},{"uid":"03bf05e2-432"},{"uid":"03bf05e2-438"},{"uid":"03bf05e2-444"},{"uid":"03bf05e2-450"},{"uid":"03bf05e2-456"},{"uid":"03bf05e2-462"},{"uid":"03bf05e2-468"},{"uid":"03bf05e2-474"},{"uid":"03bf05e2-482"},{"uid":"03bf05e2-488"},{"uid":"03bf05e2-494"},{"uid":"03bf05e2-500"},{"uid":"03bf05e2-506"},{"uid":"03bf05e2-512"},{"uid":"03bf05e2-518"},{"uid":"03bf05e2-530"},{"uid":"03bf05e2-538"},{"uid":"03bf05e2-544"},{"uid":"03bf05e2-550"},{"uid":"03bf05e2-556"},{"uid":"03bf05e2-560"},{"uid":"03bf05e2-566"},{"uid":"03bf05e2-572"},{"uid":"03bf05e2-578"},{"uid":"03bf05e2-584"},{"uid":"03bf05e2-590"},{"uid":"03bf05e2-596"},{"uid":"03bf05e2-602"},{"uid":"03bf05e2-608"},{"uid":"03bf05e2-144"},{"uid":"03bf05e2-614"}]},"03bf05e2-44":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@dcloudio/uni-mp-weixin/dist/uni.mp.esm.js","moduleParts":{"common/vendor.js":"03bf05e2-45"},"imported":[{"uid":"03bf05e2-36"},{"uid":"03bf05e2-32"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-34"}],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-46":{"id":"\\node_modules\\vuex\\dist\\vuex.esm-bundler.js","moduleParts":{"common/vendor.js":"03bf05e2-47"},"imported":[{"uid":"03bf05e2-42"}],"importedBy":[{"uid":"03bf05e2-76"}]},"03bf05e2-48":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/shared/dist/shared.esm-bundler.js","moduleParts":{"common/vendor.js":"03bf05e2-49"},"imported":[],"importedBy":[{"uid":"03bf05e2-62"},{"uid":"03bf05e2-58"},{"uid":"03bf05e2-52"},{"uid":"03bf05e2-54"}]},"03bf05e2-50":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-resolver/dist/message-resolver.esm-bundler.js","moduleParts":{"common/vendor.js":"03bf05e2-51"},"imported":[],"importedBy":[{"uid":"03bf05e2-58"}]},"03bf05e2-52":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/runtime/dist/runtime.esm-bundler.js","moduleParts":{"common/vendor.js":"03bf05e2-53"},"imported":[{"uid":"03bf05e2-48"}],"importedBy":[{"uid":"03bf05e2-58"}]},"03bf05e2-54":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/message-compiler/dist/message-compiler.esm-bundler.js","moduleParts":{"common/vendor.js":"03bf05e2-55"},"imported":[{"uid":"03bf05e2-48"}],"importedBy":[{"uid":"03bf05e2-58"}]},"03bf05e2-56":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/devtools-if/dist/devtools-if.esm-bundler.js","moduleParts":{"common/vendor.js":"03bf05e2-57"},"imported":[],"importedBy":[{"uid":"03bf05e2-58"}]},"03bf05e2-58":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/core-base/dist/core-base.esm-bundler.js","moduleParts":{"common/vendor.js":"03bf05e2-59"},"imported":[{"uid":"03bf05e2-48"},{"uid":"03bf05e2-50"},{"uid":"03bf05e2-52"},{"uid":"03bf05e2-54"},{"uid":"03bf05e2-56"}],"importedBy":[{"uid":"03bf05e2-62"}]},"03bf05e2-60":{"id":"D:/zcweb/uniapp/temporaryworker/node_modules/@intlify/vue-devtools/dist/vue-devtools.esm-bundler.js","moduleParts":{"common/vendor.js":"03bf05e2-61"},"imported":[],"importedBy":[{"uid":"03bf05e2-62"}]},"03bf05e2-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":"03bf05e2-63"},"imported":[{"uid":"03bf05e2-48"},{"uid":"03bf05e2-58"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-60"}],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-64":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/setting/constVarsHelper.js","moduleParts":{"common/setting/constVarsHelper.js":"03bf05e2-65"},"imported":[],"importedBy":[{"uid":"03bf05e2-6"},{"uid":"03bf05e2-70"}]},"03bf05e2-66":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/commonHelper.js","moduleParts":{"common/utils/commonHelper.js":"03bf05e2-67"},"imported":[{"uid":"03bf05e2-38"}],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-68":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/dbHelper.js","moduleParts":{"common/utils/dbHelper.js":"03bf05e2-69"},"imported":[{"uid":"03bf05e2-38"}],"importedBy":[{"uid":"03bf05e2-6"},{"uid":"03bf05e2-70"}]},"03bf05e2-70":{"id":"D:/zcweb/uniapp/temporaryworker/src/common/utils/uploadHelper.js","moduleParts":{"common/utils/uploadHelper.js":"03bf05e2-71"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-64"},{"uid":"03bf05e2-68"}],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-72":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/bindingx.js","moduleParts":{"components/firstui/fui-fab/bindingx.js":"03bf05e2-73"},"imported":[],"importedBy":[{"uid":"03bf05e2-538"}]},"03bf05e2-74":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/mpjs.js","moduleParts":{"components/firstui/fui-fab/mpjs.js":"03bf05e2-75"},"imported":[],"importedBy":[{"uid":"03bf05e2-538"}]},"03bf05e2-76":{"id":"D:/zcweb/uniapp/temporaryworker/src/store/index.js","moduleParts":{"store/index.js":"03bf05e2-77"},"imported":[{"uid":"03bf05e2-46"}],"importedBy":[{"uid":"03bf05e2-6"},{"uid":"03bf05e2-378"}]},"03bf05e2-78":{"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":"03bf05e2-79"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"},{"uid":"03bf05e2-84"}],"importedBy":[{"uid":"03bf05e2-544"}]},"03bf05e2-80":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/vue.js","moduleParts":{"uni_modules/uview-plus/libs/vue.js":"03bf05e2-81"},"imported":[],"importedBy":[{"uid":"03bf05e2-370"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-96"},{"uid":"03bf05e2-132"},{"uid":"03bf05e2-88"},{"uid":"03bf05e2-110"},{"uid":"03bf05e2-130"},{"uid":"03bf05e2-128"},{"uid":"03bf05e2-98"},{"uid":"03bf05e2-90"},{"uid":"03bf05e2-106"},{"uid":"03bf05e2-140"},{"uid":"03bf05e2-92"},{"uid":"03bf05e2-78"},{"uid":"03bf05e2-368"},{"uid":"03bf05e2-372"},{"uid":"03bf05e2-86"},{"uid":"03bf05e2-142"},{"uid":"03bf05e2-108"},{"uid":"03bf05e2-126"},{"uid":"03bf05e2-112"},{"uid":"03bf05e2-104"},{"uid":"03bf05e2-100"},{"uid":"03bf05e2-134"},{"uid":"03bf05e2-148"},{"uid":"03bf05e2-102"}]},"03bf05e2-82":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/props.js","moduleParts":{"uni_modules/uview-plus/libs/config/props.js":"03bf05e2-83"},"imported":[{"uid":"03bf05e2-114"},{"uid":"03bf05e2-174"},{"uid":"03bf05e2-176"},{"uid":"03bf05e2-178"},{"uid":"03bf05e2-180"},{"uid":"03bf05e2-182"},{"uid":"03bf05e2-184"},{"uid":"03bf05e2-186"},{"uid":"03bf05e2-188"},{"uid":"03bf05e2-190"},{"uid":"03bf05e2-192"},{"uid":"03bf05e2-194"},{"uid":"03bf05e2-196"},{"uid":"03bf05e2-198"},{"uid":"03bf05e2-200"},{"uid":"03bf05e2-202"},{"uid":"03bf05e2-204"},{"uid":"03bf05e2-206"},{"uid":"03bf05e2-208"},{"uid":"03bf05e2-210"},{"uid":"03bf05e2-212"},{"uid":"03bf05e2-214"},{"uid":"03bf05e2-216"},{"uid":"03bf05e2-218"},{"uid":"03bf05e2-116"},{"uid":"03bf05e2-220"},{"uid":"03bf05e2-222"},{"uid":"03bf05e2-224"},{"uid":"03bf05e2-226"},{"uid":"03bf05e2-228"},{"uid":"03bf05e2-230"},{"uid":"03bf05e2-232"},{"uid":"03bf05e2-118"},{"uid":"03bf05e2-234"},{"uid":"03bf05e2-236"},{"uid":"03bf05e2-238"},{"uid":"03bf05e2-240"},{"uid":"03bf05e2-242"},{"uid":"03bf05e2-244"},{"uid":"03bf05e2-246"},{"uid":"03bf05e2-120"},{"uid":"03bf05e2-248"},{"uid":"03bf05e2-250"},{"uid":"03bf05e2-122"},{"uid":"03bf05e2-252"},{"uid":"03bf05e2-254"},{"uid":"03bf05e2-256"},{"uid":"03bf05e2-124"},{"uid":"03bf05e2-258"},{"uid":"03bf05e2-260"},{"uid":"03bf05e2-262"},{"uid":"03bf05e2-264"},{"uid":"03bf05e2-266"},{"uid":"03bf05e2-268"},{"uid":"03bf05e2-270"},{"uid":"03bf05e2-272"},{"uid":"03bf05e2-274"},{"uid":"03bf05e2-276"},{"uid":"03bf05e2-278"},{"uid":"03bf05e2-280"},{"uid":"03bf05e2-282"},{"uid":"03bf05e2-284"},{"uid":"03bf05e2-286"},{"uid":"03bf05e2-288"},{"uid":"03bf05e2-290"},{"uid":"03bf05e2-292"},{"uid":"03bf05e2-294"},{"uid":"03bf05e2-296"},{"uid":"03bf05e2-298"},{"uid":"03bf05e2-300"},{"uid":"03bf05e2-302"},{"uid":"03bf05e2-304"},{"uid":"03bf05e2-306"},{"uid":"03bf05e2-308"},{"uid":"03bf05e2-310"},{"uid":"03bf05e2-312"},{"uid":"03bf05e2-314"},{"uid":"03bf05e2-316"},{"uid":"03bf05e2-318"},{"uid":"03bf05e2-320"},{"uid":"03bf05e2-322"},{"uid":"03bf05e2-324"},{"uid":"03bf05e2-326"},{"uid":"03bf05e2-328"},{"uid":"03bf05e2-330"},{"uid":"03bf05e2-332"},{"uid":"03bf05e2-334"},{"uid":"03bf05e2-336"},{"uid":"03bf05e2-338"}],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-506"},{"uid":"03bf05e2-96"},{"uid":"03bf05e2-132"},{"uid":"03bf05e2-88"},{"uid":"03bf05e2-110"},{"uid":"03bf05e2-130"},{"uid":"03bf05e2-128"},{"uid":"03bf05e2-98"},{"uid":"03bf05e2-90"},{"uid":"03bf05e2-106"},{"uid":"03bf05e2-140"},{"uid":"03bf05e2-92"},{"uid":"03bf05e2-78"},{"uid":"03bf05e2-86"},{"uid":"03bf05e2-142"},{"uid":"03bf05e2-108"},{"uid":"03bf05e2-126"},{"uid":"03bf05e2-112"},{"uid":"03bf05e2-104"},{"uid":"03bf05e2-100"},{"uid":"03bf05e2-134"},{"uid":"03bf05e2-148"},{"uid":"03bf05e2-102"}]},"03bf05e2-84":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/test.js","moduleParts":{"uni_modules/uview-plus/libs/function/test.js":"03bf05e2-85"},"imported":[],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-462"},{"uid":"03bf05e2-522"},{"uid":"03bf05e2-78"},{"uid":"03bf05e2-608"},{"uid":"03bf05e2-136"}]},"03bf05e2-86":{"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":"03bf05e2-87"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-478"}]},"03bf05e2-88":{"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":"03bf05e2-89"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-468"}]},"03bf05e2-90":{"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":"03bf05e2-91"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-506"}]},"03bf05e2-92":{"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":"03bf05e2-93"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-522"}]},"03bf05e2-94":{"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":"03bf05e2-95"},"imported":[],"importedBy":[{"uid":"03bf05e2-456"}]},"03bf05e2-96":{"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":"03bf05e2-97"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-456"}]},"03bf05e2-98":{"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":"03bf05e2-99"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-500"}]},"03bf05e2-100":{"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":"03bf05e2-101"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-596"}]},"03bf05e2-102":{"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":"03bf05e2-103"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-614"}]},"03bf05e2-104":{"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":"03bf05e2-105"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-590"}]},"03bf05e2-106":{"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":"03bf05e2-107"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-512"}]},"03bf05e2-108":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay/props.js","moduleParts":{"uni_modules/uview-plus/components/u-overlay/props.js":"03bf05e2-109"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-572"}]},"03bf05e2-110":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup/props.js","moduleParts":{"uni_modules/uview-plus/components/u-popup/props.js":"03bf05e2-111"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-474"}]},"03bf05e2-112":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom/props.js","moduleParts":{"uni_modules/uview-plus/components/u-safe-bottom/props.js":"03bf05e2-113"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-584"}]},"03bf05e2-114":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/config.js","moduleParts":{"uni_modules/uview-plus/libs/config/config.js":"03bf05e2-115"},"imported":[],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-82"},{"uid":"03bf05e2-118"},{"uid":"03bf05e2-120"},{"uid":"03bf05e2-122"},{"uid":"03bf05e2-456"}]},"03bf05e2-116":{"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":"03bf05e2-117"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-118":{"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":"03bf05e2-119"},"imported":[{"uid":"03bf05e2-114"}],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-120":{"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":"03bf05e2-121"},"imported":[{"uid":"03bf05e2-114"}],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-122":{"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":"03bf05e2-123"},"imported":[{"uid":"03bf05e2-114"}],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-124":{"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":"03bf05e2-125"},"imported":[{"uid":"03bf05e2-170"}],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-126":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar/props.js","moduleParts":{"uni_modules/uview-plus/components/u-status-bar/props.js":"03bf05e2-127"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-578"}]},"03bf05e2-128":{"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":"03bf05e2-129"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-494"}]},"03bf05e2-130":{"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":"03bf05e2-131"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-488"}]},"03bf05e2-132":{"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":"03bf05e2-133"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-462"}]},"03bf05e2-134":{"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":"03bf05e2-135"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-602"}]},"03bf05e2-136":{"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":"03bf05e2-137"},"imported":[{"uid":"03bf05e2-138"},{"uid":"03bf05e2-84"}],"importedBy":[{"uid":"03bf05e2-602"}]},"03bf05e2-138":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/index.js","moduleParts":{"uni_modules/uview-plus/libs/function/index.js":"03bf05e2-139"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-84"},{"uid":"03bf05e2-340"},{"uid":"03bf05e2-114"}],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-370"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-160"},{"uid":"03bf05e2-456"},{"uid":"03bf05e2-468"},{"uid":"03bf05e2-474"},{"uid":"03bf05e2-488"},{"uid":"03bf05e2-494"},{"uid":"03bf05e2-500"},{"uid":"03bf05e2-506"},{"uid":"03bf05e2-512"},{"uid":"03bf05e2-518"},{"uid":"03bf05e2-522"},{"uid":"03bf05e2-544"},{"uid":"03bf05e2-478"},{"uid":"03bf05e2-566"},{"uid":"03bf05e2-572"},{"uid":"03bf05e2-578"},{"uid":"03bf05e2-584"},{"uid":"03bf05e2-590"},{"uid":"03bf05e2-596"},{"uid":"03bf05e2-602"},{"uid":"03bf05e2-608"},{"uid":"03bf05e2-144"},{"uid":"03bf05e2-136"},{"uid":"03bf05e2-146"},{"uid":"03bf05e2-614"}]},"03bf05e2-140":{"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":"03bf05e2-141"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-518"}]},"03bf05e2-142":{"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":"03bf05e2-143"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-566"}]},"03bf05e2-144":{"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":"03bf05e2-145"},"imported":[{"uid":"03bf05e2-42"},{"uid":"03bf05e2-138"}],"importedBy":[{"uid":"03bf05e2-566"}]},"03bf05e2-146":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-upload/mixin.js","moduleParts":{"uni_modules/uview-plus/components/u-upload/mixin.js":"03bf05e2-147"},"imported":[{"uid":"03bf05e2-138"}],"importedBy":[{"uid":"03bf05e2-608"}]},"03bf05e2-148":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-upload/props.js","moduleParts":{"uni_modules/uview-plus/components/u-upload/props.js":"03bf05e2-149"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-82"}],"importedBy":[{"uid":"03bf05e2-608"}]},"03bf05e2-150":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-upload/utils.js","moduleParts":{"uni_modules/uview-plus/components/u-upload/utils.js":"03bf05e2-151"},"imported":[{"uid":"03bf05e2-38"}],"importedBy":[{"uid":"03bf05e2-608"}]},"03bf05e2-152":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/index.js","moduleParts":{"uni_modules/uview-plus/index.js":"03bf05e2-153"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-366"},{"uid":"03bf05e2-160"},{"uid":"03bf05e2-162"},{"uid":"03bf05e2-84"},{"uid":"03bf05e2-164"},{"uid":"03bf05e2-166"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-114"},{"uid":"03bf05e2-82"},{"uid":"03bf05e2-168"},{"uid":"03bf05e2-170"},{"uid":"03bf05e2-172"}],"importedBy":[{"uid":"03bf05e2-6"},{"uid":"03bf05e2-4"},{"uid":"03bf05e2-376"},{"uid":"03bf05e2-378"}]},"03bf05e2-154":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mixin.js":"03bf05e2-155"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-80"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-84"},{"uid":"03bf05e2-160"}],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-456"},{"uid":"03bf05e2-462"},{"uid":"03bf05e2-468"},{"uid":"03bf05e2-474"},{"uid":"03bf05e2-488"},{"uid":"03bf05e2-494"},{"uid":"03bf05e2-500"},{"uid":"03bf05e2-506"},{"uid":"03bf05e2-512"},{"uid":"03bf05e2-518"},{"uid":"03bf05e2-522"},{"uid":"03bf05e2-544"},{"uid":"03bf05e2-478"},{"uid":"03bf05e2-566"},{"uid":"03bf05e2-572"},{"uid":"03bf05e2-578"},{"uid":"03bf05e2-584"},{"uid":"03bf05e2-590"},{"uid":"03bf05e2-596"},{"uid":"03bf05e2-602"},{"uid":"03bf05e2-608"},{"uid":"03bf05e2-614"}]},"03bf05e2-156":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpMixin.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpMixin.js":"03bf05e2-157"},"imported":[{"uid":"03bf05e2-80"}],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-456"},{"uid":"03bf05e2-462"},{"uid":"03bf05e2-468"},{"uid":"03bf05e2-474"},{"uid":"03bf05e2-488"},{"uid":"03bf05e2-494"},{"uid":"03bf05e2-500"},{"uid":"03bf05e2-506"},{"uid":"03bf05e2-512"},{"uid":"03bf05e2-518"},{"uid":"03bf05e2-522"},{"uid":"03bf05e2-544"},{"uid":"03bf05e2-478"},{"uid":"03bf05e2-566"},{"uid":"03bf05e2-572"},{"uid":"03bf05e2-578"},{"uid":"03bf05e2-584"},{"uid":"03bf05e2-590"},{"uid":"03bf05e2-596"},{"uid":"03bf05e2-602"},{"uid":"03bf05e2-608"},{"uid":"03bf05e2-614"}]},"03bf05e2-158":{"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":"03bf05e2-159"},"imported":[{"uid":"03bf05e2-354"},{"uid":"03bf05e2-352"},{"uid":"03bf05e2-356"},{"uid":"03bf05e2-358"},{"uid":"03bf05e2-350"},{"uid":"03bf05e2-360"}],"importedBy":[{"uid":"03bf05e2-366"}]},"03bf05e2-160":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/util/route.js","moduleParts":{"uni_modules/uview-plus/libs/util/route.js":"03bf05e2-161"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-138"}],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-154"}]},"03bf05e2-162":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/colorGradient.js","moduleParts":{"uni_modules/uview-plus/libs/function/colorGradient.js":"03bf05e2-163"},"imported":[],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-590"}]},"03bf05e2-164":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/debounce.js","moduleParts":{"uni_modules/uview-plus/libs/function/debounce.js":"03bf05e2-165"},"imported":[],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-500"}]},"03bf05e2-166":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/throttle.js","moduleParts":{"uni_modules/uview-plus/libs/function/throttle.js":"03bf05e2-167"},"imported":[],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-478"}]},"03bf05e2-168":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/zIndex.js","moduleParts":{"uni_modules/uview-plus/libs/config/zIndex.js":"03bf05e2-169"},"imported":[],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-494"}]},"03bf05e2-170":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/config/color.js","moduleParts":{"uni_modules/uview-plus/libs/config/color.js":"03bf05e2-171"},"imported":[],"importedBy":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-124"},{"uid":"03bf05e2-506"},{"uid":"03bf05e2-478"}]},"03bf05e2-172":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/platform.js","moduleParts":{"uni_modules/uview-plus/libs/function/platform.js":"03bf05e2-173"},"imported":[],"importedBy":[{"uid":"03bf05e2-152"}]},"03bf05e2-174":{"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":"03bf05e2-175"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-176":{"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":"03bf05e2-177"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-178":{"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":"03bf05e2-179"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-180":{"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":"03bf05e2-181"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-182":{"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":"03bf05e2-183"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-184":{"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":"03bf05e2-185"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-186":{"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":"03bf05e2-187"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-188":{"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":"03bf05e2-189"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-190":{"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":"03bf05e2-191"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-192":{"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":"03bf05e2-193"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-194":{"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":"03bf05e2-195"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-196":{"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":"03bf05e2-197"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-198":{"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":"03bf05e2-199"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-200":{"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":"03bf05e2-201"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-202":{"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":"03bf05e2-203"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-204":{"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":"03bf05e2-205"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-206":{"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":"03bf05e2-207"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-208":{"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":"03bf05e2-209"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-210":{"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":"03bf05e2-211"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-212":{"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":"03bf05e2-213"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-214":{"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":"03bf05e2-215"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-216":{"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":"03bf05e2-217"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-218":{"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":"03bf05e2-219"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-220":{"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":"03bf05e2-221"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-222":{"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":"03bf05e2-223"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-224":{"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":"03bf05e2-225"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-226":{"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":"03bf05e2-227"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-228":{"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":"03bf05e2-229"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-230":{"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":"03bf05e2-231"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-232":{"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":"03bf05e2-233"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-234":{"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":"03bf05e2-235"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-236":{"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":"03bf05e2-237"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-238":{"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":"03bf05e2-239"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-240":{"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":"03bf05e2-241"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-242":{"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":"03bf05e2-243"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-244":{"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":"03bf05e2-245"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-246":{"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":"03bf05e2-247"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-248":{"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":"03bf05e2-249"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-250":{"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":"03bf05e2-251"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-252":{"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":"03bf05e2-253"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-254":{"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":"03bf05e2-255"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-256":{"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":"03bf05e2-257"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-259"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-261"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-263"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-265"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-267"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-269"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-271"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-273"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-275"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-277"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-279"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-281"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-283"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-285"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-287"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-289"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-291"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-293"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-295"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-297"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-299"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-301"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-303"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-305"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-307"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-309"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-311"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-313"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-315"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-317"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-319"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-321"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-323"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-325"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-327"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-329"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-331"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-333"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-335"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-337"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-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":"03bf05e2-339"},"imported":[],"importedBy":[{"uid":"03bf05e2-82"}]},"03bf05e2-340":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/function/digit.js","moduleParts":{"uni_modules/uview-plus/libs/function/digit.js":"03bf05e2-341"},"imported":[],"importedBy":[{"uid":"03bf05e2-138"}]},"03bf05e2-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":"03bf05e2-343"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-344"},{"uid":"03bf05e2-346"},{"uid":"03bf05e2-348"},{"uid":"03bf05e2-350"}],"importedBy":[{"uid":"03bf05e2-354"}]},"03bf05e2-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":"03bf05e2-345"},"imported":[{"uid":"03bf05e2-350"}],"importedBy":[{"uid":"03bf05e2-342"}]},"03bf05e2-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":"03bf05e2-347"},"imported":[{"uid":"03bf05e2-362"},{"uid":"03bf05e2-364"}],"importedBy":[{"uid":"03bf05e2-342"}]},"03bf05e2-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":"03bf05e2-349"},"imported":[],"importedBy":[{"uid":"03bf05e2-342"}]},"03bf05e2-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":"03bf05e2-351"},"imported":[],"importedBy":[{"uid":"03bf05e2-158"},{"uid":"03bf05e2-356"},{"uid":"03bf05e2-342"},{"uid":"03bf05e2-344"}]},"03bf05e2-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":"03bf05e2-353"},"imported":[],"importedBy":[{"uid":"03bf05e2-158"}]},"03bf05e2-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":"03bf05e2-355"},"imported":[{"uid":"03bf05e2-342"}],"importedBy":[{"uid":"03bf05e2-158"}]},"03bf05e2-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":"03bf05e2-357"},"imported":[{"uid":"03bf05e2-350"}],"importedBy":[{"uid":"03bf05e2-158"}]},"03bf05e2-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":"03bf05e2-359"},"imported":[],"importedBy":[{"uid":"03bf05e2-158"}]},"03bf05e2-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":"03bf05e2-361"},"imported":[],"importedBy":[{"uid":"03bf05e2-158"}]},"03bf05e2-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":"03bf05e2-363"},"imported":[],"importedBy":[{"uid":"03bf05e2-346"}]},"03bf05e2-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":"03bf05e2-365"},"imported":[],"importedBy":[{"uid":"03bf05e2-346"}]},"03bf05e2-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":"03bf05e2-367"},"imported":[{"uid":"03bf05e2-158"}],"importedBy":[{"uid":"03bf05e2-152"}]},"03bf05e2-368":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/button.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/button.js":"03bf05e2-369"},"imported":[{"uid":"03bf05e2-80"}],"importedBy":[{"uid":"03bf05e2-478"},{"uid":"03bf05e2-602"}]},"03bf05e2-370":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/mpShare.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/mpShare.js":"03bf05e2-371"},"imported":[{"uid":"03bf05e2-80"},{"uid":"03bf05e2-138"}],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-372":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/libs/mixin/openType.js","moduleParts":{"uni_modules/uview-plus/libs/mixin/openType.js":"03bf05e2-373"},"imported":[{"uid":"03bf05e2-80"}],"importedBy":[{"uid":"03bf05e2-478"},{"uid":"03bf05e2-602"}]},"03bf05e2-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":"03bf05e2-375"},"imported":[],"importedBy":[{"uid":"03bf05e2-522"}]},"03bf05e2-376":{"id":"D:/zcweb/uniapp/temporaryworker/src/util/request/index.js","moduleParts":{"util/request/index.js":"03bf05e2-377"},"imported":[{"uid":"03bf05e2-22"},{"uid":"03bf05e2-378"},{"uid":"03bf05e2-152"}],"importedBy":[{"uid":"03bf05e2-6"}]},"03bf05e2-378":{"id":"D:/zcweb/uniapp/temporaryworker/src/util/request/interceptors.js","moduleParts":{"util/request/interceptors.js":"03bf05e2-379"},"imported":[{"uid":"03bf05e2-152"},{"uid":"03bf05e2-76"}],"importedBy":[{"uid":"03bf05e2-376"}]},"03bf05e2-380":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/default/index.js":"03bf05e2-381"},"imported":[],"importedBy":[{"uid":"03bf05e2-382"}]},"03bf05e2-382":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/default/index.vue","moduleParts":{"pages/default/index.js":"03bf05e2-383"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-380"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true}],"importedBy":[{"uid":"03bf05e2-384"}]},"03bf05e2-384":{"id":"uniPage://cGFnZXMvZGVmYXVsdC9pbmRleC52dWU","moduleParts":{"pages/default/index.js":"03bf05e2-385"},"imported":[{"uid":"03bf05e2-382"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-386":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/index/index.js":"03bf05e2-387"},"imported":[],"importedBy":[{"uid":"03bf05e2-388"}]},"03bf05e2-388":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/index/index.vue","moduleParts":{"pages/index/index.js":"03bf05e2-389"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-386"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-464","dynamic":true},{"uid":"03bf05e2-470","dynamic":true}],"importedBy":[{"uid":"03bf05e2-390"}]},"03bf05e2-390":{"id":"uniPage://cGFnZXMvaW5kZXgvaW5kZXgudnVl","moduleParts":{"pages/index/index.js":"03bf05e2-391"},"imported":[{"uid":"03bf05e2-388"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-392":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/mine/index.js":"03bf05e2-393"},"imported":[],"importedBy":[{"uid":"03bf05e2-394"}]},"03bf05e2-394":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/index.vue","moduleParts":{"pages/mine/index.js":"03bf05e2-395"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-8"},{"uid":"03bf05e2-10"},{"uid":"03bf05e2-12"},{"uid":"03bf05e2-14"},{"uid":"03bf05e2-392"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true}],"importedBy":[{"uid":"03bf05e2-396"}]},"03bf05e2-396":{"id":"uniPage://cGFnZXMvbWluZS9pbmRleC52dWU","moduleParts":{"pages/mine/index.js":"03bf05e2-397"},"imported":[{"uid":"03bf05e2-394"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-398":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue?vue&type=style&index=0&scoped=45258083&lang.scss","moduleParts":{"pages/login/index.js":"03bf05e2-399"},"imported":[],"importedBy":[{"uid":"03bf05e2-400"}]},"03bf05e2-400":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/login/index.vue","moduleParts":{"pages/login/index.js":"03bf05e2-401"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-16"},{"uid":"03bf05e2-398"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-476","dynamic":true}],"importedBy":[{"uid":"03bf05e2-402"}]},"03bf05e2-402":{"id":"uniPage://cGFnZXMvbG9naW4vaW5kZXgudnVl","moduleParts":{"pages/login/index.js":"03bf05e2-403"},"imported":[{"uid":"03bf05e2-400"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-404":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/detail/detail.js":"03bf05e2-405"},"imported":[],"importedBy":[{"uid":"03bf05e2-406"}]},"03bf05e2-406":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/detail/detail.vue","moduleParts":{"pages/detail/detail.js":"03bf05e2-407"},"imported":[{"uid":"03bf05e2-42"},{"uid":"03bf05e2-16"},{"uid":"03bf05e2-18"},{"uid":"03bf05e2-20"},{"uid":"03bf05e2-404"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true},{"uid":"03bf05e2-464","dynamic":true},{"uid":"03bf05e2-484","dynamic":true}],"importedBy":[{"uid":"03bf05e2-408"}]},"03bf05e2-408":{"id":"uniPage://cGFnZXMvZGV0YWlsL2RldGFpbC52dWU","moduleParts":{"pages/detail/detail.js":"03bf05e2-409"},"imported":[{"uid":"03bf05e2-406"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-410":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/order/order.vue","moduleParts":{"pages/order/order.js":"03bf05e2-411"},"imported":[{"uid":"03bf05e2-42"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-490","dynamic":true},{"uid":"03bf05e2-496","dynamic":true},{"uid":"03bf05e2-470","dynamic":true}],"importedBy":[{"uid":"03bf05e2-412"}]},"03bf05e2-412":{"id":"uniPage://cGFnZXMvb3JkZXIvb3JkZXIudnVl","moduleParts":{"pages/order/order.js":"03bf05e2-413"},"imported":[{"uid":"03bf05e2-410"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-414":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/release.vue","moduleParts":{"pages/release/release.js":"03bf05e2-415"},"imported":[{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-416"}]},"03bf05e2-416":{"id":"uniPage://cGFnZXMvcmVsZWFzZS9yZWxlYXNlLnZ1ZQ","moduleParts":{"pages/release/release.js":"03bf05e2-417"},"imported":[{"uid":"03bf05e2-414"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-418":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/release/index.js":"03bf05e2-419"},"imported":[],"importedBy":[{"uid":"03bf05e2-420"}]},"03bf05e2-420":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/release/index.vue","moduleParts":{"pages/release/index.js":"03bf05e2-421"},"imported":[{"uid":"03bf05e2-42"},{"uid":"03bf05e2-418"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-502","dynamic":true},{"uid":"03bf05e2-458","dynamic":true},{"uid":"03bf05e2-508","dynamic":true},{"uid":"03bf05e2-464","dynamic":true},{"uid":"03bf05e2-514","dynamic":true},{"uid":"03bf05e2-520","dynamic":true},{"uid":"03bf05e2-524","dynamic":true},{"uid":"03bf05e2-484","dynamic":true},{"uid":"03bf05e2-532","dynamic":true},{"uid":"03bf05e2-540","dynamic":true}],"importedBy":[{"uid":"03bf05e2-422"}]},"03bf05e2-422":{"id":"uniPage://cGFnZXMvcmVsZWFzZS9pbmRleC52dWU","moduleParts":{"pages/release/index.js":"03bf05e2-423"},"imported":[{"uid":"03bf05e2-420"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-424":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue?vue&type=style&index=0&lang.scss","moduleParts":{"pages/wallet/index.js":"03bf05e2-425"},"imported":[],"importedBy":[{"uid":"03bf05e2-426"}]},"03bf05e2-426":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/wallet/index.vue","moduleParts":{"pages/wallet/index.js":"03bf05e2-427"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-424"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-484","dynamic":true},{"uid":"03bf05e2-458","dynamic":true},{"uid":"03bf05e2-470","dynamic":true}],"importedBy":[{"uid":"03bf05e2-428"}]},"03bf05e2-428":{"id":"uniPage://cGFnZXMvd2FsbGV0L2luZGV4LnZ1ZQ","moduleParts":{"pages/wallet/index.js":"03bf05e2-429"},"imported":[{"uid":"03bf05e2-426"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-430":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/mine.js":"03bf05e2-431"},"imported":[],"importedBy":[{"uid":"03bf05e2-432"}]},"03bf05e2-432":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/mine.vue","moduleParts":{"pages/mine/mine.js":"03bf05e2-433"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-430"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-546","dynamic":true},{"uid":"03bf05e2-552","dynamic":true},{"uid":"03bf05e2-558","dynamic":true}],"importedBy":[{"uid":"03bf05e2-434"}]},"03bf05e2-434":{"id":"uniPage://cGFnZXMvbWluZS9taW5lLnZ1ZQ","moduleParts":{"pages/mine/mine.js":"03bf05e2-435"},"imported":[{"uid":"03bf05e2-432"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-436":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/mine/apply.js":"03bf05e2-437"},"imported":[],"importedBy":[{"uid":"03bf05e2-438"}]},"03bf05e2-438":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/mine/apply.vue","moduleParts":{"pages/mine/apply.js":"03bf05e2-439"},"imported":[{"uid":"03bf05e2-42"},{"uid":"03bf05e2-436"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-562","dynamic":true},{"uid":"03bf05e2-508","dynamic":true},{"uid":"03bf05e2-502","dynamic":true},{"uid":"03bf05e2-520","dynamic":true},{"uid":"03bf05e2-484","dynamic":true},{"uid":"03bf05e2-524","dynamic":true}],"importedBy":[{"uid":"03bf05e2-440"}]},"03bf05e2-440":{"id":"uniPage://cGFnZXMvbWluZS9hcHBseS52dWU","moduleParts":{"pages/mine/apply.js":"03bf05e2-441"},"imported":[{"uid":"03bf05e2-438"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-442":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/index.js":"03bf05e2-443"},"imported":[],"importedBy":[{"uid":"03bf05e2-444"}]},"03bf05e2-444":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/index.vue","moduleParts":{"pages/enterprise/index.js":"03bf05e2-445"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-442"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-546","dynamic":true},{"uid":"03bf05e2-552","dynamic":true},{"uid":"03bf05e2-558","dynamic":true}],"importedBy":[{"uid":"03bf05e2-446"}]},"03bf05e2-446":{"id":"uniPage://cGFnZXMvZW50ZXJwcmlzZS9pbmRleC52dWU","moduleParts":{"pages/enterprise/index.js":"03bf05e2-447"},"imported":[{"uid":"03bf05e2-444"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-448":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue?vue&type=style&index=0&lang.css","moduleParts":{"pages/enterprise/enterprise.js":"03bf05e2-449"},"imported":[],"importedBy":[{"uid":"03bf05e2-450"}]},"03bf05e2-450":{"id":"D:/zcweb/uniapp/temporaryworker/src/pages/enterprise/enterprise.vue","moduleParts":{"pages/enterprise/enterprise.js":"03bf05e2-451"},"imported":[{"uid":"03bf05e2-42"},{"uid":"03bf05e2-448"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-562","dynamic":true},{"uid":"03bf05e2-508","dynamic":true},{"uid":"03bf05e2-502","dynamic":true},{"uid":"03bf05e2-520","dynamic":true},{"uid":"03bf05e2-484","dynamic":true},{"uid":"03bf05e2-524","dynamic":true}],"importedBy":[{"uid":"03bf05e2-452"}]},"03bf05e2-452":{"id":"uniPage://cGFnZXMvZW50ZXJwcmlzZS9lbnRlcnByaXNlLnZ1ZQ","moduleParts":{"pages/enterprise/enterprise.js":"03bf05e2-453"},"imported":[{"uid":"03bf05e2-450"}],"importedBy":[{"uid":"03bf05e2-0"}]},"03bf05e2-454":{"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":"03bf05e2-455"},"imported":[],"importedBy":[{"uid":"03bf05e2-456"}]},"03bf05e2-456":{"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":"03bf05e2-457"},"imported":[{"uid":"03bf05e2-94"},{"uid":"03bf05e2-96"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-114"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-454"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-458"}]},"03bf05e2-458":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaWNvbi91LWljb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-icon/u-icon.js":"03bf05e2-459"},"imported":[{"uid":"03bf05e2-456"}],"importedBy":[{"uid":"03bf05e2-382"},{"uid":"03bf05e2-394"},{"uid":"03bf05e2-406"},{"uid":"03bf05e2-420"},{"uid":"03bf05e2-426"},{"uid":"03bf05e2-462"},{"uid":"03bf05e2-468"},{"uid":"03bf05e2-474"},{"uid":"03bf05e2-482"},{"uid":"03bf05e2-500"},{"uid":"03bf05e2-506"},{"uid":"03bf05e2-512"},{"uid":"03bf05e2-544"},{"uid":"03bf05e2-602"},{"uid":"03bf05e2-608"}]},"03bf05e2-460":{"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":"03bf05e2-461"},"imported":[],"importedBy":[{"uid":"03bf05e2-462"}]},"03bf05e2-462":{"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":"03bf05e2-463"},"imported":[{"uid":"03bf05e2-132"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-84"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-460"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true},{"uid":"03bf05e2-568","dynamic":true}],"importedBy":[{"uid":"03bf05e2-464"}]},"03bf05e2-464":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGFnL3UtdGFnLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-tag/u-tag.js":"03bf05e2-465"},"imported":[{"uid":"03bf05e2-462"}],"importedBy":[{"uid":"03bf05e2-388"},{"uid":"03bf05e2-406"},{"uid":"03bf05e2-420"}]},"03bf05e2-466":{"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":"03bf05e2-467"},"imported":[],"importedBy":[{"uid":"03bf05e2-468"}]},"03bf05e2-468":{"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":"03bf05e2-469"},"imported":[{"uid":"03bf05e2-88"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-466"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true}],"importedBy":[{"uid":"03bf05e2-470"}]},"03bf05e2-470":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZW1wdHkvdS1lbXB0eS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-empty/u-empty.js":"03bf05e2-471"},"imported":[{"uid":"03bf05e2-468"}],"importedBy":[{"uid":"03bf05e2-388"},{"uid":"03bf05e2-410"},{"uid":"03bf05e2-426"}]},"03bf05e2-472":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup/u-popup.vue?vue&type=style&index=0&scoped=d4197e14&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-popup/u-popup.js":"03bf05e2-473"},"imported":[],"importedBy":[{"uid":"03bf05e2-474"}]},"03bf05e2-474":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-popup/u-popup.vue","moduleParts":{"uni_modules/uview-plus/components/u-popup/u-popup.js":"03bf05e2-475"},"imported":[{"uid":"03bf05e2-110"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-472"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-574","dynamic":true},{"uid":"03bf05e2-580","dynamic":true},{"uid":"03bf05e2-458","dynamic":true},{"uid":"03bf05e2-586","dynamic":true},{"uid":"03bf05e2-568","dynamic":true}],"importedBy":[{"uid":"03bf05e2-476"}]},"03bf05e2-476":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtcG9wdXAvdS1wb3B1cC52dWU","moduleParts":{"uni_modules/uview-plus/components/u-popup/u-popup.js":"03bf05e2-477"},"imported":[{"uid":"03bf05e2-474"}],"importedBy":[{"uid":"03bf05e2-400"}]},"03bf05e2-478":{"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":"03bf05e2-479"},"imported":[{"uid":"03bf05e2-368"},{"uid":"03bf05e2-372"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-86"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-166"},{"uid":"03bf05e2-170"}],"importedBy":[{"uid":"03bf05e2-482"}]},"03bf05e2-480":{"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":"03bf05e2-481"},"imported":[],"importedBy":[{"uid":"03bf05e2-482"}]},"03bf05e2-482":{"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":"03bf05e2-483"},"imported":[{"uid":"03bf05e2-478"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-480"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-592","dynamic":true},{"uid":"03bf05e2-458","dynamic":true}],"importedBy":[{"uid":"03bf05e2-484"}]},"03bf05e2-484":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYnV0dG9uL3UtYnV0dG9uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-button/u-button.js":"03bf05e2-485"},"imported":[{"uid":"03bf05e2-482"}],"importedBy":[{"uid":"03bf05e2-406"},{"uid":"03bf05e2-420"},{"uid":"03bf05e2-426"},{"uid":"03bf05e2-438"},{"uid":"03bf05e2-450"}]},"03bf05e2-486":{"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":"03bf05e2-487"},"imported":[],"importedBy":[{"uid":"03bf05e2-488"}]},"03bf05e2-488":{"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":"03bf05e2-489"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-130"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-486"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-490"}]},"03bf05e2-490":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3Vic2VjdGlvbi91LXN1YnNlY3Rpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-subsection/u-subsection.js":"03bf05e2-491"},"imported":[{"uid":"03bf05e2-488"}],"importedBy":[{"uid":"03bf05e2-410"}]},"03bf05e2-492":{"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":"03bf05e2-493"},"imported":[],"importedBy":[{"uid":"03bf05e2-494"}]},"03bf05e2-494":{"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":"03bf05e2-495"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-128"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-168"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-492"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-496"}]},"03bf05e2-496":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RpY2t5L3Utc3RpY2t5LnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-sticky/u-sticky.js":"03bf05e2-497"},"imported":[{"uid":"03bf05e2-494"}],"importedBy":[{"uid":"03bf05e2-410"}]},"03bf05e2-498":{"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":"03bf05e2-499"},"imported":[],"importedBy":[{"uid":"03bf05e2-500"}]},"03bf05e2-500":{"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":"03bf05e2-501"},"imported":[{"uid":"03bf05e2-98"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-164"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-498"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true}],"importedBy":[{"uid":"03bf05e2-502"}]},"03bf05e2-502":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtaW5wdXQvdS1pbnB1dC52dWU","moduleParts":{"uni_modules/uview-plus/components/u-input/u-input.js":"03bf05e2-503"},"imported":[{"uid":"03bf05e2-500"}],"importedBy":[{"uid":"03bf05e2-420"},{"uid":"03bf05e2-438"},{"uid":"03bf05e2-450"}]},"03bf05e2-504":{"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":"03bf05e2-505"},"imported":[],"importedBy":[{"uid":"03bf05e2-506"}]},"03bf05e2-506":{"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":"03bf05e2-507"},"imported":[{"uid":"03bf05e2-90"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-82"},{"uid":"03bf05e2-170"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-504"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true},{"uid":"03bf05e2-598","dynamic":true}],"importedBy":[{"uid":"03bf05e2-508"}]},"03bf05e2-508":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS1pdGVtL3UtZm9ybS1pdGVtLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-form-item/u-form-item.js":"03bf05e2-509"},"imported":[{"uid":"03bf05e2-506"}],"importedBy":[{"uid":"03bf05e2-420"},{"uid":"03bf05e2-438"},{"uid":"03bf05e2-450"}]},"03bf05e2-510":{"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":"03bf05e2-511"},"imported":[],"importedBy":[{"uid":"03bf05e2-512"}]},"03bf05e2-512":{"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":"03bf05e2-513"},"imported":[{"uid":"03bf05e2-106"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-510"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true}],"importedBy":[{"uid":"03bf05e2-514"}]},"03bf05e2-514":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbnVtYmVyLWJveC91LW51bWJlci1ib3gudnVl","moduleParts":{"uni_modules/uview-plus/components/u-number-box/u-number-box.js":"03bf05e2-515"},"imported":[{"uid":"03bf05e2-512"}],"importedBy":[{"uid":"03bf05e2-420"}]},"03bf05e2-516":{"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":"03bf05e2-517"},"imported":[],"importedBy":[{"uid":"03bf05e2-518"}]},"03bf05e2-518":{"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":"03bf05e2-519"},"imported":[{"uid":"03bf05e2-140"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-516"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-520"}]},"03bf05e2-520":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dGFyZWEvdS10ZXh0YXJlYS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-textarea/u-textarea.js":"03bf05e2-521"},"imported":[{"uid":"03bf05e2-518"}],"importedBy":[{"uid":"03bf05e2-420"},{"uid":"03bf05e2-438"},{"uid":"03bf05e2-450"}]},"03bf05e2-522":{"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":"03bf05e2-523"},"imported":[{"uid":"03bf05e2-92"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-374"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-84"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-524"}]},"03bf05e2-524":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtZm9ybS91LWZvcm0udnVl","moduleParts":{"uni_modules/uview-plus/components/u-form/u-form.js":"03bf05e2-525"},"imported":[{"uid":"03bf05e2-522"}],"importedBy":[{"uid":"03bf05e2-420"},{"uid":"03bf05e2-438"},{"uid":"03bf05e2-450"}]},"03bf05e2-526":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.js","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"03bf05e2-527"},"imported":[],"importedBy":[{"uid":"03bf05e2-530"}]},"03bf05e2-528":{"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":"03bf05e2-529"},"imported":[],"importedBy":[{"uid":"03bf05e2-530"}]},"03bf05e2-530":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-icon/fui-icon.vue","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"03bf05e2-531"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-526"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-528"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-532"}]},"03bf05e2-532":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1pY29uL2Z1aS1pY29uLnZ1ZQ","moduleParts":{"components/firstui/fui-icon/fui-icon.js":"03bf05e2-533"},"imported":[{"uid":"03bf05e2-530"}],"importedBy":[{"uid":"03bf05e2-420"},{"uid":"03bf05e2-538"}]},"03bf05e2-534":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/fui-fab.vue?vue&type=style&index=0&scoped=2c25f223&lang.css","moduleParts":{"components/firstui/fui-fab/fui-fab.js":"03bf05e2-535"},"imported":[],"importedBy":[{"uid":"03bf05e2-538"}]},"03bf05e2-536":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/index.wxs?vue&type=wxs&index=0&src=true&name=handler&lang.wxs","moduleParts":{"components/firstui/fui-fab/fui-fab.js":"03bf05e2-537"},"imported":[],"importedBy":[{"uid":"03bf05e2-538"}]},"03bf05e2-538":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-fab/fui-fab.vue","moduleParts":{"components/firstui/fui-fab/fui-fab.js":"03bf05e2-539"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-74"},{"uid":"03bf05e2-72"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-534"},{"uid":"03bf05e2-536"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-532","dynamic":true}],"importedBy":[{"uid":"03bf05e2-540"}]},"03bf05e2-540":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1mYWIvZnVpLWZhYi52dWU","moduleParts":{"components/firstui/fui-fab/fui-fab.js":"03bf05e2-541"},"imported":[{"uid":"03bf05e2-538"}],"importedBy":[{"uid":"03bf05e2-420"}]},"03bf05e2-542":{"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":"03bf05e2-543"},"imported":[],"importedBy":[{"uid":"03bf05e2-544"}]},"03bf05e2-544":{"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":"03bf05e2-545"},"imported":[{"uid":"03bf05e2-78"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-542"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true},{"uid":"03bf05e2-604","dynamic":true}],"importedBy":[{"uid":"03bf05e2-546"}]},"03bf05e2-546":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtYXZhdGFyL3UtYXZhdGFyLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-avatar/u-avatar.js":"03bf05e2-547"},"imported":[{"uid":"03bf05e2-544"}],"importedBy":[{"uid":"03bf05e2-432"},{"uid":"03bf05e2-444"}]},"03bf05e2-548":{"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":"03bf05e2-549"},"imported":[],"importedBy":[{"uid":"03bf05e2-550"}]},"03bf05e2-550":{"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":"03bf05e2-551"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-548"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-552"}]},"03bf05e2-552":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0LWNlbGwvZnVpLWxpc3QtY2VsbC52dWU","moduleParts":{"components/firstui/fui-list-cell/fui-list-cell.js":"03bf05e2-553"},"imported":[{"uid":"03bf05e2-550"}],"importedBy":[{"uid":"03bf05e2-432"},{"uid":"03bf05e2-444"}]},"03bf05e2-554":{"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":"03bf05e2-555"},"imported":[],"importedBy":[{"uid":"03bf05e2-556"}]},"03bf05e2-556":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/firstui/fui-list/fui-list.vue","moduleParts":{"components/firstui/fui-list/fui-list.js":"03bf05e2-557"},"imported":[{"uid":"03bf05e2-42"},{"uid":"03bf05e2-554"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-558"}]},"03bf05e2-558":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy9maXJzdHVpL2Z1aS1saXN0L2Z1aS1saXN0LnZ1ZQ","moduleParts":{"components/firstui/fui-list/fui-list.js":"03bf05e2-559"},"imported":[{"uid":"03bf05e2-556"}],"importedBy":[{"uid":"03bf05e2-432"},{"uid":"03bf05e2-444"}]},"03bf05e2-560":{"id":"D:/zcweb/uniapp/temporaryworker/src/components/tem/tem-upload.vue","moduleParts":{"components/tem/tem-upload.js":"03bf05e2-561"},"imported":[{"uid":"03bf05e2-42"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-610","dynamic":true}],"importedBy":[{"uid":"03bf05e2-562"}]},"03bf05e2-562":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvY29tcG9uZW50cy90ZW0vdGVtLXVwbG9hZC52dWU","moduleParts":{"components/tem/tem-upload.js":"03bf05e2-563"},"imported":[{"uid":"03bf05e2-560"}],"importedBy":[{"uid":"03bf05e2-438"},{"uid":"03bf05e2-450"}]},"03bf05e2-564":{"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":"03bf05e2-565"},"imported":[],"importedBy":[{"uid":"03bf05e2-566"}]},"03bf05e2-566":{"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":"03bf05e2-567"},"imported":[{"uid":"03bf05e2-142"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-144"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-564"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-568"}]},"03bf05e2-568":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdHJhbnNpdGlvbi91LXRyYW5zaXRpb24udnVl","moduleParts":{"uni_modules/uview-plus/components/u-transition/u-transition.js":"03bf05e2-569"},"imported":[{"uid":"03bf05e2-566"}],"importedBy":[{"uid":"03bf05e2-462"},{"uid":"03bf05e2-474"},{"uid":"03bf05e2-572"}]},"03bf05e2-570":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay/u-overlay.vue?vue&type=style&index=0&scoped=64260431&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-overlay/u-overlay.js":"03bf05e2-571"},"imported":[],"importedBy":[{"uid":"03bf05e2-572"}]},"03bf05e2-572":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-overlay/u-overlay.vue","moduleParts":{"uni_modules/uview-plus/components/u-overlay/u-overlay.js":"03bf05e2-573"},"imported":[{"uid":"03bf05e2-108"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-570"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-568","dynamic":true}],"importedBy":[{"uid":"03bf05e2-574"}]},"03bf05e2-574":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utb3ZlcmxheS91LW92ZXJsYXkudnVl","moduleParts":{"uni_modules/uview-plus/components/u-overlay/u-overlay.js":"03bf05e2-575"},"imported":[{"uid":"03bf05e2-572"}],"importedBy":[{"uid":"03bf05e2-474"}]},"03bf05e2-576":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar/u-status-bar.vue?vue&type=style&index=0&scoped=96630e2e&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-status-bar/u-status-bar.js":"03bf05e2-577"},"imported":[],"importedBy":[{"uid":"03bf05e2-578"}]},"03bf05e2-578":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-status-bar/u-status-bar.vue","moduleParts":{"uni_modules/uview-plus/components/u-status-bar/u-status-bar.js":"03bf05e2-579"},"imported":[{"uid":"03bf05e2-126"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-576"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-580"}]},"03bf05e2-580":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc3RhdHVzLWJhci91LXN0YXR1cy1iYXIudnVl","moduleParts":{"uni_modules/uview-plus/components/u-status-bar/u-status-bar.js":"03bf05e2-581"},"imported":[{"uid":"03bf05e2-578"}],"importedBy":[{"uid":"03bf05e2-474"}]},"03bf05e2-582":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.vue?vue&type=style&index=0&scoped=3a3efedd&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.js":"03bf05e2-583"},"imported":[],"importedBy":[{"uid":"03bf05e2-584"}]},"03bf05e2-584":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.vue","moduleParts":{"uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.js":"03bf05e2-585"},"imported":[{"uid":"03bf05e2-112"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-582"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-586"}]},"03bf05e2-586":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3Utc2FmZS1ib3R0b20vdS1zYWZlLWJvdHRvbS52dWU","moduleParts":{"uni_modules/uview-plus/components/u-safe-bottom/u-safe-bottom.js":"03bf05e2-587"},"imported":[{"uid":"03bf05e2-584"}],"importedBy":[{"uid":"03bf05e2-474"}]},"03bf05e2-588":{"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":"03bf05e2-589"},"imported":[],"importedBy":[{"uid":"03bf05e2-590"}]},"03bf05e2-590":{"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":"03bf05e2-591"},"imported":[{"uid":"03bf05e2-104"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-162"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-588"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-592"}]},"03bf05e2-592":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbG9hZGluZy1pY29uL3UtbG9hZGluZy1pY29uLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.js":"03bf05e2-593"},"imported":[{"uid":"03bf05e2-590"}],"importedBy":[{"uid":"03bf05e2-482"},{"uid":"03bf05e2-608"}]},"03bf05e2-594":{"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":"03bf05e2-595"},"imported":[],"importedBy":[{"uid":"03bf05e2-596"}]},"03bf05e2-596":{"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":"03bf05e2-597"},"imported":[{"uid":"03bf05e2-100"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-594"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-598"}]},"03bf05e2-598":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluZS91LWxpbmUudnVl","moduleParts":{"uni_modules/uview-plus/components/u-line/u-line.js":"03bf05e2-599"},"imported":[{"uid":"03bf05e2-596"}],"importedBy":[{"uid":"03bf05e2-506"}]},"03bf05e2-600":{"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":"03bf05e2-601"},"imported":[],"importedBy":[{"uid":"03bf05e2-602"}]},"03bf05e2-602":{"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":"03bf05e2-603"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-134"},{"uid":"03bf05e2-136"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-368"},{"uid":"03bf05e2-372"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-600"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true},{"uid":"03bf05e2-616","dynamic":true}],"importedBy":[{"uid":"03bf05e2-604"}]},"03bf05e2-604":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdGV4dC91LXRleHQudnVl","moduleParts":{"uni_modules/uview-plus/components/u-text/u-text.js":"03bf05e2-605"},"imported":[{"uid":"03bf05e2-602"}],"importedBy":[{"uid":"03bf05e2-544"}]},"03bf05e2-606":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-upload/u-upload.vue?vue&type=style&index=0&scoped=8361a029&lang.scss","moduleParts":{"uni_modules/uview-plus/components/u-upload/u-upload.js":"03bf05e2-607"},"imported":[],"importedBy":[{"uid":"03bf05e2-608"}]},"03bf05e2-608":{"id":"D:/zcweb/uniapp/temporaryworker/src/uni_modules/uview-plus/components/u-upload/u-upload.vue","moduleParts":{"uni_modules/uview-plus/components/u-upload/u-upload.js":"03bf05e2-609"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-150"},{"uid":"03bf05e2-146"},{"uid":"03bf05e2-148"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-84"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-606"},{"uid":"03bf05e2-40"},{"uid":"03bf05e2-458","dynamic":true},{"uid":"03bf05e2-592","dynamic":true}],"importedBy":[{"uid":"03bf05e2-610"}]},"03bf05e2-610":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtdXBsb2FkL3UtdXBsb2FkLnZ1ZQ","moduleParts":{"uni_modules/uview-plus/components/u-upload/u-upload.js":"03bf05e2-611"},"imported":[{"uid":"03bf05e2-608"}],"importedBy":[{"uid":"03bf05e2-560"}]},"03bf05e2-612":{"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":"03bf05e2-613"},"imported":[],"importedBy":[{"uid":"03bf05e2-614"}]},"03bf05e2-614":{"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":"03bf05e2-615"},"imported":[{"uid":"03bf05e2-38"},{"uid":"03bf05e2-102"},{"uid":"03bf05e2-156"},{"uid":"03bf05e2-154"},{"uid":"03bf05e2-138"},{"uid":"03bf05e2-42"},{"uid":"03bf05e2-612"},{"uid":"03bf05e2-40"}],"importedBy":[{"uid":"03bf05e2-616"}]},"03bf05e2-616":{"id":"uniComponent://RDovemN3ZWIvdW5pYXBwL3RlbXBvcmFyeXdvcmtlci9zcmMvdW5pX21vZHVsZXMvdXZpZXctcGx1cy9jb21wb25lbnRzL3UtbGluay91LWxpbmsudnVl","moduleParts":{"uni_modules/uview-plus/components/u-link/u-link.js":"03bf05e2-617"},"imported":[{"uid":"03bf05e2-614"}],"importedBy":[{"uid":"03bf05e2-602"}]},"03bf05e2-618":{"id":"D:/zcweb/uniapp/temporaryworker/src/manifest-json-js","moduleParts":{},"imported":[],"importedBy":[{"uid":"03bf05e2-0"}]}},"env":{"rollup":"4.20.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}}; |
| | | |
| | | const run = () => { |
| | | const width = window.innerWidth; |