diff --git a/app/common/dao/store/order/StoreOrderDao.php b/app/common/dao/store/order/StoreOrderDao.php index 924a9d7d..201c1f2f 100644 --- a/app/common/dao/store/order/StoreOrderDao.php +++ b/app/common/dao/store/order/StoreOrderDao.php @@ -74,7 +74,16 @@ class StoreOrderDao extends BaseDao } $query->where('is_del', 0); }); - + if (isset($where['source']) && $where['source'] == 103) { + $wheres['activity_type'] = [0,98]; + $wheres['source'] = [0,2,103]; + $query->where($wheres); + unset($where['source']); + } else { + if(isset($where['product_type']) && $where['product_type'] !== ''){ + $query->where('activity_type', $where['product_type']); + } + } $query->when(($sysDel !== null), function ($query) use ($sysDel) { $query->where('is_system_del', $sysDel); }) @@ -92,9 +101,6 @@ class StoreOrderDao extends BaseDao ->when(isset($where['activity_type']) && $where['activity_type'] != '', function ($query) use ($where) { $query->where('activity_type', $where['activity_type']); }) - ->when(isset($where['product_type']) && $where['product_type'] != '', function ($query) use ($where) { - $query->where('activity_type', $where['product_type']); - }) ->when(isset($where['status']) && $where['status'] !== '', function ($query) use ($where) { // 12表示信用购 先货后款 switch ($where['status']) { @@ -223,7 +229,6 @@ class StoreOrderDao extends BaseDao $query->where('reconciliation_id', 0); }); })->order('StoreOrder.create_time DESC'); - return $query; } diff --git a/app/common/dao/system/merchant/MerchantIntentionDao.php b/app/common/dao/system/merchant/MerchantIntentionDao.php index e74f2de1..759fa0a3 100644 --- a/app/common/dao/system/merchant/MerchantIntentionDao.php +++ b/app/common/dao/system/merchant/MerchantIntentionDao.php @@ -32,7 +32,11 @@ class MerchantIntentionDao extends BaseDao })->when(isset($where['status']) && $where['status'] !== '', function ($query) use ($where) { $query->where('status', (int)$where['status']); })->when(isset($where['type']) && $where['type'] !== '', function ($query) use ($where) { - $query->where('type', (int)$where['type']); + if(is_array($where['type'])){ + $query->whereOr('type',$where['type'][0])->whereOr('type',$where['type'][1]); + }else{ + $query->where('type', (int)$where['type']); + } })->when(isset($where['mer_intention_id']) && $where['mer_intention_id'] !== '', function ($query) use ($where) { $query->where('mer_intention_id', $where['mer_intention_id']); })->when(isset($where['category_id']) && $where['category_id'] !== '', function ($query) use ($where) { diff --git a/app/common/model/store/product/Product.php b/app/common/model/store/product/Product.php index ad2ad596..98a424e0 100644 --- a/app/common/model/store/product/Product.php +++ b/app/common/model/store/product/Product.php @@ -389,7 +389,7 @@ class Product extends BaseModel } public function merchant() { - return $this->hasOne(Merchant::class,'mer_id','mer_id')->field('is_trader,type_id,mer_id,mer_name,mer_avatar,product_score,service_score,postage_score,service_phone,care_count,is_margin'); + return $this->hasOne(Merchant::class,'mer_id','mer_id')->field('is_trader,type_id,mer_id,mer_name,mer_avatar,product_score,service_score,postage_score,service_phone,care_count,is_margin,village_id'); } public function reply() { diff --git a/app/common/repositories/store/order/StoreGroupOrderRepository.php b/app/common/repositories/store/order/StoreGroupOrderRepository.php index d1e4ebdb..4f285909 100644 --- a/app/common/repositories/store/order/StoreGroupOrderRepository.php +++ b/app/common/repositories/store/order/StoreGroupOrderRepository.php @@ -65,8 +65,14 @@ class StoreGroupOrderRepository extends BaseRepository public function getList(array $where, $page, $limit) { $query = StoreGroupOrder::getDB()->alias('StoreGroupOrder'); - if (isset($where['product_type'])) { - $storeOrderWhere = StoreOrder::where('activity_type', $where['product_type']); + if(isset($where['source']) && $where['source'] == 103){ + $wheres['activity_type']=[0,98]; + $wheres['source']=[0,2,103]; + }else{ + $wheres['activity_type']=0; + } + if (isset($where['product_type']) ||(isset($where['source'])&& $where['source']==103)) { + $storeOrderWhere = StoreOrder::where($wheres); $query->hasWhere('orderList', $storeOrderWhere); } $query->when(isset($where['paid']) && $where['paid'] !== '', function ($query) use ($where) { diff --git a/app/common/repositories/store/order/StoreOrderRepository.php b/app/common/repositories/store/order/StoreOrderRepository.php index d45cd0b1..1dbbdc29 100644 --- a/app/common/repositories/store/order/StoreOrderRepository.php +++ b/app/common/repositories/store/order/StoreOrderRepository.php @@ -628,7 +628,7 @@ class StoreOrderRepository extends BaseRepository * @author xaboy * @day 2020/6/10 */ - public function userOrderNumber(int $uid, $product_type = 0) + public function userOrderNumber(int $uid, $product_type = 0,$source=2) { //activity_type:0普通订单 98采购订单 99委托商品 //$noPay = app()->make(StoreGroupOrderRepository::class)->orderNumber($uid, $product_type); @@ -636,14 +636,20 @@ class StoreOrderRepository extends BaseRepository if ($product_type == 98 || $product_type == 99) { $isUser = 0; } - $noPay = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(1))->whereRaw("(StoreOrder.paid=0 and StoreOrder.pay_type!=8) or (StoreOrder.paid=1 and StoreOrder.pay_type=8 and StoreOrder.status=2)")->where('activity_type', $product_type)->where('StoreOrder.is_del', 0)->count(); - $noPostage = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(2))->where('activity_type', $product_type)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); - $noDeliver = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(3))->where('activity_type', $product_type)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); - $noComment = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(4))->where('activity_type', $product_type)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); - $done = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(5))->where('activity_type', $product_type)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); + $where['activity_type']=$product_type; + if($source==103){ + $where['activity_type']=[0,98]; + $where['source']=[0,2,103]; + } + $noComment = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(4))->where($where)->where('StoreOrder.is_del', 0)->count(); + $noPay = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(1))->whereRaw("(StoreOrder.paid=0 and StoreOrder.pay_type!=8) or (StoreOrder.paid=1 and StoreOrder.pay_type=8 and StoreOrder.status=2)")->where($where)->where('StoreOrder.is_del', 0)->count(); + $noPostage = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(2))->where($where)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); + $noDeliver = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(3))->where($where)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); + $noComment = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(4))->where($where)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); + $done = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(5))->where($where)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); $refund = StoreRefundOrder::alias('t1')->join('store_order t2', 't1.order_id=t2.order_id')->where('t1.uid', $uid)->where('t1.status', 3)->where('t2.activity_type', $product_type)->count(); - $orderPrice = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(8))->where('activity_type', $product_type)->where('StoreOrder.is_del', 0)->fetchSql(false)->sum('pay_price'); - $orderCount = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where('activity_type', $product_type)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); + $orderPrice = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($this->getOrderType(8))->where($where)->where('StoreOrder.is_del', 0)->fetchSql(false)->sum('pay_price'); + $orderCount = $this->dao->search(['uid' => $uid, 'is_user' => $isUser])->where($where)->where('StoreOrder.is_del', 0)->fetchSql(false)->count(); return compact('noComment', 'done', 'refund', 'noDeliver', 'noPay', 'noPostage', 'orderPrice', 'orderCount'); } diff --git a/app/common/repositories/store/product/ProductRepository.php b/app/common/repositories/store/product/ProductRepository.php index 6f36ec4e..f889c1ba 100644 --- a/app/common/repositories/store/product/ProductRepository.php +++ b/app/common/repositories/store/product/ProductRepository.php @@ -1348,6 +1348,12 @@ class ProductRepository extends BaseRepository $active = app()->make(StoreActivityRepository::class)->getActivityBySpu(StoreActivityRepository::ACTIVITY_TYPE_ATMOSPHERE, $res['spu_id'], $res['cate_id'], $res['mer_id']); if ($active) $res['atmosphere_pic'] = $active['pic']; } + if($res['merchant']['type_name']=='个人店铺'){ + $village_name=Db::name('geo_village')->where('village_id',$res['merchant']['village_id'])->value('village_name'); + if($village_name){ + $res['merchant']['village_name']=$village_name.'集体经营合作店铺'; + } + } return $res; } diff --git a/app/common/repositories/store/product/SpuRepository.php b/app/common/repositories/store/product/SpuRepository.php index 35d36eb9..d7745db0 100644 --- a/app/common/repositories/store/product/SpuRepository.php +++ b/app/common/repositories/store/product/SpuRepository.php @@ -34,7 +34,7 @@ use think\facade\Queue; class SpuRepository extends BaseRepository { public $dao; - public $merchantFiled = 'mer_id,mer_name,mer_avatar,is_trader,mer_info,mer_keyword,type_id,long,lat,street_id'; + public $merchantFiled = 'mer_id,mer_name,mer_avatar,is_trader,mer_info,mer_keyword,type_id,long,lat,street_id,village_id'; public $productFiled = 'P.bar_code,S.product_id,S.store_name,S.image,activity_id,S.keyword,S.price,S.mer_id,spu_id,S.status,store_info,brand_id,cate_id,unit_name,S.star,S.rank,S.sort,sales,S.product_type,rate,reply_count,extension_type,S.sys_labels,S.mer_labels,P.delivery_way,P.delivery_free,P.ot_price,svip_price_type,stock,mer_svip_status'; public $userInfo; @@ -162,6 +162,12 @@ class SpuRepository extends BaseRepository $sku = $productMake->detailAttrValue($item['product']['attrValue'], $userInfo); $item['sku'] = $sku; } + if($item['merchant']['type_name']=='个人店铺'){ + $village_name=Db::name('geo_village')->where('village_id',$item['merchant']['village_id'])->value('village_name'); + if($village_name){ + $item['merchant']['village_name']=$village_name.'集体经营合作店铺'; + } + } }); } else { $list = $query->page($page, $limit)->setOption('field', [])->field($this->productFiled)->select() @@ -170,6 +176,12 @@ class SpuRepository extends BaseRepository $sku = $productMake->detailAttrValue($item['product']['attrValue'], $userInfo); $item['sku'] = $sku; } + if($item['merchant']['type_name']=='个人店铺'){ + $village_name=Db::name('geo_village')->where('village_id',$item['merchant']['village_id'])->value('village_name'); + if($village_name){ + $item['merchant']['village_name']=$village_name.'集体经营合作店铺'; + } + } }); } diff --git a/app/common/repositories/system/financial/FinancialRepository.php b/app/common/repositories/system/financial/FinancialRepository.php index f0bf9b55..4a58c5a1 100644 --- a/app/common/repositories/system/financial/FinancialRepository.php +++ b/app/common/repositories/system/financial/FinancialRepository.php @@ -92,6 +92,9 @@ class FinancialRepository extends BaseRepository 'bank' => $data['bank'], 'bank_code' => $data['bank_code'], ]; + if($data['bank_branch']){ + $update['bank_branch'] = $data['bank_branch']; + } break; // case 2: // $key = 'financial_wechat' ; diff --git a/app/common/repositories/system/merchant/MerchantIntentionRepository.php b/app/common/repositories/system/merchant/MerchantIntentionRepository.php index 1b0eced6..fcfa7a38 100644 --- a/app/common/repositories/system/merchant/MerchantIntentionRepository.php +++ b/app/common/repositories/system/merchant/MerchantIntentionRepository.php @@ -140,10 +140,20 @@ class MerchantIntentionRepository extends BaseRepository // 用户需缴纳押金 'margin' => $margin['margin'] ?? 0, 'uid' => $intention['uid'], - 'reg_admin_id' => $autoCreate ? 0: request()->adminId(), + 'reg_admin_id' => 0, 'mer_intention_id' => $id, 'is_company'=>$intention['is_company'], ]; + if($margin['type_code']=='PersonalStore'){ + $merData['mer_address']='集体地址'; + $merData['mer_avatar']='https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/luzhou/static4/oa_app/23565656.png'; + $merData['mer_banner']='https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/luzhou/static4/oa_app/23565656.png'; + $merData['mini_banner']='https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/luzhou/static4/oa_app/23565656.png'; + $merData['create_time']=date('Y-m-d H:i:s'); + $merData['update_time']=date('Y-m-d H:i:s',time()+1); + $merData['business_status']=2; + $merData['mer_settlement_agree_status']=1; + } $data['fail_msg'] = ''; $smsData = [ 'date' => date('m月d日', strtotime($intention->create_time)), diff --git a/app/common/repositories/user/UserRepository.php b/app/common/repositories/user/UserRepository.php index 745a1e26..fabe3280 100644 --- a/app/common/repositories/user/UserRepository.php +++ b/app/common/repositories/user/UserRepository.php @@ -661,14 +661,19 @@ class UserRepository extends BaseRepository public function registr(string $phone, ?string $pwd, $user_type = 'h5') { $pwd = $pwd ? $this->encodePassword($pwd) : $this->encodePassword($this->dao->defaultPwd()); + $ip=app('request')->ip(); + $code=Cache::get('promote_'.$ip); $data = [ 'account' => $phone, 'pwd' => $pwd, 'nickname' => substr($phone, 0, 3) . '****' . substr($phone, 7, 4), 'avatar' => '', 'phone' => $phone, - 'last_ip' => app('request')->ip() + 'last_ip' => $ip ]; + if($code){ + $data['promotion_code']=$code; + } return $this->create($user_type, $data); } @@ -1472,4 +1477,9 @@ class UserRepository extends BaseRepository } }); } + + public function bindPromotionCode($promotionCode, $uid) + { + return $this->dao->update($uid, ['promotion_code' => $promotionCode, 'promoter_time' => date('Y-m-d H:i:s')]); + } } diff --git a/app/controller/api/Common.php b/app/controller/api/Common.php index fccbf30d..84cac40e 100644 --- a/app/controller/api/Common.php +++ b/app/controller/api/Common.php @@ -624,4 +624,14 @@ class Common extends BaseController } return app('json')->success($list); } + + /** + * 推广写入 + */ + public function promote_writing() + { + $code = $this->request->param('code'); + Cache::set('promote_' . app('request')->ip(), $code, 86400); + return app('json')->success(); + } } diff --git a/app/controller/api/Statistics.php b/app/controller/api/Statistics.php index 3651afe5..169d1196 100644 --- a/app/controller/api/Statistics.php +++ b/app/controller/api/Statistics.php @@ -487,4 +487,26 @@ class Statistics extends BaseController $merName = $merchant['mer_name']; return app('json')->success(compact('merName', 'count')); } + + /** + * 新供销 查询邀请的 用户注册数 商户数 交易金额 + */ + public function InviteUserStatistics() + { + $parmas = $this->request->param(); + $promotionCode = $parmas['promotion_code']; + $datas = []; + // 用户注册数 + $datas['user_count'] = Db::name('user')->where('promotion_code', $promotionCode)->count(); + + $userIds = Db::name('user')->where('promotion_code', $promotionCode)->column('uid'); + + // 商户数 + $datas['merchant_count'] = Merchant::whereIn('uid', $userIds)->count(); + + // 交易金额 + $datas['trade_amount'] = Db::name('store_order')->whereIn('uid', $userIds)->where('paid', 1)->sum('pay_price'); + + return app('json')->success($datas); + } } diff --git a/app/controller/api/store/merchant/MerchantIntention.php b/app/controller/api/store/merchant/MerchantIntention.php index eef5b90c..abae7318 100644 --- a/app/controller/api/store/merchant/MerchantIntention.php +++ b/app/controller/api/store/merchant/MerchantIntention.php @@ -109,6 +109,63 @@ class MerchantIntention extends BaseController return app('json')->success('提交成功'); } + /** + * 个人提交入驻申请 + */ + public function PersonalStore() + { + $data = $this->request->params([ + 'phone', + 'mer_name', + 'company_name', + 'address', + 'name', + 'code', + 'images', + 'social_credit_code', + 'area_id', + 'street_id', + 'village_id', + 'is_nmsc', + 'is_company' + ]); + if (!systemConfig('mer_intention_open')) { + return app('json')->fail('未开启商户入驻'); + } + if ($this->userInfo) $data['uid'] = $this->userInfo->uid; + if (($this->userInfo->phone ?? false) && ($this->userInfo->phone != ($data['phone'] ?? ''))) { + throw new ValidateException('联系电话和注册手机不一致'); + } + $merInfo = Db::name('merchant_intention')->where('uid', $this->userInfo->uid)->where('status', 'in',[0,1])->where('is_del',0)->find(); + if ($merInfo) { + throw new ValidateException('该用户已申请商户,不可重复申请'); + } + $make = app()->make(MerchantRepository::class); + if ($make->fieldExists('mer_name', $data['mer_name'])) + throw new ValidateException('商户名称已存在,不可申请'); + if ($make->fieldExists('mer_phone', $data['phone'])) + throw new ValidateException('手机号已存在,不可申请'); + $adminRepository = app()->make(MerchantAdminRepository::class); + if ($adminRepository->fieldExists('account', $data['phone'])) + throw new ValidateException('手机号已是管理员,不可申请'); + $mer_type_id=Db::name('merchant_type')->where('type_code','PersonalStore')->value('mer_type_id'); + $data['status']=0; + $data['type']=2; + $data['mer_type_id']=$mer_type_id; + $data['merchant_category_id']=2584; + $intention = $this->repository->create($data); + if($intention){ + $datas['fail_msg']=''; + $datas['create_mer']=1; + $datas['status']=1; + $this->repository->updateStatus($intention->mer_intention_id, $datas); + + return app('json')->success('开户成功'); + }else{ + return app('json')->fail('开户失败'); + } + } + public function settlementApply() { $status = $this->request->post('status', 0); @@ -332,8 +389,7 @@ class MerchantIntention extends BaseController public function lst() { [$page, $limit] = $this->getPage(); - $type = $this->request->get('type', 1); - $data = $this->repository->getList(['uid' => $this->userInfo->uid, 'type' => $type], $page, $limit); + $data = $this->repository->getList(['uid' => $this->userInfo->uid,'type'=>[1,2]], $page, $limit); return app('json')->success($data); } diff --git a/app/controller/api/store/order/StoreOrder.php b/app/controller/api/store/order/StoreOrder.php index 79f09b98..52052cfd 100644 --- a/app/controller/api/store/order/StoreOrder.php +++ b/app/controller/api/store/order/StoreOrder.php @@ -133,6 +133,7 @@ class StoreOrder extends BaseController [$page, $limit] = $this->getPage(); $where['status'] = $this->request->param('status'); $where['product_type'] = $this->request->param('product_type', 0); + $where['source'] = $this->request->param('source', 2); $where['search'] = $this->request->param('store_name'); $where['uid'] = $this->request->uid(); $where['is_user'] = 1; @@ -164,7 +165,8 @@ class StoreOrder extends BaseController public function number() { $productType = $this->request->param('product_type', 0); - return app('json')->success($this->repository->userOrderNumber($this->request->uid(), $productType)); + $source = $this->request->param('source', 2); + return app('json')->success($this->repository->userOrderNumber($this->request->uid(), $productType,$source)); } /** @@ -177,7 +179,8 @@ class StoreOrder extends BaseController { [$page, $limit] = $this->getPage(); $productType = $this->request->param('product_type', 0); - $list = $groupOrderRepository->getList(['uid' => $this->request->uid(), 'paid' => 0, 'product_type' => $productType], $page, $limit); + $source = $this->request->param('source', 2); + $list = $groupOrderRepository->getList(['uid' => $this->request->uid(), 'paid' => 0, 'product_type' => $productType,'source'=>$source], $page, $limit); return app('json')->success($list); } diff --git a/app/controller/api/store/product/StoreSpu.php b/app/controller/api/store/product/StoreSpu.php index 59fbadb0..47388952 100644 --- a/app/controller/api/store/product/StoreSpu.php +++ b/app/controller/api/store/product/StoreSpu.php @@ -60,16 +60,28 @@ class StoreSpu extends BaseController 'mer_id', 'type_id', 'street_id', - 'category_id' + 'category_id', + 'type_code', + 'village_id' ]); - if ($where['type_id']) { + if ($where['type_id']||$where['type_code']) { $arr = ['status' => 1, 'mer_state' => 1, 'is_del' => 0]; if ($where['street_id']) { $arr['street_id'] = $where['street_id']; } + if ($where['village_id']) { + $arr['village_id'] = $where['village_id']; + } + if($where['type_code']){ + $mer_type_id=Db::name('merchant_type')->where('type_code',$where['type_code'])->value('mer_type_id'); + if($mer_type_id){ + $where['type_id'] = $mer_type_id; + } + } $where['mer_ids'] = Merchant::getInstance()->whereIn('type_id', explode(',', $where['type_id']))->where($arr)->column('mer_id'); } - unset($where['type_id'], $where['street_id']); + + unset($where['type_id'], $where['street_id'],$where['type_code'],$where['village_id']); $where['is_gift_bag'] = 0; $where['product_type'] = $where['product_type']??0; diff --git a/app/controller/api/user/User.php b/app/controller/api/user/User.php index 1b0d602d..609cce5f 100644 --- a/app/controller/api/user/User.php +++ b/app/controller/api/user/User.php @@ -528,4 +528,11 @@ class User extends BaseController return app('json')->success('修改成功'); } + public function bindPromotionCode() + { + $promotionCode = $this->request->param('promotion_code'); + $this->repository->bindPromotionCode($promotionCode, $this->request->uid()); + return app('json')->success('修改成功'); + } + } diff --git a/app/controller/merchant/system/financial/Financial.php b/app/controller/merchant/system/financial/Financial.php index 9ec70428..102bdc0a 100644 --- a/app/controller/merchant/system/financial/Financial.php +++ b/app/controller/merchant/system/financial/Financial.php @@ -58,9 +58,8 @@ class Financial extends BaseController */ public function accountSave(MerchantFinancialAccountValidate $accountValidate) { - $data = $this->request->params(['account','financial_type','name','bank','bank_code','wechat','wechat_code','alipay','alipay_code']); //idcard + $data = $this->request->params(['account','financial_type','name','bank','bank_code','wechat','wechat_code','alipay','alipay_code','bank_branch']); //idcard $accountValidate->check($data); - $this->repository->saveAccount($this->request->merId(),$data); return app('json')->success('保存成功'); } diff --git a/app/listener/SendGoodsCode.php b/app/listener/SendGoodsCode.php index afedb671..b4b31c7a 100644 --- a/app/listener/SendGoodsCode.php +++ b/app/listener/SendGoodsCode.php @@ -18,7 +18,9 @@ class SendGoodsCode Log::info("sendGoodsCode ============= handle监听order_id " . $this->event['order_id']); if ($this->event['activity_type'] == 0 || in_array($this->event['source'], [0,2,103])) { //发起物流信息返回快递员手机 - $logisticsPhone = $this->sendLogistics($this->event['order_id'], $this->event['order_sn']); + if($this->event['activity_type'] !=98){ + $logisticsPhone = $this->sendLogistics($this->event['order_id'], $this->event['order_sn']); + } //生成用户的收货码 $this->generateLogisticsCode($this->event['uid'], $this->event['order_id'], $this->event['order_sn'], $logisticsPhone); } diff --git a/crmeb/jobs/SendGoodsCodeJob.php b/crmeb/jobs/SendGoodsCodeJob.php index e8c7a209..380ba129 100644 --- a/crmeb/jobs/SendGoodsCodeJob.php +++ b/crmeb/jobs/SendGoodsCodeJob.php @@ -32,7 +32,9 @@ class SendGoodsCodeJob implements JobInterface try { if ($this->event['activity_type'] == 0 || in_array($this->event['source'], [0,2,103])) { //发起物流信息返回快递员手机 - $logisticsPhone = $this->sendLogistics($this->event['order_id'], $this->event['order_sn']); + if($this->event['activity_type'] !=98){ + $logisticsPhone = $this->sendLogistics($this->event['order_id'], $this->event['order_sn']); + } //生成用户的收货码 $this->generateLogisticsCode($this->event['uid'], $this->event['order_id'], $this->event['order_sn'], $logisticsPhone); } diff --git a/public/download/assets/index-9d172a4b.js b/public/download/assets/index-9d172a4b.js new file mode 100644 index 00000000..0c7e923d --- /dev/null +++ b/public/download/assets/index-9d172a4b.js @@ -0,0 +1,6 @@ +!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))t(e);new MutationObserver((e=>{for(const n of e)if("childList"===n.type)for(const e of n.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&t(e)})).observe(document,{childList:!0,subtree:!0})}function t(e){if(e.ep)return;e.ep=!0;const t=function(e){const t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?t.credentials="include":"anonymous"===e.crossOrigin?t.credentials="omit":t.credentials="same-origin",t}(e);fetch(e.href,t)}}();const e={},t=function(t,n,o){if(!n||0===n.length)return t();const r=document.getElementsByTagName("link");return Promise.all(n.map((t=>{if(t=function(e,t){return new URL(e,t).href}(t,o),t in e)return;e[t]=!0;const n=t.endsWith(".css"),i=n?'[rel="stylesheet"]':"";if(!!o)for(let e=r.length-1;e>=0;e--){const o=r[e];if(o.href===t&&(!n||"stylesheet"===o.rel))return}else if(document.querySelector(`link[href="${t}"]${i}`))return;const s=document.createElement("link");return s.rel=n?"stylesheet":"modulepreload",n||(s.as="script",s.crossOrigin=""),s.href=t,document.head.appendChild(s),n?new Promise(((e,n)=>{s.addEventListener("load",e),s.addEventListener("error",(()=>n(new Error(`Unable to preload CSS for ${t}`))))})):void 0}))).then((()=>t()))};function n(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r!!n[e.toLowerCase()]:e=>!!n[e]}function o(e){if(x(e)){const t={};for(let n=0;n{if(e){const n=e.split(i);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function c(e){let t="";if(T(e))t=e;else if(x(e))for(let n=0;n{},h=()=>!1,g=/^on[^a-z]/,m=e=>g.test(e),v=e=>e.startsWith("onUpdate:"),y=Object.assign,b=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},_=Object.prototype.hasOwnProperty,w=(e,t)=>_.call(e,t),x=Array.isArray,C=e=>"[object Map]"===L(e),S=e=>"function"==typeof e,T=e=>"string"==typeof e,k=e=>"symbol"==typeof e,E=e=>null!==e&&"object"==typeof e,$=e=>E(e)&&S(e.then)&&S(e.catch),O=Object.prototype.toString,L=e=>O.call(e),A=e=>"[object Object]"===L(e),P=e=>T(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,M=n(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),N=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},j=/-(\w)/g,R=N((e=>e.replace(j,((e,t)=>t?t.toUpperCase():"")))),F=/\B([A-Z])/g,B=N((e=>e.replace(F,"-$1").toLowerCase())),I=N((e=>e.charAt(0).toUpperCase()+e.slice(1))),V=N((e=>e?`on${I(e)}`:"")),W=(e,t)=>!Object.is(e,t),H=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},D=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let U;const q=["ad","ad-content-page","ad-draw","audio","button","camera","canvas","checkbox","checkbox-group","cover-image","cover-view","editor","form","functional-page-navigator","icon","image","input","label","live-player","live-pusher","map","movable-area","movable-view","navigator","official-account","open-data","picker","picker-view","picker-view-column","progress","radio","radio-group","rich-text","scroll-view","slider","swiper","swiper-item","switch","text","textarea","video","view","web-view"].map((e=>"uni-"+e));const X=/^([a-z-]+:)?\/\//i,K=/^data:.*,.*/,Y="onLoad";function J(e){if(!e)return;let t=e.type.name;for(;t&&(n=B(t),-1!==q.indexOf("uni-"+n.replace("v-uni-","")));)t=(e=e.parent).type.name;var n;return e.proxy}function G(e){return 1===e.nodeType}function Z(e){return 0===e.indexOf("/")}function Q(e){return Z(e)?e:"/"+e}function ee(e,t=null){let n;return(...o)=>(e&&(n=e.apply(t,o),e=null),n)}function te(e){return R(e.substring(5))}const ne=ee((()=>{const e=HTMLElement.prototype,t=e.setAttribute;e.setAttribute=function(e,n){if(e.startsWith("data-")&&this.tagName.startsWith("UNI-")){(this.__uniDataset||(this.__uniDataset={}))[te(e)]=n}t.call(this,e,n)};const n=e.removeAttribute;e.removeAttribute=function(e){this.__uniDataset&&e.startsWith("data-")&&this.tagName.startsWith("UNI-")&&delete this.__uniDataset[te(e)],n.call(this,e)}}));function oe(e){return y({},e.dataset,e.__uniDataset)}const re=new RegExp("\"[^\"]+\"|'[^']+'|url\\([^)]+\\)|(\\d*\\.?\\d+)[r|u]px","g");function ie(e){return{passive:e}}function se(e){const{id:t,offsetTop:n,offsetLeft:o}=e;return{id:t,dataset:oe(e),offsetTop:n,offsetLeft:o}}function ae(e){try{return decodeURIComponent(""+e)}catch(t){}return""+e}function ce(e={}){const t={};return Object.keys(e).forEach((n=>{try{t[n]=ae(e[n])}catch(o){t[n]=e[n]}})),t}const le=/\+/g;function ue(e){const t={};if(""===e||"?"===e)return t;const n=("?"===e[0]?e.slice(1):e).split("&");for(let o=0;o{this.on(e,t[e])}))}emit(e,...t){const n=this.listener[e];if(!n)return this.emitCache.push({eventName:e,args:t});n.forEach((e=>{e.fn.apply(e.fn,t)})),this.listener[e]=n.filter((e=>"once"!==e.type))}on(e,t){this._addListener(e,"on",t),this._clearCache(e)}once(e,t){this._addListener(e,"once",t),this._clearCache(e)}off(e,t){const n=this.listener[e];if(n)if(t)for(let o=0;o{if(S(e._component.onError))return t(e)})),ve=function(){};ve.prototype={on:function(e,t,n){var o=this.e||(this.e={});return(o[e]||(o[e]=[])).push({fn:t,ctx:n}),this},once:function(e,t,n){var o=this;function r(){o.off(e,r),t.apply(n,arguments)}return r._=t,this.on(e,r,n)},emit:function(e){for(var t=[].slice.call(arguments,1),n=((this.e||(this.e={}))[e]||[]).slice(),o=0,r=n.length;o{let s=e[i];r[i]=(()=>{if(A(s))return _e(s,t,n);if(x(s))return s.map((e=>A(e)?_e(e,t,n):e));if(T(s)&&s.startsWith("@")){const t=s.replace("@","");let n=o[t]||s;switch(i){case"titleColor":n="black"===n?"#000000":"#ffffff";break;case"borderStyle":n=(e=n)&&e in be?be[e]:e}return n}var e;return s})()})),r):e}let we;class xe{constructor(e=!1){this.detached=e,this._active=!0,this.effects=[],this.cleanups=[],this.parent=we,!e&&we&&(this.index=(we.scopes||(we.scopes=[])).push(this)-1)}get active(){return this._active}run(e){if(this._active){const t=we;try{return we=this,e()}finally{we=t}}}on(){we=this}off(){we=this.parent}stop(e){if(this._active){let t,n;for(t=0,n=this.effects.length;t{const t=new Set(e);return t.w=0,t.n=0,t},Te=e=>(e.w&Oe)>0,ke=e=>(e.n&Oe)>0,Ee=new WeakMap;let $e=0,Oe=1;let Le;const Ae=Symbol(""),Pe=Symbol("");class Me{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,function(e,t=we){t&&t.active&&t.effects.push(e)}(this,n)}run(){if(!this.active)return this.fn();let e=Le,t=je;for(;e;){if(e===this)return;e=e.parent}try{return this.parent=Le,Le=this,je=!0,Oe=1<<++$e,$e<=30?(({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o{("length"===n||n>=e)&&a.push(t)}))}else switch(void 0!==n&&a.push(s.get(n)),t){case"add":x(e)?P(n)&&a.push(s.get("length")):(a.push(s.get(Ae)),C(e)&&a.push(s.get(Pe)));break;case"delete":x(e)||(a.push(s.get(Ae)),C(e)&&a.push(s.get(Pe)));break;case"set":C(e)&&a.push(s.get(Ae))}if(1===a.length)a[0]&&He(a[0]);else{const e=[];for(const t of a)t&&e.push(...t);He(Se(e))}}function He(e,t){const n=x(e)?e:[...e];for(const o of n)o.computed&&ze(o);for(const o of n)o.computed||ze(o)}function ze(e,t){(e!==Le||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const De=n("__proto__,__v_isRef,__isVue"),Ue=new Set(Object.getOwnPropertyNames(Symbol).filter((e=>"arguments"!==e&&"caller"!==e)).map((e=>Symbol[e])).filter(k)),qe=Ze(),Xe=Ze(!1,!0),Ke=Ze(!0),Ye=Je();function Je(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=Rt(this);for(let t=0,r=this.length;t{e[t]=function(...e){Fe();const n=Rt(this)[t].apply(this,e);return Be(),n}})),e}function Ge(e){const t=Rt(this);return Ie(t,0,e),t.hasOwnProperty(e)}function Ze(e=!1,t=!1){return function(n,o,r){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_isShallow"===o)return t;if("__v_raw"===o&&r===(e?t?Et:kt:t?Tt:St).get(n))return n;const i=x(n);if(!e){if(i&&w(Ye,o))return Reflect.get(Ye,o,r);if("hasOwnProperty"===o)return Ge}const s=Reflect.get(n,o,r);return(k(o)?Ue.has(o):De(o))?s:(e||Ie(n,0,o),t?s:Ht(s)?i&&P(o)?s:s.value:E(s)?e?Lt(s):Ot(s):s)}}function Qe(e=!1){return function(t,n,o,r){let i=t[n];if(Mt(i)&&Ht(i)&&!Ht(o))return!1;if(!e&&(Nt(o)||Mt(o)||(i=Rt(i),o=Rt(o)),!x(t)&&Ht(i)&&!Ht(o)))return i.value=o,!0;const s=x(t)&&P(n)?Number(n)!0,deleteProperty:(e,t)=>!0},nt=y({},et,{get:Xe,set:Qe(!0)}),ot=e=>e,rt=e=>Reflect.getPrototypeOf(e);function it(e,t,n=!1,o=!1){const r=Rt(e=e.__v_raw),i=Rt(t);n||(t!==i&&Ie(r,0,t),Ie(r,0,i));const{has:s}=rt(r),a=o?ot:n?It:Bt;return s.call(r,t)?a(e.get(t)):s.call(r,i)?a(e.get(i)):void(e!==r&&e.get(t))}function st(e,t=!1){const n=this.__v_raw,o=Rt(n),r=Rt(e);return t||(e!==r&&Ie(o,0,e),Ie(o,0,r)),e===r?n.has(e):n.has(e)||n.has(r)}function at(e,t=!1){return e=e.__v_raw,!t&&Ie(Rt(e),0,Ae),Reflect.get(e,"size",e)}function ct(e){e=Rt(e);const t=Rt(this);return rt(t).has.call(t,e)||(t.add(e),We(t,"add",e,e)),this}function lt(e,t){t=Rt(t);const n=Rt(this),{has:o,get:r}=rt(n);let i=o.call(n,e);i||(e=Rt(e),i=o.call(n,e));const s=r.call(n,e);return n.set(e,t),i?W(t,s)&&We(n,"set",e,t):We(n,"add",e,t),this}function ut(e){const t=Rt(this),{has:n,get:o}=rt(t);let r=n.call(t,e);r||(e=Rt(e),r=n.call(t,e)),o&&o.call(t,e);const i=t.delete(e);return r&&We(t,"delete",e,void 0),i}function dt(){const e=Rt(this),t=0!==e.size,n=e.clear();return t&&We(e,"clear",void 0,void 0),n}function ft(e,t){return function(n,o){const r=this,i=r.__v_raw,s=Rt(i),a=t?ot:e?It:Bt;return!e&&Ie(s,0,Ae),i.forEach(((e,t)=>n.call(o,a(e),a(t),r)))}}function pt(e,t,n){return function(...o){const r=this.__v_raw,i=Rt(r),s=C(i),a="entries"===e||e===Symbol.iterator&&s,c="keys"===e&&s,l=r[e](...o),u=n?ot:t?It:Bt;return!t&&Ie(i,0,c?Pe:Ae),{next(){const{value:e,done:t}=l.next();return t?{value:e,done:t}:{value:a?[u(e[0]),u(e[1])]:u(e),done:t}},[Symbol.iterator](){return this}}}}function ht(e){return function(...t){return"delete"!==e&&this}}function gt(){const e={get(e){return it(this,e)},get size(){return at(this)},has:st,add:ct,set:lt,delete:ut,clear:dt,forEach:ft(!1,!1)},t={get(e){return it(this,e,!1,!0)},get size(){return at(this)},has:st,add:ct,set:lt,delete:ut,clear:dt,forEach:ft(!1,!0)},n={get(e){return it(this,e,!0)},get size(){return at(this,!0)},has(e){return st.call(this,e,!0)},add:ht("add"),set:ht("set"),delete:ht("delete"),clear:ht("clear"),forEach:ft(!0,!1)},o={get(e){return it(this,e,!0,!0)},get size(){return at(this,!0)},has(e){return st.call(this,e,!0)},add:ht("add"),set:ht("set"),delete:ht("delete"),clear:ht("clear"),forEach:ft(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((r=>{e[r]=pt(r,!1,!1),n[r]=pt(r,!0,!1),t[r]=pt(r,!1,!0),o[r]=pt(r,!0,!0)})),[e,n,t,o]}const[mt,vt,yt,bt]=gt();function _t(e,t){const n=t?e?bt:yt:e?vt:mt;return(t,o,r)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get(w(n,o)&&o in t?n:t,o,r)}const wt={get:_t(!1,!1)},xt={get:_t(!1,!0)},Ct={get:_t(!0,!1)},St=new WeakMap,Tt=new WeakMap,kt=new WeakMap,Et=new WeakMap;function $t(e){return e.__v_skip||!Object.isExtensible(e)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}((e=>L(e).slice(8,-1))(e))}function Ot(e){return Mt(e)?e:At(e,!1,et,wt,St)}function Lt(e){return At(e,!0,tt,Ct,kt)}function At(e,t,n,o,r){if(!E(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const s=$t(e);if(0===s)return e;const a=new Proxy(e,2===s?o:n);return r.set(e,a),a}function Pt(e){return Mt(e)?Pt(e.__v_raw):!(!e||!e.__v_isReactive)}function Mt(e){return!(!e||!e.__v_isReadonly)}function Nt(e){return!(!e||!e.__v_isShallow)}function jt(e){return Pt(e)||Mt(e)}function Rt(e){const t=e&&e.__v_raw;return t?Rt(t):e}function Ft(e){return z(e,"__v_skip",!0),e}const Bt=e=>E(e)?Ot(e):e,It=e=>E(e)?Lt(e):e;function Vt(e){je&&Le&&Ve((e=Rt(e)).dep||(e.dep=Se()))}function Wt(e,t){const n=(e=Rt(e)).dep;n&&He(n)}function Ht(e){return!(!e||!0!==e.__v_isRef)}function zt(e){return function(e,t){if(Ht(e))return e;return new Dt(e,t)}(e,!1)}class Dt{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:Rt(e),this._value=t?e:Bt(e)}get value(){return Vt(this),this._value}set value(e){const t=this.__v_isShallow||Nt(e)||Mt(e);e=t?e:Rt(e),W(e,this._rawValue)&&(this._rawValue=e,this._value=t?e:Bt(e),Wt(this))}}const Ut={get:(e,t,n)=>{return Ht(o=Reflect.get(e,t,n))?o.value:o;var o},set:(e,t,n,o)=>{const r=e[t];return Ht(r)&&!Ht(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function qt(e){return Pt(e)?e:new Proxy(e,Ut)}var Xt;class Kt{constructor(e,t,n,o){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this[Xt]=!1,this._dirty=!0,this.effect=new Me(e,(()=>{this._dirty||(this._dirty=!0,Wt(this))})),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=n}get value(){const e=Rt(this);return Vt(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function Yt(e,t,n,o){let r;try{r=o?e(...o):e()}catch(i){Gt(i,t,n)}return r}function Jt(e,t,n,o){if(S(e)){const r=Yt(e,t,n,o);return r&&$(r)&&r.catch((e=>{Gt(e,t,n)})),r}const r=[];for(let i=0;i>>1;pn(en[o])pn(e)-pn(t))),rn=0;rnnull==e.id?1/0:e.id,hn=(e,t)=>{const n=pn(e)-pn(t);if(0===n){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function gn(e){Qt=!1,Zt=!0,en.sort(hn);try{for(tn=0;tnT(e)?e.trim():e))),t&&(r=n.map(D))}let a,c=o[a=V(t)]||o[a=V(R(t))];!c&&i&&(c=o[a=V(B(t))]),c&&Jt(c,e,6,vn(e,c,r));const l=o[a+"Once"];if(l){if(e.emitted){if(e.emitted[a])return}else e.emitted={};e.emitted[a]=!0,Jt(l,e,6,vn(e,l,r))}}function vn(e,t,n){if(1!==n.length)return n;if(S(t)){if(t.length<2)return n}else if(!t.find((e=>e.length>=2)))return n;const o=n[0];if(o&&w(o,"type")&&w(o,"timeStamp")&&w(o,"target")&&w(o,"currentTarget")&&w(o,"detail")){const t=e.proxy,o=t.$gcd(t,!0);o&&n.push(o)}return n}function yn(e,t,n=!1){const o=t.emitsCache,r=o.get(e);if(void 0!==r)return r;const i=e.emits;let s={},a=!1;if(!S(e)){const o=e=>{const n=yn(e,t,!0);n&&(a=!0,y(s,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return i||a?(x(i)?i.forEach((e=>s[e]=null)):y(s,i),E(e)&&o.set(e,s),s):(E(e)&&o.set(e,null),null)}function bn(e,t){return!(!e||!m(t))&&(t=t.slice(2).replace(/Once$/,""),w(e,t[0].toLowerCase()+t.slice(1))||w(e,B(t))||w(e,t))}let _n=null,wn=null;function xn(e){const t=_n;return _n=e,wn=e&&e.type.__scopeId||null,t}function Cn(e,t=_n,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&ur(-1);const r=xn(t);let i;try{i=e(...n)}finally{xn(r),o._d&&ur(1)}return i};return o._n=!0,o._c=!0,o._d=!0,o}function Sn(e){const{type:t,vnode:n,proxy:o,withProxy:r,props:i,propsOptions:[s],slots:a,attrs:c,emit:l,render:u,renderCache:d,data:f,setupState:p,ctx:h,inheritAttrs:g}=e;let m,y;const b=xn(e);try{if(4&n.shapeFlag){const e=r||o;m=Sr(u.call(e,e,d,i,p,f,h)),y=c}else{const e=t;0,m=Sr(e.length>1?e(i,{attrs:c,slots:a,emit:l}):e(i,null)),y=t.props?c:Tn(c)}}catch(w){sr.length=0,Gt(w,e,1),m=_r(rr)}let _=m;if(y&&!1!==g){const e=Object.keys(y),{shapeFlag:t}=_;e.length&&7&t&&(s&&e.some(v)&&(y=kn(y,s)),_=wr(_,y))}return n.dirs&&(_=wr(_),_.dirs=_.dirs?_.dirs.concat(n.dirs):n.dirs),n.transition&&(_.transition=n.transition),m=_,xn(b),m}const Tn=e=>{let t;for(const n in e)("class"===n||"style"===n||m(n))&&((t||(t={}))[n]=e[n]);return t},kn=(e,t)=>{const n={};for(const o in e)v(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function En(e,t,n){const o=Object.keys(t);if(o.length!==Object.keys(e).length)return!0;for(let r=0;r1)return n&&S(t)?t.call(o.proxy):t}}function Ln(e,t){return Mn(e,null,t)}const An={};function Pn(e,t,n){return Mn(e,t,n)}function Mn(e,t,{immediate:n,deep:o,flush:r,onTrack:i,onTrigger:s}=d){const a=we===(null==Ar?void 0:Ar.scope)?Ar:null;let c,l,u=!1,f=!1;if(Ht(e)?(c=()=>e.value,u=Nt(e)):Pt(e)?(c=()=>e,o=!0):x(e)?(f=!0,u=e.some((e=>Pt(e)||Nt(e))),c=()=>e.map((e=>Ht(e)?e.value:Pt(e)?Rn(e):S(e)?Yt(e,a,2):void 0))):c=S(e)?t?()=>Yt(e,a,2):()=>{if(!a||!a.isUnmounted)return l&&l(),Jt(e,a,3,[g])}:p,t&&o){const e=c;c=()=>Rn(e())}let h,g=e=>{l=_.onStop=()=>{Yt(e,a,4)}};if(Rr){if(g=p,t?n&&Jt(t,a,3,[c(),f?[]:void 0,g]):c(),"sync"!==r)return p;{const e=Hr();h=e.__watcherHandles||(e.__watcherHandles=[])}}let m=f?new Array(e.length).fill(An):An;const v=()=>{if(_.active)if(t){const e=_.run();(o||u||(f?e.some(((e,t)=>W(e,m[t]))):W(e,m)))&&(l&&l(),Jt(t,a,3,[e,m===An?void 0:f&&m[0]===An?[]:m,g]),m=e)}else _.run()};let y;v.allowRecurse=!!t,"sync"===r?y=v:"post"===r?y=()=>Zo(v,a&&a.suspense):(v.pre=!0,a&&(v.id=a.uid),y=()=>ln(v));const _=new Me(c,y);t?n?v():m=_.run():"post"===r?Zo(_.run.bind(_),a&&a.suspense):_.run();const w=()=>{_.stop(),a&&a.scope&&b(a.scope.effects,_)};return h&&h.push(w),w}function Nn(e,t,n){const o=this.proxy,r=T(e)?e.includes(".")?jn(o,e):()=>o[e]:e.bind(o,o);let i;S(t)?i=t:(i=t.handler,n=t);const s=Ar;Mr(this);const a=Mn(r,i.bind(o),n);return s?Mr(s):Nr(),a}function jn(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e{Rn(e,t)}));else if(A(e))for(const n in e)Rn(e[n],t);return e}const Fn=[Function,Array],Bn={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Fn,onEnter:Fn,onAfterEnter:Fn,onEnterCancelled:Fn,onBeforeLeave:Fn,onLeave:Fn,onAfterLeave:Fn,onLeaveCancelled:Fn,onBeforeAppear:Fn,onAppear:Fn,onAfterAppear:Fn,onAppearCancelled:Fn},In={name:"BaseTransition",props:Bn,setup(e,{slots:t}){const n=Pr(),o=function(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return oo((()=>{e.isMounted=!0})),so((()=>{e.isUnmounting=!0})),e}();let r;return()=>{const i=t.default&&Un(t.default(),!0);if(!i||!i.length)return;let s=i[0];if(i.length>1)for(const e of i)if(e.type!==rr){s=e;break}const a=Rt(e),{mode:c}=a;if(o.isLeaving)return Hn(s);const l=zn(s);if(!l)return Hn(s);const u=Wn(l,a,o,n);Dn(l,u);const d=n.subTree,f=d&&zn(d);let p=!1;const{getTransitionKey:h}=l.type;if(h){const e=h();void 0===r?r=e:e!==r&&(r=e,p=!0)}if(f&&f.type!==rr&&(!gr(l,f)||p)){const e=Wn(f,a,o,n);if(Dn(f,e),"out-in"===c)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,!1!==n.update.active&&n.update()},Hn(s);"in-out"===c&&l.type!==rr&&(e.delayLeave=(e,t,n)=>{Vn(o,f)[String(f.key)]=f,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=n})}return s}}};function Vn(e,t){const{leavingVNodes:n}=e;let o=n.get(t.type);return o||(o=Object.create(null),n.set(t.type,o)),o}function Wn(e,t,n,o){const{appear:r,mode:i,persisted:s=!1,onBeforeEnter:a,onEnter:c,onAfterEnter:l,onEnterCancelled:u,onBeforeLeave:d,onLeave:f,onAfterLeave:p,onLeaveCancelled:h,onBeforeAppear:g,onAppear:m,onAfterAppear:v,onAppearCancelled:y}=t,b=String(e.key),_=Vn(n,e),w=(e,t)=>{e&&Jt(e,o,9,t)},C=(e,t)=>{const n=t[1];w(e,t),x(e)?e.every((e=>e.length<=1))&&n():e.length<=1&&n()},S={mode:i,persisted:s,beforeEnter(t){let o=a;if(!n.isMounted){if(!r)return;o=g||a}t._leaveCb&&t._leaveCb(!0);const i=_[b];i&&gr(e,i)&&i.el._leaveCb&&i.el._leaveCb(),w(o,[t])},enter(e){let t=c,o=l,i=u;if(!n.isMounted){if(!r)return;t=m||c,o=v||l,i=y||u}let s=!1;const a=e._enterCb=t=>{s||(s=!0,w(t?i:o,[e]),S.delayedLeave&&S.delayedLeave(),e._enterCb=void 0)};t?C(t,[e,a]):a()},leave(t,o){const r=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return o();w(d,[t]);let i=!1;const s=t._leaveCb=n=>{i||(i=!0,o(),w(n?h:p,[t]),t._leaveCb=void 0,_[r]===e&&delete _[r])};_[r]=e,f?C(f,[t,s]):s()},clone:e=>Wn(e,t,n,o)};return S}function Hn(e){if(Yn(e))return(e=wr(e)).children=null,e}function zn(e){return Yn(e)?e.children?e.children[0]:void 0:e}function Dn(e,t){6&e.shapeFlag&&e.component?Dn(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Un(e,t=!1,n){let o=[],r=0;for(let i=0;i1)for(let i=0;i!!e.type.__asyncLoader;function Kn(e,t){const{ref:n,props:o,children:r,ce:i}=t.vnode,s=_r(e,o,r);return s.ref=n,s.ce=i,delete t.vnode.ce,s}const Yn=e=>e.type.__isKeepAlive;function Jn(e,t){Zn(e,"a",t)}function Gn(e,t){Zn(e,"da",t)}function Zn(e,t,n=Ar){const o=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(o.__called=!1,eo(t,o,n),n){let e=n.parent;for(;e&&e.parent;)Yn(e.parent.vnode)&&Qn(o,t,n,e),e=e.parent}}function Qn(e,t,n,o){const r=eo(t,e,o,!0);ao((()=>{b(o[t],r)}),n)}function eo(e,t,n=Ar,o=!1){if(n){if(r=e,fe.indexOf(r)>-1&&n.$pageInstance){if(n.type.__reserved)return;if(n!==n.$pageInstance&&(n=n.$pageInstance,function(e){return pe.indexOf(e)>-1}(e))){const o=n.proxy;Jt(t.bind(o),n,e,"onLoad"===e?[o.$page.options]:[])}}const i=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;Fe(),Mr(n);const r=Jt(t,n,e,o);return Nr(),Be(),r});return o?i.unshift(s):i.push(s),s}var r}const to=e=>(t,n=Ar)=>(!Rr||"sp"===e)&&eo(e,((...e)=>t(...e)),n),no=to("bm"),oo=to("m"),ro=to("bu"),io=to("u"),so=to("bum"),ao=to("um"),co=to("sp"),lo=to("rtg"),uo=to("rtc");function fo(e,t=Ar){eo("ec",e,t)}function po(e,t){const n=_n;if(null===n)return e;const o=Ir(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let i=0;i!hr(e)||e.type!==rr&&!(e.type===nr&&!bo(e.children))))?e:null}const _o=e=>e?jr(e)?Ir(e)||e.proxy:_o(e.parent):null,wo=y(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>_o(e.parent),$root:e=>_o(e.root),$emit:e=>e.emit,$options:e=>$o(e),$forceUpdate:e=>e.f||(e.f=()=>ln(e.update)),$nextTick:e=>e.n||(e.n=cn.bind(e.proxy)),$watch:e=>Nn.bind(e)}),xo=(e,t)=>e!==d&&!e.__isScriptSetup&&w(e,t),Co={get({_:e},t){const{ctx:n,setupState:o,data:r,props:i,accessCache:s,type:a,appContext:c}=e;let l;if("$"!==t[0]){const a=s[t];if(void 0!==a)switch(a){case 1:return o[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(xo(o,t))return s[t]=1,o[t];if(r!==d&&w(r,t))return s[t]=2,r[t];if((l=e.propsOptions[0])&&w(l,t))return s[t]=3,i[t];if(n!==d&&w(n,t))return s[t]=4,n[t];So&&(s[t]=0)}}const u=wo[t];let f,p;return u?("$attrs"===t&&Ie(e,0,t),u(e)):(f=a.__cssModules)&&(f=f[t])?f:n!==d&&w(n,t)?(s[t]=4,n[t]):(p=c.config.globalProperties,w(p,t)?p[t]:void 0)},set({_:e},t,n){const{data:o,setupState:r,ctx:i}=e;return xo(r,t)?(r[t]=n,!0):o!==d&&w(o,t)?(o[t]=n,!0):!w(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(i[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:r,propsOptions:i}},s){let a;return!!n[s]||e!==d&&w(e,s)||xo(t,s)||(a=i[0])&&w(a,s)||w(o,s)||w(wo,s)||w(r.config.globalProperties,s)},defineProperty(e,t,n){return null!=n.get?e._.accessCache[t]=0:w(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let So=!0;function To(e){const t=$o(e),n=e.proxy,o=e.ctx;So=!1,t.beforeCreate&&ko(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:s,watch:a,provide:c,inject:l,created:u,beforeMount:d,mounted:f,beforeUpdate:h,updated:g,activated:m,deactivated:v,beforeDestroy:y,beforeUnmount:b,destroyed:_,unmounted:w,render:C,renderTracked:T,renderTriggered:k,errorCaptured:$,serverPrefetch:O,expose:L,inheritAttrs:A,components:P,directives:M,filters:N}=t;if(l&&function(e,t,n=p,o=!1){x(e)&&(e=Po(e));for(const r in e){const n=e[r];let i;i=E(n)?"default"in n?On(n.from||r,n.default,!0):On(n.from||r):On(n),Ht(i)&&o?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>i.value,set:e=>i.value=e}):t[r]=i}}(l,o,null,e.appContext.config.unwrapInjectedRef),s)for(const p in s){const e=s[p];S(e)&&(o[p]=e.bind(n))}if(r){const t=r.call(n,n);E(t)&&(e.data=Ot(t))}if(So=!0,i)for(const x in i){const e=i[x],t=S(e)?e.bind(n,n):S(e.get)?e.get.bind(n,n):p,r=!S(e)&&S(e.set)?e.set.bind(n):p,s=Vr({get:t,set:r});Object.defineProperty(o,x,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e})}if(a)for(const p in a)Eo(a[p],o,n,p);if(c){const e=S(c)?c.call(n):c;Reflect.ownKeys(e).forEach((t=>{$n(t,e[t])}))}function j(e,t){x(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(u&&ko(u,e,"c"),j(no,d),j(oo,f),j(ro,h),j(io,g),j(Jn,m),j(Gn,v),j(fo,$),j(uo,T),j(lo,k),j(so,b),j(ao,w),j(co,O),x(L))if(L.length){const t=e.exposed||(e.exposed={});L.forEach((e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})}))}else e.exposed||(e.exposed={});C&&e.render===p&&(e.render=C),null!=A&&(e.inheritAttrs=A),P&&(e.components=P),M&&(e.directives=M);const R=e.appContext.config.globalProperties.$applyOptions;R&&R(t,e,n)}function ko(e,t,n){Jt(x(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function Eo(e,t,n,o){const r=o.includes(".")?jn(n,o):()=>n[o];if(T(e)){const n=t[e];S(n)&&Pn(r,n)}else if(S(e))Pn(r,e.bind(n));else if(E(e))if(x(e))e.forEach((e=>Eo(e,t,n,o)));else{const o=S(e.handler)?e.handler.bind(n):t[e.handler];S(o)&&Pn(r,o,e)}}function $o(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:s}}=e.appContext,a=i.get(t);let c;return a?c=a:r.length||n||o?(c={},r.length&&r.forEach((e=>Oo(c,e,s,!0))),Oo(c,t,s)):c=t,E(t)&&i.set(t,c),c}function Oo(e,t,n,o=!1){const{mixins:r,extends:i}=t;i&&Oo(e,i,n,!0),r&&r.forEach((t=>Oo(e,t,n,!0)));for(const s in t)if(o&&"expose"===s);else{const o=Lo[s]||n&&n[s];e[s]=o?o(e[s],t[s]):t[s]}return e}const Lo={data:Ao,props:No,emits:No,methods:No,computed:No,beforeCreate:Mo,created:Mo,beforeMount:Mo,mounted:Mo,beforeUpdate:Mo,updated:Mo,beforeDestroy:Mo,beforeUnmount:Mo,destroyed:Mo,unmounted:Mo,activated:Mo,deactivated:Mo,errorCaptured:Mo,serverPrefetch:Mo,components:No,directives:No,watch:function(e,t){if(!e)return t;if(!t)return e;const n=y(Object.create(null),e);for(const o in t)n[o]=Mo(e[o],t[o]);return n},provide:Ao,inject:function(e,t){return No(Po(e),Po(t))}};function Ao(e,t){return t?e?function(){return y(S(e)?e.call(this,this):e,S(t)?t.call(this,this):t)}:t:e}function Po(e){if(x(e)){const t={};for(let n=0;n{c=!0;const[n,o]=Bo(e,t,!0);y(s,n),o&&a.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!i&&!c)return E(e)&&o.set(e,f),f;if(x(i))for(let u=0;u-1,n[1]=o<0||t-1||w(n,"default"))&&a.push(e)}}}const l=[s,a];return E(e)&&o.set(e,l),l}function Io(e){return"$"!==e[0]}function Vo(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:null===e?"null":""}function Wo(e,t){return Vo(e)===Vo(t)}function Ho(e,t){return x(t)?t.findIndex((t=>Wo(t,e))):S(t)&&Wo(t,e)?0:-1}const zo=e=>"_"===e[0]||"$stable"===e,Do=e=>x(e)?e.map(Sr):[Sr(e)],Uo=(e,t,n)=>{if(t._n)return t;const o=Cn(((...e)=>Do(t(...e))),n);return o._c=!1,o},qo=(e,t,n)=>{const o=e._ctx;for(const r in e){if(zo(r))continue;const n=e[r];if(S(n))t[r]=Uo(0,n,o);else if(null!=n){const e=Do(n);t[r]=()=>e}}},Xo=(e,t)=>{const n=Do(t);e.slots.default=()=>n};function Ko(){return{app:null,config:{isNativeTag:h,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Yo=0;function Jo(e,t){return function(n,o=null){S(n)||(n=Object.assign({},n)),null==o||E(o)||(o=null);const r=Ko(),i=new Set;let s=!1;const a=r.app={_uid:Yo++,_component:n,_props:o,_container:null,_context:r,_instance:null,version:zr,get config(){return r.config},set config(e){},use:(e,...t)=>(i.has(e)||(e&&S(e.install)?(i.add(e),e.install(a,...t)):S(e)&&(i.add(e),e(a,...t))),a),mixin:e=>(r.mixins.includes(e)||r.mixins.push(e),a),component:(e,t)=>t?(r.components[e]=t,a):r.components[e],directive:(e,t)=>t?(r.directives[e]=t,a):r.directives[e],mount(i,c,l){if(!s){const u=_r(n,o);return u.appContext=r,c&&t?t(u,i):e(u,i,l),s=!0,a._container=i,i.__vue_app__=a,a._instance=u.component,Ir(u.component)||u.component.proxy}},unmount(){s&&(e(null,a._container),delete a._container.__vue_app__)},provide:(e,t)=>(r.provides[e]=t,a)};return a}}function Go(e,t,n,o,r=!1){if(x(e))return void e.forEach(((e,i)=>Go(e,t&&(x(t)?t[i]:t),n,o,r)));if(Xn(o)&&!r)return;const i=4&o.shapeFlag?Ir(o.component)||o.component.proxy:o.el,s=r?null:i,{i:a,r:c}=e,l=t&&t.r,u=a.refs===d?a.refs={}:a.refs,f=a.setupState;if(null!=l&&l!==c&&(T(l)?(u[l]=null,w(f,l)&&(f[l]=null)):Ht(l)&&(l.value=null)),S(c))Yt(c,a,12,[s,u]);else{const t=T(c),o=Ht(c);if(t||o){const a=()=>{if(e.f){const n=t?w(f,c)?f[c]:u[c]:c.value;r?x(n)&&b(n,i):x(n)?n.includes(i)||n.push(i):t?(u[c]=[i],w(f,c)&&(f[c]=u[c])):(c.value=[i],e.k&&(u[e.k]=c.value))}else t?(u[c]=s,w(f,c)&&(f[c]=s)):o&&(c.value=s,e.k&&(u[e.k]=s))};s?(a.id=-1,Zo(a,n)):a()}}}const Zo=function(e,t){var n;t&&t.pendingBranch?x(e)?t.effects.push(...e):t.effects.push(e):(x(n=e)?nn.push(...n):on&&on.includes(n,n.allowRecurse?rn+1:rn)||nn.push(n),un())};function Qo(e){return function(e,t){(U||(U="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{})).__VUE__=!0;const{insert:n,remove:o,patchProp:r,forcePatchProp:i,createElement:s,createText:a,createComment:c,setText:l,setElementText:u,parentNode:h,nextSibling:g,setScopeId:m=p,insertStaticContent:v}=e,b=(e,t,n,o=null,r=null,i=null,s=!1,a=null,c=!!t.dynamicChildren)=>{if(e===t)return;e&&!gr(e,t)&&(o=te(e),J(e,r,i,!0),e=null),-2===t.patchFlag&&(c=!1,t.dynamicChildren=null);const{type:l,ref:u,shapeFlag:d}=t;switch(l){case or:_(e,t,n,o);break;case rr:x(e,t,n,o);break;case ir:null==e&&C(t,n,o,s);break;case nr:j(e,t,n,o,r,i,s,a,c);break;default:1&d?k(e,t,n,o,r,i,s,a,c):6&d?F(e,t,n,o,r,i,s,a,c):(64&d||128&d)&&l.process(e,t,n,o,r,i,s,a,c,oe)}null!=u&&r&&Go(u,e&&e.ref,i,t||e,!t)},_=(e,t,o,r)=>{if(null==e)n(t.el=a(t.children),o,r);else{const n=t.el=e.el;t.children!==e.children&&l(n,t.children)}},x=(e,t,o,r)=>{null==e?n(t.el=c(t.children||""),o,r):t.el=e.el},C=(e,t,n,o)=>{[e.el,e.anchor]=v(e.children,t,n,o,e.el,e.anchor)},S=({el:e,anchor:t},o,r)=>{let i;for(;e&&e!==t;)i=g(e),n(e,o,r),e=i;n(t,o,r)},T=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=g(e),o(e),e=n;o(t)},k=(e,t,n,o,r,i,s,a,c)=>{s=s||"svg"===t.type,null==e?E(t,n,o,r,i,s,a,c):A(e,t,r,i,s,a,c)},E=(e,t,o,i,a,c,l,d)=>{let f,p;const{type:h,props:g,shapeFlag:m,transition:v,dirs:y}=e;if(f=e.el=s(e.type,c,g&&g.is,g),8&m?u(f,e.children):16&m&&L(e.children,f,null,i,a,c&&"foreignObject"!==h,l,d),y&&ho(e,null,i,"created"),O(f,e,e.scopeId,l,i),g){for(const t in g)"value"===t||M(t)||r(f,t,null,g[t],c,e.children,i,a,ee);"value"in g&&r(f,"value",null,g.value),(p=g.onVnodeBeforeMount)&&$r(p,i,e)}Object.defineProperty(f,"__vueParentComponent",{value:i,enumerable:!1}),y&&ho(e,null,i,"beforeMount");const b=(!a||a&&!a.pendingBranch)&&v&&!v.persisted;b&&v.beforeEnter(f),n(f,t,o),((p=g&&g.onVnodeMounted)||b||y)&&Zo((()=>{p&&$r(p,i,e),b&&v.enter(f),y&&ho(e,null,i,"mounted")}),a)},O=(e,t,n,o,r)=>{if(n&&m(e,n),o)for(let i=0;i{for(let l=c;l{const l=t.el=e.el;let{patchFlag:f,dynamicChildren:p,dirs:h}=t;f|=16&e.patchFlag;const g=e.props||d,m=t.props||d;let v;n&&er(n,!1),(v=m.onVnodeBeforeUpdate)&&$r(v,n,t,e),h&&ho(t,e,n,"beforeUpdate"),n&&er(n,!0);const y=s&&"foreignObject"!==t.type;if(p?P(e.dynamicChildren,p,l,n,o,y,a):c||q(e,t,l,null,n,o,y,a,!1),f>0){if(16&f)N(l,t,g,m,n,o,s);else if(2&f&&g.class!==m.class&&r(l,"class",null,m.class,s),4&f&&r(l,"style",g.style,m.style,s),8&f){const a=t.dynamicProps;for(let t=0;t{v&&$r(v,n,t,e),h&&ho(t,e,n,"updated")}),o)},P=(e,t,n,o,r,i,s)=>{for(let a=0;a{if(n!==o){if(n!==d)for(const i in n)M(i)||i in o||r(e,i,n[i],null,c,t.children,s,a,ee);for(const l in o){if(M(l))continue;const u=o[l],d=n[l];(u!==d&&"value"!==l||i&&i(e,l))&&r(e,l,d,u,c,t.children,s,a,ee)}"value"in o&&r(e,"value",n.value,o.value)}},j=(e,t,o,r,i,s,c,l,u)=>{const d=t.el=e?e.el:a(""),f=t.anchor=e?e.anchor:a("");let{patchFlag:p,dynamicChildren:h,slotScopeIds:g}=t;g&&(l=l?l.concat(g):g),null==e?(n(d,o,r),n(f,o,r),L(t.children,o,f,i,s,c,l,u)):p>0&&64&p&&h&&e.dynamicChildren?(P(e.dynamicChildren,h,o,i,s,c,l),(null!=t.key||i&&t===i.subTree)&&tr(e,t,!0)):q(e,t,o,f,i,s,c,l,u)},F=(e,t,n,o,r,i,s,a,c)=>{t.slotScopeIds=a,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,s,c):I(t,n,o,r,i,s,c):V(e,t,c)},I=(e,t,n,o,r,i,s)=>{const a=e.component=function(e,t,n){const o=e.type,r=(t?t.appContext:e.appContext)||Or,i={uid:Lr++,vnode:e,type:o,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new xe(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Bo(o,r),emitsOptions:yn(o,r),emit:null,emitted:null,propsDefaults:d,inheritAttrs:o.inheritAttrs,ctx:d,data:d,props:d,attrs:d,slots:d,refs:d,setupState:d,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,bda:null,da:null,ba:null,a:null,rtg:null,rtc:null,ec:null,sp:null};i.ctx={_:i},i.root=t?t.root:i,i.emit=mn.bind(null,i),i.$pageInstance=t&&t.$pageInstance,e.ce&&e.ce(i);return i}(e,o,r);if(Yn(e)&&(a.ctx.renderer=oe),function(e,t=!1){Rr=t;const{props:n,children:o}=e.vnode,r=jr(e);jo(e,n,r,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=Rt(t),z(t,"_",n)):qo(t,e.slots={})}else e.slots={},t&&Xo(e,t);z(e.slots,mr,1)})(e,o);const i=r?function(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Ft(new Proxy(e.ctx,Co));const{setup:o}=n;if(o){const n=e.setupContext=o.length>1?function(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(Ie(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}(e):null;Mr(e),Fe();const r=Yt(o,e,0,[e.props,n]);if(Be(),Nr(),$(r)){if(r.then(Nr,Nr),t)return r.then((n=>{Fr(e,n,t)})).catch((t=>{Gt(t,e,0)}));e.asyncDep=r}else Fr(e,r,t)}else Br(e,t)}(e,t):void 0;Rr=!1}(a),a.asyncDep){if(r&&r.registerDep(a,W),!e.el){const e=a.subTree=_r(rr);x(null,e,t,n)}}else W(a,e,t,n,r,i,s)},V=(e,t,n)=>{const o=t.component=e.component;if(function(e,t,n){const{props:o,children:r,component:i}=e,{props:s,children:a,patchFlag:c}=t,l=i.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&c>=0))return!(!r&&!a||a&&a.$stable)||o!==s&&(o?!s||En(o,s,l):!!s);if(1024&c)return!0;if(16&c)return o?En(o,s,l):!!s;if(8&c){const e=t.dynamicProps;for(let t=0;ttn&&en.splice(t,1)}(o.update),o.update()}else t.el=e.el,o.vnode=t},W=(e,t,n,o,r,i,s)=>{const a=()=>{if(e.isMounted){let t,{next:n,bu:o,u:a,parent:c,vnode:l}=e,u=n;er(e,!1),n?(n.el=l.el,D(e,n,s)):n=l,o&&H(o),(t=n.props&&n.props.onVnodeBeforeUpdate)&&$r(t,c,n,l),er(e,!0);const d=Sn(e),f=e.subTree;e.subTree=d,b(f,d,h(f.el),te(f),e,r,i),n.el=d.el,null===u&&function({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}(e,d.el),a&&Zo(a,r),(t=n.props&&n.props.onVnodeUpdated)&&Zo((()=>$r(t,c,n,l)),r)}else{let s;const{el:a,props:c}=t,{bm:l,m:u,parent:d}=e,f=Xn(t);if(er(e,!1),l&&H(l),!f&&(s=c&&c.onVnodeBeforeMount)&&$r(s,d,t),er(e,!0),a&&ie){const n=()=>{e.subTree=Sn(e),ie(a,e.subTree,e,r,null)};f?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{const s=e.subTree=Sn(e);b(null,s,n,o,e,r,i),t.el=s.el}if(u&&Zo(u,r),!f&&(s=c&&c.onVnodeMounted)){const e=t;Zo((()=>$r(s,d,e)),r)}const{ba:p,a:h}=e;(256&t.shapeFlag||d&&Xn(d.vnode)&&256&d.vnode.shapeFlag)&&(p&&function(e){for(let t=0;t{p.forEach((e=>e.__called=!1))}),r)),e.isMounted=!0,t=n=o=null}},c=e.effect=new Me(a,(()=>ln(l)),e.scope),l=e.update=()=>c.run();l.id=e.uid,er(e,!0),l()},D=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,o){const{props:r,attrs:i,vnode:{patchFlag:s}}=e,a=Rt(r),[c]=e.propsOptions;let l=!1;if(!(o||s>0)||16&s){let o;Ro(e,t,r,i)&&(l=!0);for(const i in a)t&&(w(t,i)||(o=B(i))!==i&&w(t,o))||(c?!n||void 0===n[i]&&void 0===n[o]||(r[i]=Fo(c,a,i,void 0,e,!0)):delete r[i]);if(i!==a)for(const e in i)t&&w(t,e)||(delete i[e],l=!0)}else if(8&s){const n=e.vnode.dynamicProps;for(let o=0;o{const{vnode:o,slots:r}=e;let i=!0,s=d;if(32&o.shapeFlag){const e=t._;e?n&&1===e?i=!1:(y(r,t),n||1!==e||delete r._):(i=!t.$stable,qo(t,r)),s=t}else t&&(Xo(e,t),s={default:1});if(i)for(const a in r)zo(a)||a in s||delete r[a]})(e,t.children,n),Fe(),dn(),Be()},q=(e,t,n,o,r,i,s,a,c=!1)=>{const l=e&&e.children,d=e?e.shapeFlag:0,f=t.children,{patchFlag:p,shapeFlag:h}=t;if(p>0){if(128&p)return void K(l,f,n,o,r,i,s,a,c);if(256&p)return void X(l,f,n,o,r,i,s,a,c)}8&h?(16&d&&ee(l,r,i),f!==l&&u(n,f)):16&d?16&h?K(l,f,n,o,r,i,s,a,c):ee(l,r,i,!0):(8&d&&u(n,""),16&h&&L(f,n,o,r,i,s,a,c))},X=(e,t,n,o,r,i,s,a,c)=>{t=t||f;const l=(e=e||f).length,u=t.length,d=Math.min(l,u);let p;for(p=0;pu?ee(e,r,i,!0,!1,d):L(t,n,o,r,i,s,a,c,d)},K=(e,t,n,o,r,i,s,a,c)=>{let l=0;const u=t.length;let d=e.length-1,p=u-1;for(;l<=d&&l<=p;){const o=e[l],u=t[l]=c?Tr(t[l]):Sr(t[l]);if(!gr(o,u))break;b(o,u,n,null,r,i,s,a,c),l++}for(;l<=d&&l<=p;){const o=e[d],l=t[p]=c?Tr(t[p]):Sr(t[p]);if(!gr(o,l))break;b(o,l,n,null,r,i,s,a,c),d--,p--}if(l>d){if(l<=p){const e=p+1,d=ep)for(;l<=d;)J(e[l],r,i,!0),l++;else{const h=l,g=l,m=new Map;for(l=g;l<=p;l++){const e=t[l]=c?Tr(t[l]):Sr(t[l]);null!=e.key&&m.set(e.key,l)}let v,y=0;const _=p-g+1;let w=!1,x=0;const C=new Array(_);for(l=0;l<_;l++)C[l]=0;for(l=h;l<=d;l++){const o=e[l];if(y>=_){J(o,r,i,!0);continue}let u;if(null!=o.key)u=m.get(o.key);else for(v=g;v<=p;v++)if(0===C[v-g]&&gr(o,t[v])){u=v;break}void 0===u?J(o,r,i,!0):(C[u-g]=l+1,u>=x?x=u:w=!0,b(o,t[u],n,null,r,i,s,a,c),y++)}const S=w?function(e){const t=e.slice(),n=[0];let o,r,i,s,a;const c=e.length;for(o=0;o>1,e[n[a]]0&&(t[o]=n[i-1]),n[i]=o)}}i=n.length,s=n[i-1];for(;i-- >0;)n[i]=s,s=t[s];return n}(C):f;for(v=S.length-1,l=_-1;l>=0;l--){const e=g+l,d=t[e],f=e+1{const{el:s,type:a,transition:c,children:l,shapeFlag:u}=e;if(6&u)return void Y(e.component.subTree,t,o,r);if(128&u)return void e.suspense.move(t,o,r);if(64&u)return void a.move(e,t,o,oe);if(a===nr){n(s,t,o);for(let e=0;ec.enter(s)),i);else{const{leave:e,delayLeave:r,afterLeave:i}=c,a=()=>n(s,t,o),l=()=>{e(s,(()=>{a(),i&&i()}))};r?r(s,a,l):l()}else n(s,t,o)},J=(e,t,n,o=!1,r=!1)=>{const{type:i,props:s,ref:a,children:c,dynamicChildren:l,shapeFlag:u,patchFlag:d,dirs:f}=e;if(null!=a&&Go(a,null,n,e,!0),256&u)return void t.ctx.deactivate(e);const p=1&u&&f,h=!Xn(e);let g;if(h&&(g=s&&s.onVnodeBeforeUnmount)&&$r(g,t,e),6&u)Q(e.component,n,o);else{if(128&u)return void e.suspense.unmount(n,o);p&&ho(e,null,t,"beforeUnmount"),64&u?e.type.remove(e,t,n,r,oe,o):l&&(i!==nr||d>0&&64&d)?ee(l,t,n,!1,!0):(i===nr&&384&d||!r&&16&u)&&ee(c,t,n),o&&G(e)}(h&&(g=s&&s.onVnodeUnmounted)||p)&&Zo((()=>{g&&$r(g,t,e),p&&ho(e,null,t,"unmounted")}),n)},G=e=>{const{type:t,el:n,anchor:r,transition:i}=e;if(t===nr)return void Z(n,r);if(t===ir)return void T(e);const s=()=>{o(n),i&&!i.persisted&&i.afterLeave&&i.afterLeave()};if(1&e.shapeFlag&&i&&!i.persisted){const{leave:t,delayLeave:o}=i,r=()=>t(n,s);o?o(e.el,s,r):r()}else s()},Z=(e,t)=>{let n;for(;e!==t;)n=g(e),o(e),e=n;o(t)},Q=(e,t,n)=>{const{bum:o,scope:r,update:i,subTree:s,um:a}=e;o&&H(o),r.stop(),i&&(i.active=!1,J(s,e,t,n)),a&&Zo(a,t),Zo((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},ee=(e,t,n,o=!1,r=!1,i=0)=>{for(let s=i;s6&e.shapeFlag?te(e.component.subTree):128&e.shapeFlag?e.suspense.next():g(e.anchor||e.el),ne=(e,t,n)=>{null==e?t._vnode&&J(t._vnode,null,null,!0):b(t._vnode||null,e,t,null,null,null,n),dn(),fn(),t._vnode=e},oe={p:b,um:J,m:Y,r:G,mt:I,mc:L,pc:q,pbc:P,n:te,o:e};let re,ie;t&&([re,ie]=t(oe));return{render:ne,hydrate:re,createApp:Jo(ne,re)}}(e)}function er({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function tr(e,t,n=!1){const o=e.children,r=t.children;if(x(o)&&x(r))for(let i=0;i0?ar||f:null,sr.pop(),ar=sr[sr.length-1]||null,lr>0&&ar&&ar.push(e),e}function fr(e,t,n,o,r,i){return dr(br(e,t,n,o,r,i,!0))}function pr(e,t,n,o,r){return dr(_r(e,t,n,o,r,!0))}function hr(e){return!!e&&!0===e.__v_isVNode}function gr(e,t){return e.type===t.type&&e.key===t.key}const mr="__vInternal",vr=({key:e})=>null!=e?e:null,yr=({ref:e,ref_key:t,ref_for:n})=>null!=e?T(e)||Ht(e)||S(e)?{i:_n,r:e,k:t,f:!!n}:e:null;function br(e,t=null,n=null,o=0,r=null,i=(e===nr?0:1),s=!1,a=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&vr(t),ref:t&&yr(t),scopeId:wn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:o,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:_n};return a?(kr(c,n),128&i&&e.normalize(c)):n&&(c.shapeFlag|=T(n)?8:16),lr>0&&!s&&ar&&(c.patchFlag>0||6&i)&&32!==c.patchFlag&&ar.push(c),c}const _r=function(e,t=null,n=null,r=0,i=null,s=!1){e&&e!==mo||(e=rr);if(hr(e)){const o=wr(e,t,!0);return n&&kr(o,n),lr>0&&!s&&ar&&(6&o.shapeFlag?ar[ar.indexOf(e)]=o:ar.push(o)),o.patchFlag|=-2,o}a=e,S(a)&&"__vccOpts"in a&&(e=e.__vccOpts);var a;if(t){t=function(e){return e?jt(e)||mr in e?y({},e):e:null}(t);let{class:e,style:n}=t;e&&!T(e)&&(t.class=c(e)),E(n)&&(jt(n)&&!x(n)&&(n=y({},n)),t.style=o(n))}const l=T(e)?1:(e=>e.__isSuspense)(e)?128:(e=>e.__isTeleport)(e)?64:E(e)?4:S(e)?2:0;return br(e,t,n,r,i,l,s,!0)};function wr(e,t,n=!1){const{props:o,ref:r,patchFlag:i,children:s}=e,a=t?Er(o||{},t):o;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&vr(a),ref:t&&t.ref?n&&r?x(r)?r.concat(yr(t)):[r,yr(t)]:yr(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==nr?-1===i?16:16|i:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&wr(e.ssContent),ssFallback:e.ssFallback&&wr(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function xr(e=" ",t=0){return _r(or,null,e,t)}function Cr(e="",t=!1){return t?(cr(),pr(rr,null,e)):_r(rr,null,e)}function Sr(e){return null==e||"boolean"==typeof e?_r(rr):x(e)?_r(nr,null,e.slice()):"object"==typeof e?Tr(e):_r(or,null,String(e))}function Tr(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:wr(e)}function kr(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if(x(t))n=16;else if("object"==typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),kr(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||mr in t?3===o&&_n&&(1===_n.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=_n}}else S(t)?(t={default:t,_ctx:_n},n=32):(t=String(t),64&o?(n=16,t=[xr(t)]):n=8);e.children=t,e.shapeFlag|=n}function Er(...e){const t={};for(let n=0;nAr||_n,Mr=e=>{Ar=e,e.scope.on()},Nr=()=>{Ar&&Ar.scope.off(),Ar=null};function jr(e){return 4&e.vnode.shapeFlag}let Rr=!1;function Fr(e,t,n){S(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:E(t)&&(e.setupState=qt(t)),Br(e,n)}function Br(e,t,n){const o=e.type;e.render||(e.render=o.render||p),Mr(e),Fe(),To(e),Be(),Nr()}function Ir(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(qt(Ft(e.exposed)),{get:(t,n)=>n in t?t[n]:n in wo?wo[n](e):void 0,has:(e,t)=>t in e||t in wo}))}const Vr=(e,t)=>function(e,t,n=!1){let o,r;const i=S(e);return i?(o=e,r=p):(o=e.get,r=e.set),new Kt(o,r,i||!r,n)}(e,0,Rr);const Wr=Symbol(""),Hr=()=>On(Wr),zr="3.2.47",Dr="undefined"!=typeof document?document:null,Ur=Dr&&Dr.createElement("template"),qr={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,o)=>{const r=t?Dr.createElementNS("http://www.w3.org/2000/svg",e):Dr.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>Dr.createTextNode(e),createComment:e=>Dr.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Dr.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,o,r,i){const s=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),r!==i&&(r=r.nextSibling););else{Ur.innerHTML=o?`${e}`:e;const r=Ur.content;if(o){const e=r.firstChild;for(;e.firstChild;)r.appendChild(e.firstChild);r.removeChild(e)}t.insertBefore(r,n)}return[s?s.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};const Xr=/\s*!important$/;function Kr(e,t,n){if(x(n))n.forEach((n=>Kr(e,t,n)));else if(null==n&&(n=""),n=ri(n),t.startsWith("--"))e.setProperty(t,n);else{const o=function(e,t){const n=Jr[t];if(n)return n;let o=R(t);if("filter"!==o&&o in e)return Jr[t]=o;o=I(o);for(let r=0;re.replace(re,((e,t)=>{if(!t)return e;if(1===ni)return`${t}${ti}`;const n=function(e,t){const n=Math.pow(10,t+1),o=Math.floor(e*n);return 10*Math.round(o/10)/n}(parseFloat(t)*ni,oi);return 0===n?"0":`${n}${ti}`})));var ti,ni,oi;const ri=e=>T(e)?ei(e):e,ii="http://www.w3.org/1999/xlink";function si(e,t,n,o,r=null){const i=e._vei||(e._vei={}),s=i[t];if(o&&s)s.value=o;else{const[n,a]=function(e){let t;if(ai.test(e)){let n;for(t={};n=e.match(ai);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[":"===e[2]?e.slice(3):B(e.slice(2)),t]}(t);if(o){const s=i[t]=function(e,t){const n=e=>{if(e._vts){if(e._vts<=n.attached)return}else e._vts=Date.now();const o=t&&t.proxy,r=o&&o.$nne,{value:i}=n;if(r&&x(i)){const n=ui(e,i);for(let o=0;oci||(li.then((()=>ci=0)),ci=Date.now()))(),n}(o,r);!function(e,t,n,o){e.addEventListener(t,n,o)}(e,n,s,a)}else s&&(!function(e,t,n,o){e.removeEventListener(t,n,o)}(e,n,s,a),i[t]=void 0)}}const ai=/(?:Once|Passive|Capture)$/;let ci=0;const li=Promise.resolve();function ui(e,t){if(x(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map((e=>{const t=t=>!t._stopped&&e&&e(t);return t.__wwe=e.__wwe,t}))}return t}const di=/^on[a-z]/;const fi="transition",pi=(e,{slots:t})=>function(e,t,n){const o=arguments.length;return 2===o?E(t)&&!x(t)?hr(t)?_r(e,null,[t]):_r(e,t):_r(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&hr(n)&&(n=[n]),_r(e,t,n))}(In,function(e){const t={};for(const y in e)y in hi||(t[y]=e[y]);if(!1===e.css)return t;const{name:n="v",type:o,duration:r,enterFromClass:i=`${n}-enter-from`,enterActiveClass:s=`${n}-enter-active`,enterToClass:a=`${n}-enter-to`,appearFromClass:c=i,appearActiveClass:l=s,appearToClass:u=a,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:p=`${n}-leave-to`}=e,h=function(e){if(null==e)return null;if(E(e))return[vi(e.enter),vi(e.leave)];{const t=vi(e);return[t,t]}}(r),g=h&&h[0],m=h&&h[1],{onBeforeEnter:v,onEnter:b,onEnterCancelled:_,onLeave:w,onLeaveCancelled:x,onBeforeAppear:C=v,onAppear:S=b,onAppearCancelled:T=_}=t,k=(e,t,n)=>{bi(e,t?u:a),bi(e,t?l:s),n&&n()},$=(e,t)=>{e._isLeaving=!1,bi(e,d),bi(e,p),bi(e,f),t&&t()},O=e=>(t,n)=>{const r=e?S:b,s=()=>k(t,e,n);gi(r,[t,s]),_i((()=>{bi(t,e?c:i),yi(t,e?u:a),mi(r)||xi(t,o,g,s)}))};return y(t,{onBeforeEnter(e){gi(v,[e]),yi(e,i),yi(e,s)},onBeforeAppear(e){gi(C,[e]),yi(e,c),yi(e,l)},onEnter:O(!1),onAppear:O(!0),onLeave(e,t){e._isLeaving=!0;const n=()=>$(e,t);yi(e,d),document.body.offsetHeight,yi(e,f),_i((()=>{e._isLeaving&&(bi(e,d),yi(e,p),mi(w)||xi(e,o,m,n))})),gi(w,[e,n])},onEnterCancelled(e){k(e,!1),gi(_,[e])},onAppearCancelled(e){k(e,!0),gi(T,[e])},onLeaveCancelled(e){$(e),gi(x,[e])}})}(e),t);pi.displayName="Transition";const hi={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};pi.props=y({},Bn,hi);const gi=(e,t=[])=>{x(e)?e.forEach((e=>e(...t))):e&&e(...t)},mi=e=>!!e&&(x(e)?e.some((e=>e.length>1)):e.length>1);function vi(e){const t=(e=>{const t=T(e)?Number(e):NaN;return isNaN(t)?e:t})(e);return t}function yi(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e._vtc||(e._vtc=new Set)).add(t)}function bi(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function _i(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let wi=0;function xi(e,t,n,o){const r=e._endId=++wi,i=()=>{r===e._endId&&o()};if(n)return setTimeout(i,n);const{type:s,timeout:a,propCount:c}=function(e,t){const n=window.getComputedStyle(e),o=e=>(n[e]||"").split(", "),r=o("transitionDelay"),i=o("transitionDuration"),s=Ci(r,i),a=o("animationDelay"),c=o("animationDuration"),l=Ci(a,c);let u=null,d=0,f=0;t===fi?s>0&&(u=fi,d=s,f=i.length):"animation"===t?l>0&&(u="animation",d=l,f=c.length):(d=Math.max(s,l),u=d>0?s>l?fi:"animation":null,f=u?u===fi?i.length:c.length:0);const p=u===fi&&/\b(transform|all)(,|$)/.test(o("transitionProperty").toString());return{type:u,timeout:d,propCount:f,hasTransform:p}}(e,t);if(!s)return o();const l=s+"end";let u=0;const d=()=>{e.removeEventListener(l,f),i()},f=t=>{t.target===e&&++u>=c&&d()};setTimeout((()=>{uSi(t)+Si(e[n]))))}function Si(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}const Ti=["ctrl","shift","alt","meta"],ki={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>Ti.some((n=>e[`${n}Key`]&&!t.includes(n)))},Ei=(e,t)=>(n,...o)=>{for(let e=0;e{Oi(e,!1)})):Oi(e,t))},beforeUnmount(e,{value:t}){Oi(e,t)}};function Oi(e,t){e.style.display=t?e._vod:"none"}const Li=y({patchProp:(e,t,n,o,r=!1,i,s,a,c)=>{if(0===t.indexOf("change:"))return function(e,t,n,o=null){if(!n||!o)return;const r=t.replace("change:",""),{attrs:i}=o,s=i[r],a=(e.__wxsProps||(e.__wxsProps={}))[r];if(a===s)return;e.__wxsProps[r]=s;const c=o.proxy;cn((()=>{n(s,a,c.$gcd(c,!0),c.$gcd(c,!1))}))}(e,t,o,s);"class"===t?function(e,t,n){const{__wxsAddClass:o,__wxsRemoveClass:r}=e;r&&r.length&&(t=(t||"").split(/\s+/).filter((e=>-1===r.indexOf(e))).join(" "),r.length=0),o&&o.length&&(t=(t||"")+" "+o.join(" "));const i=e._vtc;i&&(t=(t?[t,...i]:[...i]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,o,r):"style"===t?function(e,t,n){const o=e.style,r=T(n);if(n&&!r){if(t&&!T(t))for(const e in t)null==n[e]&&Kr(o,e,"");for(const e in n)Kr(o,e,n[e])}else{const i=o.display;r?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=i)}const{__wxsStyle:i}=e;if(i)for(const s in i)Kr(o,s,i[s])}(e,n,o):m(t)?v(t)||si(e,t,0,o,s):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,o){if(o)return"innerHTML"===t||"textContent"===t||!!(t in e&&di.test(t)&&S(n));if("spellcheck"===t||"draggable"===t||"translate"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if(di.test(t)&&T(n))return!1;return t in e}(e,t,o,r))?function(e,t,n,o,r,i,s){if("innerHTML"===t||"textContent"===t)return o&&s(o,r,i),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const o=null==n?"":n;return e.value===o&&"OPTION"!==e.tagName||(e.value=o),void(null==n&&e.removeAttribute(t))}let a=!1;if(""===n||null==n){const o=typeof e[t];"boolean"===o?n=u(n):null==n&&"string"===o?(n="",a=!0):"number"===o&&(n=0,a=!0)}try{e[t]=n}catch(c){}a&&e.removeAttribute(t)}(e,t,o,i,s,a,c):("true-value"===t?e._trueValue=o:"false-value"===t&&(e._falseValue=o),function(e,t,n,o,r){if(o&&t.startsWith("xlink:"))null==n?e.removeAttributeNS(ii,t.slice(6,t.length)):e.setAttributeNS(ii,t,n);else{const o=l(t);null==n||o&&!u(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}(e,t,o,r))},forcePatchProp:(e,t)=>0===t.indexOf("change:")||("class"===t&&e.__wxsClassChanged?(e.__wxsClassChanged=!1,!0):!("style"!==t||!e.__wxsStyleChanged)&&(e.__wxsStyleChanged=!1,!0))},qr);let Ai;const Pi=(...e)=>{const t=(Ai||(Ai=Qo(Li))).createApp(...e),{mount:n}=t;return t.mount=e=>{const o=function(e){if(T(e)){return document.querySelector(e)}return e}(e);if(!o)return;const r=t._component;S(r)||r.render||r.template||(r.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},t};const Mi=["{","}"];const Ni=/^(?:\d)+/,ji=/^(?:\w)+/;const Ri=Object.prototype.hasOwnProperty,Fi=(e,t)=>Ri.call(e,t),Bi=new class{constructor(){this._caches=Object.create(null)}interpolate(e,t,n=Mi){if(!t)return[e];let o=this._caches[e];return o||(o=function(e,[t,n]){const o=[];let r=0,i="";for(;r-1?"zh-Hans":e.indexOf("-hant")>-1?"zh-Hant":(n=e,["-tw","-hk","-mo","-cht"].find((e=>-1!==n.indexOf(e)))?"zh-Hant":"zh-Hans");var n;let o=["en","fr","es"];t&&Object.keys(t).length>0&&(o=Object.keys(t));const r=function(e,t){return t.find((t=>0===e.indexOf(t)))}(e,o);return r||void 0}class Vi{constructor({locale:e,fallbackLocale:t,messages:n,watcher:o,formater:r}){this.locale="en",this.fallbackLocale="en",this.message={},this.messages={},this.watchers=[],t&&(this.fallbackLocale=t),this.formater=r||Bi,this.messages=n||{},this.setLocale(e||"en"),o&&this.watchLocale(o)}setLocale(e){const t=this.locale;this.locale=Ii(e,this.messages)||this.fallbackLocale,this.messages[this.locale]||(this.messages[this.locale]={}),this.message=this.messages[this.locale],t!==this.locale&&this.watchers.forEach((e=>{e(this.locale,t)}))}getLocale(){return this.locale}watchLocale(e){const t=this.watchers.push(e)-1;return()=>{this.watchers.splice(t,1)}}add(e,t,n=!0){const o=this.messages[e];o?n?Object.assign(o,t):Object.keys(t).forEach((e=>{Fi(o,e)||(o[e]=t[e])})):this.messages[e]=t}f(e,t,n){return this.formater.interpolate(e,t,n).join("")}t(e,t,n){let o=this.message;return"string"==typeof t?(t=Ii(t,this.messages))&&(o=this.messages[t]):n=t,Fi(o,e)?this.formater.interpolate(o[e],n).join(""):(console.warn(`Cannot translate the value of keypath ${e}. Use the value of keypath as default.`),e)}}function Wi(e,t={},n,o){"string"!=typeof e&&([e,t]=[t,e]),"string"!=typeof e&&(e="undefined"!=typeof uni&&_c?_c():"undefined"!=typeof global&&global.getLocale?global.getLocale():"en"),"string"!=typeof n&&(n="undefined"!=typeof __uniConfig&&__uniConfig.fallbackLocale||"en");const r=new Vi({locale:e,fallbackLocale:n,messages:t,watcher:o});let i=(e,t)=>{{let e=!1;i=function(t,n){const o=Al().$vm;return o&&(o.$locale,e||(e=!0,function(e,t){e.$watchLocale?e.$watchLocale((e=>{t.setLocale(e)})):e.$watch((()=>e.$locale),(e=>{t.setLocale(e)}))}(o,r))),r.t(t,n)}}return i(e,t)};return{i18n:r,f:(e,t,n)=>r.f(e,t,n),t:(e,t)=>i(e,t),add:(e,t,n=!0)=>r.add(e,t,n),watch:e=>r.watchLocale(e),getLocale:()=>r.getLocale(),setLocale:e=>r.setLocale(e)}} +/*! + * vue-router v4.1.6 + * (c) 2022 Eduardo San Martin Morote + * @license MIT + */var Hi,zi,Di,Ui;(zi=Hi||(Hi={})).pop="pop",zi.push="push",(Ui=Di||(Di={})).back="back",Ui.forward="forward",Ui.unknown="";Symbol("");var qi,Xi;(Xi=qi||(qi={}))[Xi.aborted=4]="aborted",Xi[Xi.cancelled=8]="cancelled",Xi[Xi.duplicated=16]="duplicated";const Ki=ee((()=>"undefined"!=typeof __uniConfig&&__uniConfig.locales&&!!Object.keys(__uniConfig.locales).length));let Yi;function Ji(){if(!Yi){let e;if(e=navigator.cookieEnabled&&window.localStorage&&localStorage.UNI_LOCALE||__uniConfig.locale||navigator.language,Yi=Wi(e),Ki()){const t=Object.keys(__uniConfig.locales||{});t.length&&t.forEach((e=>Yi.add(e,__uniConfig.locales[e]))),Yi.setLocale(e)}}return Yi}function Gi(e,t,n){return t.reduce(((t,o,r)=>(t[e+o]=n[r],t)),{})}const Zi=ee((()=>{const e="uni.async.",t=["error"];Ji().add("en",Gi(e,t,["The connection timed out, click the screen to try again."]),!1),Ji().add("es",Gi(e,t,["Se agotó el tiempo de conexión, haga clic en la pantalla para volver a intentarlo."]),!1),Ji().add("fr",Gi(e,t,["La connexion a expiré, cliquez sur l'écran pour réessayer."]),!1),Ji().add("zh-Hans",Gi(e,t,["连接服务器超时,点击屏幕重试"]),!1),Ji().add("zh-Hant",Gi(e,t,["連接服務器超時,點擊屏幕重試"]),!1)})),Qi=ee((()=>{const e="uni.showToast.",t=["unpaired"];Ji().add("en",Gi(e,t,["Please note showToast must be paired with hideToast"]),!1),Ji().add("es",Gi(e,t,["Tenga en cuenta que showToast debe estar emparejado con hideToast"]),!1),Ji().add("fr",Gi(e,t,["Veuillez noter que showToast doit être associé à hideToast"]),!1),Ji().add("zh-Hans",Gi(e,t,["请注意 showToast 与 hideToast 必须配对使用"]),!1),Ji().add("zh-Hant",Gi(e,t,["請注意 showToast 與 hideToast 必須配對使用"]),!1)})),es=ee((()=>{const e="uni.showLoading.",t=["unpaired"];Ji().add("en",Gi(e,t,["Please note showLoading must be paired with hideLoading"]),!1),Ji().add("es",Gi(e,t,["Tenga en cuenta que showLoading debe estar emparejado con hideLoading"]),!1),Ji().add("fr",Gi(e,t,["Veuillez noter que showLoading doit être associé à hideLoading"]),!1),Ji().add("zh-Hans",Gi(e,t,["请注意 showLoading 与 hideLoading 必须配对使用"]),!1),Ji().add("zh-Hant",Gi(e,t,["請注意 showLoading 與 hideLoading 必須配對使用"]),!1)}));function ts(e){const t=new ye;return{on:(e,n)=>t.on(e,n),once:(e,n)=>t.once(e,n),off:(e,n)=>t.off(e,n),emit:(e,...n)=>t.emit(e,...n),subscribe(n,o,r=!1){t[r?"once":"on"](`${e}.${n}`,o)},unsubscribe(n,o){t.off(`${e}.${n}`,o)},subscribeHandler(n,o,r){t.emit(`${e}.${n}`,o,r)}}}let ns=1;const os=Object.create(null);function rs(e,t){return e+"."+t}function is({id:e,name:t,args:n},o){t=rs(o,t);const r=t=>{e&&vu.publishHandler("invokeViewApi."+e,t)},i=os[t];i?i(n,r):r({})}const ss=y(ts("service"),{invokeServiceMethod:(e,t,n)=>{const{subscribe:o,publishHandler:r}=vu,i=n?ns++:0;n&&o("invokeServiceApi."+i,n,!0),r("invokeServiceApi",{id:i,name:e,args:t})}}),as=ie(!0);let cs;function ls(){cs&&(clearTimeout(cs),cs=null)}let us=0,ds=0;function fs(e){if(ls(),1!==e.touches.length)return;const{pageX:t,pageY:n}=e.touches[0];us=t,ds=n,cs=setTimeout((function(){const t=new CustomEvent("longpress",{bubbles:!0,cancelable:!0,target:e.target,currentTarget:e.currentTarget});t.touches=e.touches,t.changedTouches=e.changedTouches,e.target.dispatchEvent(t)}),350)}function ps(e){if(!cs)return;if(1!==e.touches.length)return ls();const{pageX:t,pageY:n}=e.touches[0];return Math.abs(t-us)>10||Math.abs(n-ds)>10?ls():void 0}function hs(e,t){const n=Number(e);return isNaN(n)?t:n}function gs(){const e=__uniConfig.globalStyle||{},t=hs(e.rpxCalcMaxDeviceWidth,960),n=hs(e.rpxCalcBaseDeviceWidth,375);function o(){let e=function(){const e=/^Apple/.test(navigator.vendor)&&"number"==typeof window.orientation,t=e&&90===Math.abs(window.orientation);var n=e?Math[t?"max":"min"](screen.width,screen.height):screen.width;return Math.min(window.innerWidth,document.documentElement.clientWidth,n)||n}();e=e<=t?e:n,document.documentElement.style.fontSize=e/23.4375+"px"}o(),document.addEventListener("DOMContentLoaded",o),window.addEventListener("load",o),window.addEventListener("resize",o)}function ms(){gs(),ne(),window.addEventListener("touchstart",fs,as),window.addEventListener("touchmove",ps,as),window.addEventListener("touchend",ls,as),window.addEventListener("touchcancel",ls,as)}function vs(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var ys,bs,_s=["top","left","right","bottom"],ws={};function xs(){return bs="CSS"in window&&"function"==typeof CSS.supports?CSS.supports("top: env(safe-area-inset-top)")?"env":CSS.supports("top: constant(safe-area-inset-top)")?"constant":"":""}function Cs(){if(bs="string"==typeof bs?bs:xs()){var e=[],t=!1;try{var n=Object.defineProperty({},"passive",{get:function(){t={passive:!0}}});window.addEventListener("test",null,n)}catch(a){}var o=document.createElement("div");r(o,{position:"absolute",left:"0",top:"0",width:"0",height:"0",zIndex:"-1",overflow:"hidden",visibility:"hidden"}),_s.forEach((function(e){s(o,e)})),document.body.appendChild(o),i(),ys=!0}else _s.forEach((function(e){ws[e]=0}));function r(e,t){var n=e.style;Object.keys(t).forEach((function(e){var o=t[e];n[e]=o}))}function i(t){t?e.push(t):e.forEach((function(e){e()}))}function s(e,n){var o=document.createElement("div"),s=document.createElement("div"),a=document.createElement("div"),c=document.createElement("div"),l={position:"absolute",width:"100px",height:"200px",boxSizing:"border-box",overflow:"hidden",paddingBottom:bs+"(safe-area-inset-"+n+")"};r(o,l),r(s,l),r(a,{transition:"0s",animation:"none",width:"400px",height:"400px"}),r(c,{transition:"0s",animation:"none",width:"250%",height:"250%"}),o.appendChild(a),s.appendChild(c),e.appendChild(o),e.appendChild(s),i((function(){o.scrollTop=s.scrollTop=1e4;var e=o.scrollTop,r=s.scrollTop;function i(){this.scrollTop!==(this===o?e:r)&&(o.scrollTop=s.scrollTop=1e4,e=o.scrollTop,r=s.scrollTop,function(e){Ts.length||setTimeout((function(){var e={};Ts.forEach((function(t){e[t]=ws[t]})),Ts.length=0,ks.forEach((function(t){t(e)}))}),0);Ts.push(e)}(n))}o.addEventListener("scroll",i,t),s.addEventListener("scroll",i,t)}));var u=getComputedStyle(o);Object.defineProperty(ws,n,{configurable:!0,get:function(){return parseFloat(u.paddingBottom)}})}}function Ss(e){return ys||Cs(),ws[e]}var Ts=[];var ks=[];const Es=vs({get support(){return 0!=("string"==typeof bs?bs:xs()).length},get top(){return Ss("top")},get left(){return Ss("left")},get right(){return Ss("right")},get bottom(){return Ss("bottom")},onChange:function(e){xs()&&(ys||Cs(),"function"==typeof e&&ks.push(e))},offChange:function(e){var t=ks.indexOf(e);t>=0&&ks.splice(t,1)}}),$s=Ei((()=>{}),["prevent"]);function Os(e,t){return parseInt((e.getPropertyValue(t).match(/\d+/)||["0"])[0])}function Ls(){const e=Os(document.documentElement.style,"--window-top");return e?e+Es.top:0}function As(e){const t=document.documentElement.style;Object.keys(e).forEach((n=>{t.setProperty(n,e[n])}))}const Ps="M1.952 18.080q-0.32-0.352-0.416-0.88t0.128-0.976l0.16-0.352q0.224-0.416 0.64-0.528t0.8 0.176l6.496 4.704q0.384 0.288 0.912 0.272t0.88-0.336l17.312-14.272q0.352-0.288 0.848-0.256t0.848 0.352l-0.416-0.416q0.32 0.352 0.32 0.816t-0.32 0.816l-18.656 18.912q-0.32 0.352-0.8 0.352t-0.8-0.32l-7.936-8.064z",Ms="M15.808 0.16q-4.224 0-7.872 2.176-3.552 2.112-5.632 5.728-2.144 3.744-2.144 8.128 0 4.192 2.144 7.872 2.112 3.52 5.632 5.632 3.68 2.144 7.872 2.144 4.384 0 8.128-2.144 3.616-2.080 5.728-5.632 2.176-3.648 2.176-7.872 0-4.384-2.176-8.128-2.112-3.616-5.728-5.728-3.744-2.176-8.128-2.176zM15.136 8.672h1.728q0.128 0 0.224 0.096t0.096 0.256l-0.384 10.24q0 0.064-0.048 0.112t-0.112 0.048h-1.248q-0.096 0-0.144-0.048t-0.048-0.112l-0.384-10.24q0-0.16 0.096-0.256t0.224-0.096zM16 23.328q-0.48 0-0.832-0.352t-0.352-0.848 0.352-0.848 0.832-0.352 0.832 0.352 0.352 0.848-0.352 0.848-0.832 0.352z";function Ns(e,t="#000",n=27){return _r("svg",{width:n,height:n,viewBox:"0 0 32 32"},[_r("path",{d:e,fill:t},null,8,["d","fill"])],8,["width","height"])}function js(){const e=hl(),t=e.length;if(t)return e[t-1]}function Rs(){const e=js();if(e)return e.$page.meta}function Fs(){const e=js();if(e)return e.$vm}const Bs=["navigationBar","pullToRefresh"];function Is(e,t){const n=JSON.parse(JSON.stringify(__uniConfig.globalStyle||{})),o=y({id:t},n,e);Bs.forEach((t=>{o[t]=y({},n[t],e[t])}));const{navigationBar:r}=o;return r.titleText&&r.titleImage&&(r.titleText=""),o}function Vs(e,t,n){if(T(e))n=t,t=e,e=Fs();else if("number"==typeof e){const t=hl().find((t=>t.$page.id===e));e=t?t.$vm:Fs()}if(!e)return;const o=e.$[t];return o&&((e,t)=>{let n;for(let o=0;o{function s(){if((()=>{const{scrollHeight:e}=document.documentElement,t=window.innerHeight,o=window.scrollY,i=o>0&&e>t&&o+t+n>=e,s=Math.abs(e-zs)>n;return!i||r&&!s?(!i&&r&&(r=!1),!1):(zs=e,r=!0,!0)})())return t&&t(),i=!1,setTimeout((function(){i=!0}),350),!0}e&&e(window.pageYOffset),t&&i&&(s()||(Hs=setTimeout(s,300))),o=!1};return function(){clearTimeout(Hs),o||requestAnimationFrame(s),o=!0}}function Us(e,t){if(0===t.indexOf("/"))return t;if(0===t.indexOf("./"))return Us(e,t.slice(2));const n=t.split("/"),o=n.length;let r=0;for(;r0?e.split("/"):[];return i.splice(i.length-r-1,r+1),Q(i.concat(n).join("/"))}function qs(e,t=!1){return t?__uniRoutes.find((t=>t.path===e||t.alias===e)):__uniRoutes.find((t=>t.path===e))}class Xs{constructor(e){this.$bindClass=!1,this.$bindStyle=!1,this.$vm=e,this.$el=function(e,t=!1){const{vnode:n}=e;if(G(n.el))return t?n.el?[n.el]:[]:n.el;const{subTree:o}=e;if(16&o.shapeFlag){const e=o.children.filter((e=>e.el&&G(e.el)));if(e.length>0)return t?e.map((e=>e.el)):e[0].el}return t?n.el?[n.el]:[]:n.el}(e.$),this.$el.getAttribute&&(this.$bindClass=!!this.$el.getAttribute("class"),this.$bindStyle=!!this.$el.getAttribute("style"))}selectComponent(e){if(!this.$el||!e)return;const t=Gs(this.$el.querySelector(e));return t?Ks(t,!1):void 0}selectAllComponents(e){if(!this.$el||!e)return[];const t=[],n=this.$el.querySelectorAll(e);for(let o=0;o-1&&t.splice(n,1)}const n=this.$el.__wxsRemoveClass||(this.$el.__wxsRemoveClass=[]);return-1===n.indexOf(e)&&(n.push(e),this.forceUpdate("class")),this}hasClass(e){return this.$el&&this.$el.classList.contains(e)}getDataset(){return this.$el&&this.$el.dataset}callMethod(e,t={}){const n=this.$vm[e];S(n)?n(JSON.parse(JSON.stringify(t))):this.$vm.ownerId&&vu.publishHandler("onWxsInvokeCallMethod",{nodeId:this.$el.__id,ownerId:this.$vm.ownerId,method:e,args:t})}requestAnimationFrame(e){return window.requestAnimationFrame(e)}getState(){return this.$el&&(this.$el.__wxsState||(this.$el.__wxsState={}))}triggerEvent(e,t={}){return this.$vm.$emit(e,t),this}getComputedStyle(e){if(this.$el){const t=window.getComputedStyle(this.$el);return e&&e.length?e.reduce(((e,n)=>(e[n]=t[n],e)),{}):t}return{}}setTimeout(e,t){return window.setTimeout(e,t)}clearTimeout(e){return window.clearTimeout(e)}getBoundingClientRect(){return this.$el.getBoundingClientRect()}}function Ks(e,t=!0){if(t&&e&&(e=J(e.$)),e&&e.$el)return e.$el.__wxsComponentDescriptor||(e.$el.__wxsComponentDescriptor=new Xs(e)),e.$el.__wxsComponentDescriptor}function Ys(e,t){return Ks(e,t)}function Js(e,t,n,o=!0){if(t){e.__instance||(e.__instance=!0,Object.defineProperty(e,"instance",{get:()=>Ys(n.proxy,!1)}));const r=function(e,t,n=!0){if(!t)return!1;if(n&&e.length<2)return!1;const o=J(t);if(!o)return!1;const r=o.$.type;return!(!r.$wxs&&!r.$renderjs)&&o}(t,n,o);if(r)return[e,Ys(r,!1)]}}function Gs(e){if(e)return e.__vueParentComponent&&e.__vueParentComponent.proxy}function Zs(e){for(;e&&0!==e.tagName.indexOf("UNI-");)e=e.parentElement;return e}function Qs(e,t=!1){const{type:n,timeStamp:o,target:r,currentTarget:i}=e,s={type:n,timeStamp:o,target:se(t?r:Zs(r)),detail:{},currentTarget:se(i)};return e._stopped&&(s._stopped=!0),e.type.startsWith("touch")&&(s.touches=e.touches,s.changedTouches=e.changedTouches),function(e,t){y(e,{preventDefault:()=>t.preventDefault(),stopPropagation:()=>t.stopPropagation()})}(s,e),s}function ea(e,t){return{force:1,identifier:0,clientX:e.clientX,clientY:e.clientY-t,pageX:e.pageX,pageY:e.pageY-t}}function ta(e,t){const n=[];for(let o=0;o0===e.type.indexOf("mouse")||["contextmenu"].includes(e.type))(e))!function(e,t){const n=Ls();e.pageX=t.pageX,e.pageY=t.pageY-n,e.clientX=t.clientX,e.clientY=t.clientY-n,e.touches=e.changedTouches=[ea(t,n)]}(i,e);else if((e=>"undefined"!=typeof TouchEvent&&e instanceof TouchEvent||0===e.type.indexOf("touch")||["longpress"].indexOf(e.type)>=0)(e)){const t=Ls();i.touches=ta(e.touches,t),i.changedTouches=ta(e.changedTouches,t)}else if((e=>!e.type.indexOf("key")&&e instanceof KeyboardEvent)(e)){["key","code"].forEach((t=>{Object.defineProperty(i,t,{get:()=>e[t]})}))}return Js(i,t,n)||[i]},createNativeEvent:Qs},Symbol.toStringTag,{value:"Module"});function oa(e){!function(e){const t=e.globalProperties;y(t,na),t.$gcd=Ys}(e._context.config)}let ra=1;function ia(e){return(e||function(){const e=Rs();return e?e.id:-1}())+".invokeViewApi"}const sa=y(ts("view"),{invokeOnCallback:(e,t)=>yu.emit("api."+e,t),invokeViewMethod:(e,t,n,o)=>{const{subscribe:r,publishHandler:i}=yu,s=o?ra++:0;o&&r("invokeViewApi."+s,o,!0),i(ia(n),{id:s,name:e,args:t},n)},invokeViewMethodKeepAlive:(e,t,n,o)=>{const{subscribe:r,unsubscribe:i,publishHandler:s}=yu,a=ra++,c="invokeViewApi."+a;return r(c,n),s(ia(o),{id:a,name:e,args:t},o),()=>{i(c)}}});function aa(e){Vs(js(),"onResize",e),yu.invokeOnCallback("onWindowResize",e)}function ca(e){const t=js();Vs(Al(),"onShow",e),Vs(t,"onShow")}function la(){Vs(Al(),"onHide"),Vs(js(),"onHide")}const ua=["onPageScroll","onReachBottom"];function da(){ua.forEach((e=>yu.subscribe(e,function(e){return(t,n)=>{Vs(parseInt(n),e,t)}}(e))))}function fa(){!function(){const{on:e}=yu;e("onResize",aa),e("onAppEnterForeground",ca),e("onAppEnterBackground",la)}(),da()}function pa(){if(this.$route){const e=this.$route.meta;return e.eventChannel||(e.eventChannel=new de(this.$page.id)),e.eventChannel}}function ha(e){e._context.config.globalProperties.getOpenerEventChannel=pa}function ga(){return{path:"",query:{},scene:1001,referrerInfo:{appId:"",extraData:{}}}}function ma(e){return/^-?\d+[ur]px$/i.test(e)?e.replace(/(^-?\d+)[ur]px$/i,((e,t)=>`${bc(parseFloat(t))}px`)):/^-?[\d\.]+$/.test(e)?`${e}px`:e||""}function va(e){const t=e.animation;if(!t||!t.actions||!t.actions.length)return;let n=0;const o=t.actions,r=t.actions.length;function i(){const t=o[n],s=t.option.transition,a=function(e){const t=["matrix","matrix3d","scale","scale3d","rotate3d","skew","translate","translate3d"],n=["scaleX","scaleY","scaleZ","rotate","rotateX","rotateY","rotateZ","skewX","skewY","translateX","translateY","translateZ"],o=["opacity","background-color"],r=["width","height","left","right","top","bottom"],i=e.animates,s=e.option,a=s.transition,c={},l=[];return i.forEach((e=>{let i=e.type,s=[...e.args];if(t.concat(n).includes(i))i.startsWith("rotate")||i.startsWith("skew")?s=s.map((e=>parseFloat(e)+"deg")):i.startsWith("translate")&&(s=s.map(ma)),n.indexOf(i)>=0&&(s.length=1),l.push(`${i}(${s.join(",")})`);else if(o.concat(r).includes(s[0])){i=s[0];const e=s[1];c[i]=r.includes(i)?ma(e):e}})),c.transform=c.webkitTransform=l.join(" "),c.transition=c.webkitTransition=Object.keys(c).map((e=>`${function(e){return e.replace(/[A-Z]/g,(e=>`-${e.toLowerCase()}`)).replace("webkit","-webkit")}(e)} ${a.duration}ms ${a.timingFunction} ${a.delay}ms`)).join(","),c.transformOrigin=c.webkitTransformOrigin=s.transformOrigin,c}(t);Object.keys(a).forEach((t=>{e.$el.style[t]=a[t]})),n+=1,n{i()}),0)}const ya={props:["animation"],watch:{animation:{deep:!0,handler(){va(this)}}},mounted(){va(this)}},ba=e=>{e.__reserved=!0;const{props:t,mixins:n}=e;return t&&t.animation||(n||(e.mixins=[])).push(ya),_a(e)},_a=e=>(e.__reserved=!0,e.compatConfig={MODE:3},qn(e)),wa={hoverClass:{type:String,default:"none"},hoverStopPropagation:{type:Boolean,default:!1},hoverStartTime:{type:[Number,String],default:50},hoverStayTime:{type:[Number,String],default:400}};function xa(e){const t=zt(!1);let n,o,r=!1;function i(){requestAnimationFrame((()=>{clearTimeout(o),o=setTimeout((()=>{t.value=!1}),parseInt(e.hoverStayTime))}))}function s(o){o._hoverPropagationStopped||e.hoverClass&&"none"!==e.hoverClass&&!e.disabled&&(e.hoverStopPropagation&&(o._hoverPropagationStopped=!0),r=!0,n=setTimeout((()=>{t.value=!0,r||i()}),parseInt(e.hoverStartTime)))}function a(){r=!1,t.value&&i()}function c(){a(),window.removeEventListener("mouseup",c)}return{hovering:t,binding:{onTouchstartPassive:function(e){e.touches.length>1||s(e)},onMousedown:function(e){r||(s(e),window.addEventListener("mouseup",c))},onTouchend:function(){a()},onMouseup:function(){r&&c()},onTouchcancel:function(){r=!1,t.value=!1,clearTimeout(n)}}}}function Ca(e,t){return(n,o,r)=>{e.value&&t(n,function(e,t,n,o){const r=se(n);return{type:o.type||e,timeStamp:t.timeStamp||0,target:r,currentTarget:r,detail:o}}(n,o,e.value,r||{}))}}function Sa(e){const{base:t}=__uniConfig.router;return 0===Q(e).indexOf(t)?Q(e):t+e}function Ta(e){const{base:t,assets:n}=__uniConfig.router;if("./"===t&&(0===e.indexOf("./static/")||n&&0===e.indexOf("./"+n+"/"))&&(e=e.slice(1)),0===e.indexOf("/")){if(0!==e.indexOf("//"))return Sa(e.slice(1));e="https:"+e}if(X.test(e)||K.test(e)||0===e.indexOf("blob:"))return e;const o=hl();return o.length?Sa(Us(o[o.length-1].$page.route,e).slice(1)):e}const ka=navigator.userAgent,Ea=/android/i.test(ka),$a=/iphone|ipad|ipod/i.test(ka),Oa=ka.match(/Windows NT ([\d|\d.\d]*)/i),La=/Macintosh|Mac/i.test(ka),Aa=/Linux|X11/i.test(ka),Pa=La&&navigator.maxTouchPoints>0;function Ma(){return/^Apple/.test(navigator.vendor)&&"number"==typeof window.orientation}function Na(e){return e&&90===Math.abs(window.orientation)}function ja(e,t){return e?Math[t?"max":"min"](screen.width,screen.height):screen.width}function Ra(e){return Math.min(window.innerWidth,document.documentElement.clientWidth,e)||e}const Fa=["GET","OPTIONS","HEAD","POST","PUT","DELETE","TRACE","CONNECT","PATCH"];function Ba(e,t){return e&&-1!==t.indexOf(e)?e:t[0]}function Ia(e){return function(){try{return e.apply(e,arguments)}catch(t){console.error(t)}}}let Va=1;const Wa={};function Ha(e,t,n){if("number"==typeof e){const o=Wa[e];if(o)return o.keepAlive||delete Wa[e],o.callback(t,n)}return t}const za="success",Da="fail",Ua="complete";function qa(e,t={},{beforeAll:n,beforeSuccess:o}={}){A(t)||(t={});const{success:r,fail:i,complete:s}=function(e){const t={};for(const n in e){const o=e[n];S(o)&&(t[n]=Ia(o),delete e[n])}return t}(t),a=S(r),c=S(i),l=S(s),u=Va++;return function(e,t,n,o=!1){Wa[e]={name:t,keepAlive:o,callback:n}}(u,e,(u=>{(u=u||{}).errMsg=function(e,t){return e&&-1!==e.indexOf(":fail")?t+e.substring(e.indexOf(":fail")):t+":ok"}(u.errMsg,e),S(n)&&n(u),u.errMsg===e+":ok"?(S(o)&&o(u,t),a&&r(u)):c&&i(u),l&&s(u)})),u}const Xa="success",Ka="fail",Ya="complete",Ja={},Ga={};function Za(e,t){return function(n){return e(n,t)||n}}function Qa(e,t,n){let o=!1;for(let r=0;re(t),catch(){}}}function ec(e,t={}){return[Xa,Ka,Ya].forEach((n=>{const o=e[n];if(!x(o))return;const r=t[n];t[n]=function(e){Qa(o,e,t).then((e=>S(r)&&r(e)||e))}})),t}function tc(e,t){const n=[];x(Ja.returnValue)&&n.push(...Ja.returnValue);const o=Ga[e];return o&&x(o.returnValue)&&n.push(...o.returnValue),n.forEach((e=>{t=e(t)||t})),t}function nc(e){const t=Object.create(null);Object.keys(Ja).forEach((e=>{"returnValue"!==e&&(t[e]=Ja[e].slice())}));const n=Ga[e];return n&&Object.keys(n).forEach((e=>{"returnValue"!==e&&(t[e]=(t[e]||[]).concat(n[e]))})),t}function oc(e,t,n,o){const r=nc(e);if(r&&Object.keys(r).length){if(x(r.invoke)){return Qa(r.invoke,n).then((n=>t(ec(nc(e),n),...o)))}return t(ec(r,n),...o)}return t(n,...o)}function rc(e,t){return(n={},...o)=>function(e){return!(!A(e)||![za,Da,Ua].find((t=>S(e[t]))))}(n)?tc(e,oc(e,t,n,o)):tc(e,new Promise(((r,i)=>{oc(e,t,y(n,{success:r,fail:i}),o)})))}function ic(e,t,n,o){return Ha(e,y({errMsg:t+":fail"+(n?" "+n:"")},o))}function sc(e,t,n,o){if(o&&o.beforeInvoke){const e=o.beforeInvoke(t);if(T(e))return e}const r=function(e,t){const n=e[0];if(!t||!A(t.formatArgs)&&A(n))return;const o=t.formatArgs,r=Object.keys(o);for(let i=0;i{const r=qa(e,n,o),i=sc(0,[n],0,o);return i?ic(r,e,i):t(n,{resolve:t=>function(e,t,n){return Ha(e,y(n||{},{errMsg:t+":ok"}))}(r,e,t),reject:(t,n)=>ic(r,e,function(e){return!e||T(e)?e:e.stack?(console.error(e.message+"\n"+e.stack),e.message):e}(t),n)})}}function cc(e,t,n,o){return rc(e,ac(e,t,0,o))}function lc(e,t,n,o){return function(e,t,n,o){return(...e)=>{const n=sc(0,e,0,o);if(n)throw new Error(n);return t.apply(null,e)}}(0,t,0,o)}function uc(e,t,n,o){return rc(e,function(e,t,n,o){return ac(e,t,0,o)}(e,t,0,o))}let dc=!1,fc=0,pc=0,hc=960,gc=375,mc=750;function vc(){const{platform:e,pixelRatio:t,windowWidth:n}=function(){const e=Ma(),t=Ra(ja(e,Na(e)));return{platform:$a?"ios":"other",pixelRatio:window.devicePixelRatio,windowWidth:t}}();fc=n,pc=t,dc="ios"===e}function yc(e,t){const n=Number(e);return isNaN(n)?t:n}const bc=lc(0,((e,t)=>{if(0===fc&&(vc(),function(){const e=__uniConfig.globalStyle||{};hc=yc(e.rpxCalcMaxDeviceWidth,960),gc=yc(e.rpxCalcBaseDeviceWidth,375),mc=yc(e.rpxCalcBaseDeviceWidth,750)}()),0===(e=Number(e)))return 0;let n=t||fc;n=e===mc||n<=hc?n:gc;let o=e/750*n;return o<0&&(o=-o),o=Math.floor(o+1e-4),0===o&&(o=1!==pc&&dc?.5:1),e<0?-o:o})),_c=lc(0,(()=>{const e=Al();return e&&e.$vm?e.$vm.$locale:Ji().getLocale()})),wc={onUnhandledRejection:[],onPageNotFound:[],onError:[],onShow:[],onHide:[]};const xc="json",Cc=["text","arraybuffer"],Sc=encodeURIComponent;ArrayBuffer,Boolean;const Tc={formatArgs:{method(e,t){t.method=Ba((e||"").toUpperCase(),Fa)},data(e,t){t.data=e||""},url(e,t){t.method===Fa[0]&&A(t.data)&&Object.keys(t.data).length&&(t.url=function(e,t){let n=e.split("#");const o=n[1]||"";n=n[0].split("?");let r=n[1]||"";e=n[0];const i=r.split("&").filter((e=>e)),s={};i.forEach((e=>{const t=e.split("=");s[t[0]]=t[1]}));for(const a in t)if(w(t,a)){let e=t[a];null==e?e="":A(e)&&(e=JSON.stringify(e)),s[Sc(a)]=Sc(e)}return r=Object.keys(s).map((e=>`${e}=${s[e]}`)).join("&"),e+(r?"?"+r:"")+(o?"#"+o:"")}(e,t.data))},header(e,t){const n=t.header=e||{};t.method!==Fa[0]&&(Object.keys(n).find((e=>"content-type"===e.toLowerCase()))||(n["Content-Type"]="application/json"))},dataType(e,t){t.dataType=(e||xc).toLowerCase()},responseType(e,t){t.responseType=(e||"").toLowerCase(),-1===Cc.indexOf(t.responseType)&&(t.responseType="text")}}};const kc={url:{type:String,required:!0}};Ec(["slide-in-right","slide-in-left","slide-in-top","slide-in-bottom","fade-in","zoom-out","zoom-fade-out","pop-in","none"]),Ec(["slide-out-right","slide-out-left","slide-out-top","slide-out-bottom","fade-out","zoom-in","zoom-fade-in","pop-out","none"]);function Ec(e){return{animationType:{type:String,validator(t){if(t&&-1===e.indexOf(t))return"`"+t+"` is not supported for `animationType` (supported values are: `"+e.join("`|`")+"`)"}},animationDuration:{type:Number}}}const $c=["success","loading","none","error"],Oc=(Boolean,{formatArgs:{title:"",icon(e,t){t.icon=Ba(e,$c)},image(e,t){t.image=e?Ta(e):""},duration:1500,mask:!1}}),Lc=ga(),Ac=ga();const Pc=ba({name:"ResizeSensor",props:{initial:{type:Boolean,default:!1}},emits:["resize"],setup(e,{emit:t}){const n=zt(null),o=function(e){return()=>{const{firstElementChild:t,lastElementChild:n}=e.value;t.scrollLeft=1e5,t.scrollTop=1e5,n.scrollLeft=1e5,n.scrollTop=1e5}}(n),r=function(e,t,n){const o=Ot({width:-1,height:-1});return Pn((()=>y({},o)),(e=>t("resize",e))),()=>{const t=e.value;o.width=t.offsetWidth,o.height=t.offsetHeight,n()}}(n,t,o);return function(e,t,n,o){Jn(o),oo((()=>{t.initial&&cn(n);const r=e.value;r.offsetParent!==r.parentElement&&(r.parentElement.style.position="relative"),"AnimationEvent"in window||o()}))}(n,e,r,o),()=>_r("uni-resize-sensor",{ref:n,onAnimationstartOnce:r},[_r("div",{onScroll:r},[_r("div",null,null)],40,["onScroll"]),_r("div",{onScroll:r},[_r("div",null,null)],40,["onScroll"])],40,["onAnimationstartOnce"])}});const Mc={src:{type:String,default:""},mode:{type:String,default:"scaleToFill"},lazyLoad:{type:[Boolean,String],default:!1},draggable:{type:Boolean,default:!1}},Nc={widthFix:["offsetWidth","height",(e,t)=>e/t],heightFix:["offsetHeight","width",(e,t)=>e*t]},jc={aspectFit:["center center","contain"],aspectFill:["center center","cover"],widthFix:[,"100% 100%"],heightFix:[,"100% 100%"],top:["center top"],bottom:["center bottom"],center:["center center"],left:["left center"],right:["right center"],"top left":["left top"],"top right":["right top"],"bottom left":["left bottom"],"bottom right":["right bottom"]},Rc=ba({name:"Image",props:Mc,setup(e,{emit:t}){const n=zt(null),o=function(e,t){const n=zt(""),o=Vr((()=>{let e="auto",o="";const r=jc[t.mode];return r?(r[0]&&(o=r[0]),r[1]&&(e=r[1])):(o="0% 0%",e="100% 100%"),`background-image:${n.value?'url("'+n.value+'")':"none"};background-position:${o};background-size:${e};`})),r=Ot({rootEl:e,src:Vr((()=>t.src?Ta(t.src):"")),origWidth:0,origHeight:0,origStyle:{width:"",height:""},modeStyle:o,imgSrc:n});return oo((()=>{const t=e.value.style;r.origWidth=Number(t.width)||0,r.origHeight=Number(t.height)||0})),r}(n,e),r=Ca(n,t),{fixSize:i}=function(e,t,n){const o=()=>{const{mode:o}=t,r=Nc[o];if(!r)return;const{origWidth:i,origHeight:s}=n,a=i&&s?i/s:0;if(!a)return;const c=e.value,l=c[r[0]];l&&(c.style[r[1]]=function(e){Fc&&e>10&&(e=2*Math.round(e/2));return e}(r[2](l,a))+"px")},r=()=>{const{style:t}=e.value,{origStyle:{width:o,height:r}}=n;t.width=o,t.height=r};return Pn((()=>t.mode),((e,t)=>{Nc[t]&&r(),Nc[e]&&o()})),{fixSize:o,resetSize:r}}(n,e,o);return function(e,t,n,o,r){let i,s;const a=(t=0,n=0,o="")=>{e.origWidth=t,e.origHeight=n,e.imgSrc=o},c=c=>{if(!c)return l(),void a();i=i||new Image,i.onload=e=>{const{width:u,height:d}=i;a(u,d,c),o(),i.draggable=t.draggable,s&&s.remove(),s=i,n.value.appendChild(i),l(),r("load",e,{width:u,height:d})},i.onerror=t=>{a(),l(),r("error",t,{errMsg:`GET ${e.src} 404 (Not Found)`})},i.src=c},l=()=>{i&&(i.onload=null,i.onerror=null,i=null)};Pn((()=>e.src),(e=>c(e))),Pn((()=>e.imgSrc),(e=>{!e&&s&&(s.remove(),s=null)})),oo((()=>c(e.src))),so((()=>l()))}(o,e,n,i,r),()=>_r("uni-image",{ref:n},[_r("div",{style:o.modeStyle},null,4),Nc[e.mode]?_r(Pc,{onResize:i},null,8,["onResize"]):_r("span",null,null)],512)}});const Fc="Google Inc."===navigator.vendor;const Bc=ie(!0),Ic=[];let Vc,Wc=0;const Hc=e=>Ic.forEach((t=>t.userAction=e));const zc=["navigate","redirect","switchTab","reLaunch","navigateBack"],Dc=["slide-in-right","slide-in-left","slide-in-top","slide-in-bottom","fade-in","zoom-out","zoom-fade-out","pop-in","none"],Uc=["slide-out-right","slide-out-left","slide-out-top","slide-out-bottom","fade-out","zoom-in","zoom-fade-in","pop-out","none"],qc={hoverClass:{type:String,default:"navigator-hover"},url:{type:String,default:""},openType:{type:String,default:"navigate",validator:e=>Boolean(~zc.indexOf(e))},delta:{type:Number,default:1},hoverStartTime:{type:[Number,String],default:50},hoverStayTime:{type:[Number,String],default:600},exists:{type:String,default:""},hoverStopPropagation:{type:Boolean,default:!1},animationType:{type:String,default:"",validator:e=>!e||Dc.concat(Uc).includes(e)},animationDuration:{type:[String,Number],default:300}};y({},qc,{renderLink:{type:Boolean,default:!0}});const Xc=ba({name:"View",props:y({},wa),setup(e,{slots:t}){const{hovering:n,binding:o}=xa(e);return()=>{const r=e.hoverClass;return r&&"none"!==r?_r("uni-view",Er({class:n.value?r:""},o),[t.default&&t.default()],16):_r("uni-view",null,[t.default&&t.default()])}}});function Kc(e,t,n,o){S(t)&&eo(e,t.bind(n),o)}function Yc(e,t,n){var o;const r=e.mpType||n.$mpType;if(r&&"component"!==r&&(Object.keys(e).forEach((o=>{if(function(e,t,n=!0){return!(n&&!S(t))&&(he.indexOf(e)>-1||0===e.indexOf("on"))}(o,e[o],!1)){const r=e[o];x(r)?r.forEach((e=>Kc(o,e,n,t))):Kc(o,r,n,t)}})),"page"===r)){t.__isVisible=!0;try{Vs(n,"onLoad",t.attrs.__pageQuery),delete t.attrs.__pageQuery,"preloadPage"!==(null==(o=n.$page)?void 0:o.openType)&&Vs(n,"onShow")}catch(i){console.error(i.message+"\n"+i.stack)}}}function Jc(e,t,n){Yc(e,t,n)}function Gc(e,t,n){return e[t]=n}function Zc(e,...t){const n=this[e];return n?n(...t):(console.error(`method ${e} not found`),null)}function Qc(e){return function(t,n,o){if(!n)throw t;const r=e._instance;if(!r||!r.proxy)throw t;Vs(r.proxy,"onError",t)}}function el(e,t){return e?[...new Set([].concat(e,t))]:t}function tl(e){const t=e._context.config;var n;t.errorHandler=me(e,Qc),n=t.optionMergeStrategies,he.forEach((e=>{n[e]=el}));const o=t.globalProperties;o.$set=Gc,o.$applyOptions=Jc,o.$callMethod=Zc,function(e){ge.forEach((t=>t(e)))}(e)}const nl=Symbol("upm");function ol(){return On(nl)}function rl(e){const t=function(e){return Ot(JSON.parse(JSON.stringify(Is(__uniRoutes[0].meta,e))))}(e);return $n(nl,t),t}function il(){const e=location.href,t=e.indexOf("?"),n=e.indexOf("#",t>-1?t:0);let o={};t>-1&&(o=ue(e.slice(t+1,n>-1?n:e.length)));const{meta:r}=__uniRoutes[0],i=Q(r.route);return{meta:r,query:o,path:i,matched:[{path:i}]}}function sl(){return history.state&&history.state.__id__||1}const al=window.CSS&&window.CSS.supports;function cl(e){return al&&(al(e)||al.apply(window.CSS,e.split(":")))}const ll=cl("top:env(a)"),ul=cl("top:constant(a)"),dl=(()=>ll?"env":ul?"constant":"")();function fl(e){var t,n;As({"--window-top":(n=0,dl?`calc(${n}px + ${dl}(safe-area-inset-top))`:`${n}px`),"--window-bottom":(t=0,dl?`calc(${t}px + ${dl}(safe-area-inset-bottom))`:`${t}px`)})}const pl=new Map;function hl(){const e=[],t=pl.values();for(const n of t)n.$.__isTabBar?n.$.__isActive&&e.push(n):e.push(n);return e}function gl(e){const t=ol();return function(e,t,n,o,r,i){const{id:s,route:a}=o,c=_e(o.navigationBar,__uniConfig.themeConfig,i).titleColor;return{id:s,path:Q(a),route:a,fullPath:t,options:n,meta:o,openType:e,eventChannel:r,statusBarStyle:"#ffffff"===c?"light":"dark"}}("navigateTo",__uniRoutes[0].path,{},t)}function ml(e){e.$route;const t=gl();!function(e,t){e.route=t.route,e.$vm=e,e.$page=t,e.$mpType="page",t.meta.isTabBar&&(e.$.__isTabBar=!0,e.$.__isActive=!0)}(e,t),pl.set(vl(t.path,t.id),e)}function vl(e,t){return e+"$$"+t}function yl(e,t){!function(e){const t=_l(e),{body:n}=document;wl&&n.removeAttribute(wl),t&&n.setAttribute(t,""),wl=t}(e),fl(),function(e){{const t="nvue-dir-"+__uniConfig.nvue["flex-direction"];e.isNVue?(document.body.setAttribute("nvue",""),document.body.setAttribute(t,"")):(document.body.removeAttribute("nvue"),document.body.removeAttribute(t))}}(t),function(e,t){document.removeEventListener("touchmove",Ws),xl&&document.removeEventListener("scroll",xl);if(t.disableScroll)return document.addEventListener("touchmove",Ws);const{onPageScroll:n,onReachBottom:o}=e,r="transparent"===t.navigationBar.type;if(!n&&!o&&!r)return;const i={},s=e.proxy.$page.id;(n||r)&&(i.onPageScroll=function(e,t,n){return o=>{t&&vu.publishHandler("onPageScroll",{scrollTop:o},e),n&&vu.emit(e+".onPageScroll",{scrollTop:o})}}(s,n,r));o&&(i.onReachBottomDistance=t.onReachBottomDistance||50,i.onReachBottom=()=>vu.publishHandler("onReachBottom",{},s));xl=Ds(i),requestAnimationFrame((()=>document.addEventListener("scroll",xl)))}(e,t)}function bl(e){const t=_l(e);t&&function(e){const t=document.querySelector("uni-page-body");t&&t.setAttribute(e,"")}(t)}function _l(e){return e.type.__scopeId}let wl,xl;const Cl={install(e){tl(e),oa(e),ha(e),e.config.warnHandler||(e.config.warnHandler=Sl)}};function Sl(e,t,n){if(t){if("PageMetaHead"===t.$.type.name)return;const e=t.$.parent;if(e&&"PageMeta"===e.type.name)return}const o=[`[Vue warn]: ${e}`];n.length&&o.push("\n",n),console.warn(...o)}const Tl={class:"uni-async-loading"},kl=_r("i",{class:"uni-loading"},null,-1),El=_a({name:"AsyncLoading",render:()=>(cr(),pr("div",Tl,[kl]))});function $l(){window.location.reload()}const Ol=_a({name:"AsyncError",setup(){Zi();const{t:e}=Ji();return()=>_r("div",{class:"uni-async-error",onClick:$l},[e("uni.async.error")],8,["onClick"])}});let Ll;function Al(){return Ll}function Pl(e){Ll=e,Object.defineProperty(Ll.$.ctx,"$children",{get:()=>hl().map((e=>e.$vm))});const t=Ll.$.appContext.app;t.component(El.name)||t.component(El.name,El),t.component(Ol.name)||t.component(Ol.name,Ol),function(e){e.$vm=e,e.$mpType="app";const t=zt(Ji().getLocale());Object.defineProperty(e,"$locale",{get:()=>t.value,set(e){t.value=e}})}(Ll),function(e,t){const n=e.$options||{};n.globalData=y(n.globalData||{},t),Object.defineProperty(e,"globalData",{get:()=>n.globalData,set(e){n.globalData=e}})}(Ll),fa(),ms()}function Ml(e,{clone:t,init:n,setup:o,before:r}){t&&(e=y({},e)),r&&r(e);const i=e.setup;return e.setup=(e,t)=>{const r=Pr();n(r.proxy);const s=o(r);if(i)return i(s||e,t)},e}function Nl(e,t){return e&&(e.__esModule||"Module"===e[Symbol.toStringTag])?Ml(e.default,t):Ml(e,t)}function jl(e){return Nl(e,{clone:!0,init:ml,setup(e){e.$pageInstance=e;const t=il(),n=ce(t.query);e.attrs.__pageQuery=n,e.proxy.$page.options=n;const o=ol();var r,i,s;return no((()=>{yl(e,o)})),oo((()=>{bl(e);const{onReady:n}=e;n&&H(n),Il(t)})),Zn((()=>{if(!e.__isVisible){yl(e,o),e.__isVisible=!0;const{onShow:n}=e;n&&H(n),cn((()=>{Il(t)}))}}),"ba",r),function(e,t){Zn(e,"bda",t)}((()=>{if(e.__isVisible&&!e.__isUnload){e.__isVisible=!1;const{onHide:t}=e;t&&H(t)}})),i=o.id,vu.subscribe(rs(i,"invokeViewApi"),s?s(is):is),so((()=>{!function(e){vu.unsubscribe(rs(e,"invokeViewApi")),Object.keys(os).forEach((t=>{0===t.indexOf(e+".")&&delete os[t]}))}(o.id)})),n}})}function Rl(){const{windowWidth:e,windowHeight:t,screenWidth:n,screenHeight:o}=Gl(),r=90===Math.abs(Number(window.orientation))?"landscape":"portrait";yu.emit("onResize",{deviceOrientation:r,size:{windowWidth:e,windowHeight:t,screenWidth:n,screenHeight:o}})}function Fl(e){A(e.data)&&"WEB_INVOKE_APPSERVICE"===e.data.type&&yu.emit("onWebInvokeAppService",e.data.data,e.data.pageId)}function Bl(){const{emit:e}=yu;"visible"===document.visibilityState?e("onAppEnterForeground",y({},Ac)):e("onAppEnterBackground")}function Il(e){const{tabBarText:t,tabBarIndex:n,route:o}=e.meta;t&&Vs("onTabItemTap",{index:n,text:t,pagePath:o})}const Vl=navigator.cookieEnabled&&(window.localStorage||window.sessionStorage)||{};let Wl;function Hl(){if(Wl=Wl||Vl.__DC_STAT_UUID,!Wl){Wl=Date.now()+""+Math.floor(1e7*Math.random());try{Vl.__DC_STAT_UUID=Wl}catch(e){}}return Wl}function zl(){if(!0!==__uniConfig.darkmode)return T(__uniConfig.darkmode)?__uniConfig.darkmode:"light";try{return window.matchMedia("(prefers-color-scheme: light)").matches?"light":"dark"}catch(e){return"light"}}function Dl(){let e,t="0",n="",o="phone";const r=navigator.language;if($a){e="iOS";const o=ka.match(/OS\s([\w_]+)\slike/);o&&(t=o[1].replace(/_/g,"."));const r=ka.match(/\(([a-zA-Z]+);/);r&&(n=r[1])}else if(Ea){e="Android";const o=ka.match(/Android[\s/]([\w\.]+)[;\s]/);o&&(t=o[1]);const r=ka.match(/\((.+?)\)/),i=r?r[1].split(";"):ka.split(" "),s=[/\bAndroid\b/i,/\bLinux\b/i,/\bU\b/i,/^\s?[a-z][a-z]$/i,/^\s?[a-z][a-z]-[a-z][a-z]$/i,/\bwv\b/i,/\/[\d\.,]+$/,/^\s?[\d\.,]+$/,/\bBrowser\b/i,/\bMobile\b/i];for(let e=0;e0){n=t.split("Build")[0].trim();break}let o;for(let e=0;e-1&&e.indexOf("MSIE")>-1,n=e.indexOf("Edge")>-1&&!t,o=e.indexOf("Trident")>-1&&e.indexOf("rv:11.0")>-1;if(t){new RegExp("MSIE (\\d+\\.\\d+);").test(e);const t=parseFloat(RegExp.$1);return t>6?t:6}return n?-1:o?11:-1}());if("-1"!==c)a="IE";else{const e=["Version","Firefox","Chrome","Edge{0,1}"],t=["Safari","Firefox","Chrome","Edge"];for(let n=0;n{const e=window.devicePixelRatio,t=Ma(),n=Na(t),o=ja(t,n),r=function(e,t){return e?Math[t?"min":"max"](screen.height,screen.width):screen.height}(t,n),i=Ra(o);let s=window.innerHeight;const a=Es.top,c={left:Es.left,right:i-Es.right,top:Es.top,bottom:s-Es.bottom,width:i-Es.left-Es.right,height:s-Es.top-Es.bottom},{top:l,bottom:u}=function(){const e=document.documentElement.style,t=Ls(),n=Os(e,"--window-bottom"),o=Os(e,"--window-left"),r=Os(e,"--window-right"),i=Os(e,"--top-window-height");return{top:t,bottom:n?n+Es.bottom:0,left:o?o+Es.left:0,right:r?r+Es.right:0,topWindowHeight:i||0}}();return s-=l,s-=u,{windowTop:l,windowBottom:u,windowWidth:i,windowHeight:s,pixelRatio:e,screenWidth:o,screenHeight:r,statusBarHeight:a,safeArea:c,safeAreaInsets:{top:Es.top,right:Es.right,bottom:Es.bottom,left:Es.left},screenTop:r-s}}));let ql,Xl=!0;function Kl(){Xl&&(ql=Dl())}const Yl=lc(0,(()=>{Kl();const{deviceBrand:e,deviceModel:t,brand:n,model:o,platform:r,system:i,deviceOrientation:s,deviceType:a}=ql;return{brand:n,deviceBrand:e,deviceModel:t,devicePixelRatio:window.devicePixelRatio,deviceId:Hl(),deviceOrientation:s,deviceType:a,model:o,platform:r,system:i}})),Jl=lc(0,(()=>{Kl();const{theme:e,language:t,browserName:n,browserVersion:o}=ql;return{appId:__uniConfig.appId,appName:__uniConfig.appName,appVersion:__uniConfig.appVersion,appVersionCode:__uniConfig.appVersionCode,appLanguage:_c?_c():t,enableDebug:!1,hostSDKVersion:void 0,hostPackageName:void 0,hostFontSizeSetting:void 0,hostName:n,hostVersion:o,hostTheme:e,hostLanguage:t,language:t,SDKVersion:"",theme:e,version:""}})),Gl=lc(0,(()=>{Xl=!0,Kl(),Xl=!1;const e=Ul(),t=Yl(),n=Jl();Xl=!0;const{ua:o,browserName:r,browserVersion:i,osname:s,osversion:a}=ql,c=y(e,t,n,{ua:o,browserName:r,browserVersion:i,uniPlatform:"web",uniCompileVersion:__uniConfig.compilerVersion,uniRuntimeVersion:__uniConfig.compilerVersion,fontSizeSetting:void 0,osName:s.toLocaleLowerCase(),osVersion:a,osLanguage:void 0,osTheme:void 0});return delete c.screenTop,delete c.enableDebug,__uniConfig.darkmode||delete c.theme,function(e){let t={};return A(e)&&Object.keys(e).sort().forEach((n=>{const o=n;t[o]=e[o]})),Object.keys(t)?t:e}(c)}));!function(e={userAction:!1}){if(!Vc){["touchstart","touchmove","touchend","mousedown","mouseup"].forEach((e=>{document.addEventListener(e,(function(){!Wc&&Hc(!0),Wc++,setTimeout((()=>{!--Wc&&Hc(!1)}),0)}),Bc)})),Vc=!0}Ic.push(e)}();const Zl={esc:["Esc","Escape"],enter:["Enter"]},Ql=Object.keys(Zl);function eu(e,{onEsc:t,onEnter:n}){const o=zt(e.visible),{key:r,disable:i}=function(){const e=zt(""),t=zt(!1),n=n=>{if(t.value)return;const o=Ql.find((e=>-1!==Zl[e].indexOf(n.key)));o&&(e.value=o),cn((()=>e.value=""))};return oo((()=>{document.addEventListener("keyup",n)})),so((()=>{document.removeEventListener("keyup",n)})),{key:e,disable:t}}();return Pn((()=>e.visible),(e=>o.value=e)),Pn((()=>o.value),(e=>i.value=!e)),Ln((()=>{const{value:e}=r;"esc"===e?t&&t():"enter"===e&&n&&n()})),o}const tu=cc("request",(({url:e,data:t,header:n,method:o,dataType:r,responseType:i,withCredentials:s,timeout:a=__uniConfig.networkTimeout.request},{resolve:c,reject:l})=>{let u=null;const d=function(e){const t=Object.keys(e).find((e=>"content-type"===e.toLowerCase()));if(!t)return;const n=e[t];if(0===n.indexOf("application/json"))return"json";if(0===n.indexOf("application/x-www-form-urlencoded"))return"urlencoded";return"string"}(n);if("GET"!==o)if(T(t)||t instanceof ArrayBuffer)u=t;else if("json"===d)try{u=JSON.stringify(t)}catch(g){u=t.toString()}else if("urlencoded"===d){const e=[];for(const n in t)w(t,n)&&e.push(encodeURIComponent(n)+"="+encodeURIComponent(t[n]));u=e.join("&")}else u=t.toString();const f=new XMLHttpRequest,p=new nu(f);f.open(o,e);for(const m in n)w(n,m)&&f.setRequestHeader(m,n[m]);const h=setTimeout((function(){f.onload=f.onabort=f.onerror=null,p.abort(),l("timeout")}),a);return f.responseType=i,f.onload=function(){clearTimeout(h);const e=f.status;let t="text"===i?f.responseText:f.response;if("text"===i&&"json"===r)try{t=JSON.parse(t)}catch(g){}c({data:t,statusCode:e,header:ou(f.getAllResponseHeaders()),cookies:[]})},f.onabort=function(){clearTimeout(h),l("abort")},f.onerror=function(){clearTimeout(h),l()},f.withCredentials=s,f.send(u),p}),0,Tc);class nu{constructor(e){this._xhr=e}abort(){this._xhr&&(this._xhr.abort(),delete this._xhr)}onHeadersReceived(e){throw new Error("Method not implemented.")}offHeadersReceived(e){throw new Error("Method not implemented.")}}function ou(e){const t={};return e.split("\n").forEach((e=>{const n=e.match(/(\S+\s*):\s*(.*)/);n&&3===n.length&&(t[n[1]]=n[2])})),t}const ru={title:{type:String,default:""},icon:{default:"success",validator:e=>-1!==$c.indexOf(e)},image:{type:String,default:""},duration:{type:Number,default:1500},mask:{type:Boolean,default:!1},visible:{type:Boolean}},iu={light:"#fff",dark:"rgba(255,255,255,0.9)"},su=e=>iu[e],au=qn({name:"Toast",props:ru,setup(e){Qi(),es();const{Icon:t}=function(e){const t=zt(su(zl())),n=({theme:e})=>t.value=su(e);Ln((()=>{var t;e.visible?(t=n,__uniConfig.darkmode&&yu.on("onThemeChange",t)):function(e){yu.off("onThemeChange",e)}(n)}));return{Icon:Vr((()=>{switch(e.icon){case"success":return _r(Ns(Ps,t.value,38),{class:"uni-toast__icon"});case"error":return _r(Ns(Ms,t.value,38),{class:"uni-toast__icon"});case"loading":return _r("i",{class:["uni-toast__icon","uni-loading"]},null,2);default:return null}}))}}(e),n=eu(e,{});return()=>{const{mask:o,duration:r,title:i,image:s}=e;return _r(pi,{name:"uni-fade"},{default:()=>[po(_r("uni-toast",{"data-duration":r},[o?_r("div",{class:"uni-mask",style:"background: transparent;",onTouchmove:$s},null,40,["onTouchmove"]):"",s||t.value?_r("div",{class:"uni-toast"},[s?_r("img",{src:s,class:"uni-toast__icon"},null,10,["src"]):t.value,_r("p",{class:"uni-toast__content"},[i])]):_r("div",{class:"uni-sample-toast"},[_r("p",{class:"uni-simple-toast__text"},[i])])],8,["data-duration"]),[[$i,n.value]])]})}}});let cu,lu,uu="";const du=Ce();function fu(e){cu?y(cu,e):(cu=Ot(y(e,{visible:!1})),cn((()=>{var e,t,n;du.run((()=>{Pn([()=>cu.visible,()=>cu.duration],(([e,t])=>{if(e){if(lu&&clearTimeout(lu),"onShowLoading"===uu)return;lu=setTimeout((()=>{hu("onHideToast")}),t)}else lu&&clearTimeout(lu)}))})),yu.on("onHidePopup",(()=>hu("onHidePopup"))),(e=au,t=cu,n=()=>{},t.onClose=(...e)=>(t.visible=!1,n.apply(null,e)),Pi(qn({setup:()=>()=>(cr(),pr(e,t,null,16))}))).mount(function(e){let t=document.getElementById(e);return t||(t=document.createElement("div"),t.id=e,document.body.append(t)),t}("u-a-t"))}))),setTimeout((()=>{cu.visible=!0}),10)}const pu=uc("showToast",((e,{resolve:t,reject:n})=>{fu(e),uu="onShowToast",t()}),0,Oc);function hu(e){const{t:t}=Ji();if(!uu)return;let n="";if("onHideToast"===e&&"onShowToast"!==uu?n=t("uni.showToast.unpaired"):"onHideLoading"===e&&"onShowLoading"!==uu&&(n=t("uni.showLoading.unpaired")),n)return console.warn(n);uu="",setTimeout((()=>{cu.visible=!1}),10)}function gu(e){function t(){var t;t=e.navigationBar.titleText,document.title=t,yu.emit("onNavigationBarChange",{titleText:t})}Ln(t),Jn(t)}const mu=_a({name:"Layout",setup(e,{emit:t}){const n=zt(null);As({"--status-bar-height":"0px","--top-window-height":"0px","--window-left":"0px","--window-right":"0px","--window-margin":"0px","--tab-bar-height":"0px"});const{layoutState:o,windowState:r}=function(){il();{const e=Ot({marginWidth:0,leftWindowWidth:0,rightWindowWidth:0});return Pn((()=>e.marginWidth),(e=>As({"--window-margin":e+"px"}))),Pn((()=>e.leftWindowWidth+e.marginWidth),(e=>{As({"--window-left":e+"px"})})),Pn((()=>e.rightWindowWidth+e.marginWidth),(e=>{As({"--window-right":e+"px"})})),{layoutState:e,windowState:Vr((()=>({})))}}}();!function(e,t){const n=il();function o(){const o=document.body.clientWidth,r=hl();let i={};if(r.length>0){i=r[r.length-1].$page.meta}else{const e=qs(n.path,!0);e&&(i=e.meta)}const s=parseInt(String((w(i,"maxWidth")?i.maxWidth:__uniConfig.globalStyle.maxWidth)||Number.MAX_SAFE_INTEGER));let a=!1;a=o>s,a&&s?(e.marginWidth=(o-s)/2,cn((()=>{const e=t.value;e&&e.setAttribute("style","max-width:"+s+"px;margin:0 auto;")}))):(e.marginWidth=0,cn((()=>{const e=t.value;e&&e.removeAttribute("style")})))}Pn([()=>n.path],o),oo((()=>{o(),window.addEventListener("resize",o)}))}(o,n);const i=function(e){const t=zt(!1);return Vr((()=>({"uni-app--showtabbar":e&&e.value,"uni-app--maxwidth":t.value})))}(!1);return()=>{const e=_r(__uniRoutes[0].component);return _r("uni-app",{ref:n,class:i.value},[e,!1],2)}}});const vu=y(ss,{publishHandler(e,t,n){yu.subscribeHandler(e,t,n)}}),yu=y(sa,{publishHandler(e,t,n){vu.subscribeHandler(e,t,n)}}),bu=_a({name:"PageBody",setup:(e,t)=>()=>_r(nr,null,[!1,_r("uni-page-wrapper",null,[_r("uni-page-body",null,[yo(t.slots,"default")])],16)])}),_u=_a({name:"Page",setup(e,t){const n=rl(sl());return n.navigationBar,gu(n),()=>_r("uni-page",{"data-page":n.route},[wu(t)])}});function wu(e){return cr(),pr(bu,{key:0},{default:Cn((()=>[yo(e.slots,"page")])),_:3})}const xu={loading:"AsyncLoading",error:"AsyncError",delay:200,timeout:6e4,suspensible:!0};window.uni={},window.wx={},window.rpx2px=bc;const Cu=Object.assign({}),Su=Object.assign;window.__uniConfig=Su({globalStyle:{backgroundColor:"#F8F8F8",navigationBar:{backgroundColor:"#F8F8F8",titleText:"uni-app",type:"default",titleColor:"#000000"},isNVue:!1},uniIdRouter:{},compilerVersion:"3.98"},{appId:"__UNI__F01D55C",appName:"H5_download",appVersion:"1.0.0",appVersionCode:"100",async:xu,debug:!1,networkTimeout:{request:6e4,connectSocket:6e4,uploadFile:6e4,downloadFile:6e4},sdkConfigs:{},qqMapKey:void 0,bMapKey:void 0,googleMapKey:void 0,aMapKey:void 0,aMapSecurityJsCode:void 0,aMapServiceHost:void 0,nvue:{"flex-direction":"column"},locale:"",fallbackLocale:"",locales:Object.keys(Cu).reduce(((e,t)=>{const n=t.replace(/\.\/locale\/(uni-app.)?(.*).json/,"$2");return Su(e[n]||(e[n]={}),Cu[t].default),e}),{}),router:{mode:"hash",base:"./",assets:"assets",routerBase:"/"},darkmode:!1,themeConfig:{}}),window.__uniLayout=window.__uniLayout||{};const Tu={delay:xu.delay,timeout:xu.timeout,suspensible:xu.suspensible};xu.loading&&(Tu.loadingComponent={name:"SystemAsyncLoading",render:()=>_r(go(xu.loading))}),xu.error&&(Tu.errorComponent={name:"SystemAsyncError",render:()=>_r(go(xu.error))});const ku=()=>t((()=>import("./pages-index-index.6b2190c9.js")),["./pages-index-index.6b2190c9.js","./index-bd048ef9.css"],import.meta.url).then((e=>jl(e.default||e))),Eu=function(e){S(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:o,delay:r=200,timeout:i,suspensible:s=!0,onError:a}=e;let c,l=null,u=0;const d=()=>{let e;return l||(e=l=t().catch((e=>{if(e=e instanceof Error?e:new Error(String(e)),a)return new Promise(((t,n)=>{a(e,(()=>t((u++,l=null,d()))),(()=>n(e)),u+1)}));throw e})).then((t=>e!==l&&l?l:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),c=t,t))))};return qn({name:"AsyncComponentWrapper",__asyncLoader:d,get __asyncResolved(){return c},setup(){const e=Ar;if(c)return()=>Kn(c,e);const t=t=>{l=null,Gt(t,e,13,!o)};if(s&&e.suspense||Rr)return d().then((t=>()=>Kn(t,e))).catch((e=>(t(e),()=>o?_r(o,{error:e}):null)));const a=zt(!1),u=zt(),f=zt(!!r);return r&&setTimeout((()=>{f.value=!1}),r),null!=i&&setTimeout((()=>{if(!a.value&&!u.value){const e=new Error(`Async component timed out after ${i}ms.`);t(e),u.value=e}}),i),d().then((()=>{a.value=!0,e.parent&&Yn(e.parent.vnode)&&ln(e.parent.update)})).catch((e=>{t(e),u.value=e})),()=>a.value&&c?Kn(c,e):u.value&&o?_r(o,{error:u.value}):n&&!f.value?_r(n):void 0}})}(Su({loader:ku},Tu));window.__uniRoutes=[{path:"/",alias:"/pages/index/index",component:{setup(){const e=Al(),t=e&&e.$route&&e.$route.query||{};return()=>{return e=Eu,n=t,cr(),pr(_u,null,{page:Cn((()=>[_r(e,Su({},n,{ref:"page"}),null,512)])),_:1});var e,n}}},loader:ku,meta:{isQuit:!0,isEntry:!0,titleNView:!1,bounce:"none",navigationBar:{titleText:"",type:"default",style:"custom"},isNVue:!1}}].map((e=>(e.meta.route=(e.alias||e.path).slice(1),e)));const $u={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")}};Nl($u,{init:Pl,setup(e){const t=il();return no((()=>{var n;n=e,Object.keys(wc).forEach((e=>{wc[e].forEach((t=>{eo(e,t,n)}))}));const{onLaunch:o,onShow:r,onPageNotFound:i,onError:s}=e,a=function({path:e,query:t}){return y(Lc,{path:e,query:t}),y(Ac,Lc),y({},Lc)}({path:t.path.slice(1)||__uniRoutes[0].meta.route,query:ce(t.query)});o&&H(o,a),r&&H(r,a),s&&(e.appContext.config.errorHandler=e=>{H(s,e)})})),oo((()=>{window.addEventListener("resize",function(e,t,{clearTimeout:n,setTimeout:o}){let r;const i=function(){n(r),r=o((()=>e.apply(this,arguments)),t)};return i.cancel=function(){n(r)},i}(Rl,50,{setTimeout:setTimeout,clearTimeout:clearTimeout})),window.addEventListener("message",Fl),document.addEventListener("visibilitychange",Bl),function(){let e=null;try{e=window.matchMedia("(prefers-color-scheme: dark)")}catch(t){}if(e){let t=e=>{yu.emit("onThemeChange",{theme:e.matches?"dark":"light"})};e.addEventListener?e.addEventListener("change",t):e.addListener(t)}}()})),t.query},before(e){e.mpType="app";const{setup:t}=e,n=()=>(cr(),pr(mu));e.setup=(e,o)=>{const r=t&&t(e,o);return S(r)?n:r},e.render=n}}),Pi($u).use(Cl).mount("#app");export{Y as O,Rr as a,fr as b,pr as c,br as d,Cr as e,Xc as f,Pr as g,zt as h,eo as i,_r as j,xr as k,Gl as l,Rc as m,cr as o,tu as r,pu as s,Cn as w}; diff --git a/public/download/assets/index-b1675540.js b/public/download/assets/index-b1675540.js deleted file mode 100644 index 02054f51..00000000 --- a/public/download/assets/index-b1675540.js +++ /dev/null @@ -1,6 +0,0 @@ -!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))t(e);new MutationObserver((e=>{for(const n of e)if("childList"===n.type)for(const e of n.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&t(e)})).observe(document,{childList:!0,subtree:!0})}function t(e){if(e.ep)return;e.ep=!0;const t=function(e){const t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?t.credentials="include":"anonymous"===e.crossOrigin?t.credentials="omit":t.credentials="same-origin",t}(e);fetch(e.href,t)}}();const e={},t=function(t,n,o){if(!n||0===n.length)return t();const r=document.getElementsByTagName("link");return Promise.all(n.map((t=>{if(t=function(e,t){return new URL(e,t).href}(t,o),t in e)return;e[t]=!0;const n=t.endsWith(".css"),i=n?'[rel="stylesheet"]':"";if(!!o)for(let e=r.length-1;e>=0;e--){const o=r[e];if(o.href===t&&(!n||"stylesheet"===o.rel))return}else if(document.querySelector(`link[href="${t}"]${i}`))return;const s=document.createElement("link");return s.rel=n?"stylesheet":"modulepreload",n||(s.as="script",s.crossOrigin=""),s.href=t,document.head.appendChild(s),n?new Promise(((e,n)=>{s.addEventListener("load",e),s.addEventListener("error",(()=>n(new Error(`Unable to preload CSS for ${t}`))))})):void 0}))).then((()=>t()))};function n(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r!!n[e.toLowerCase()]:e=>!!n[e]}function o(e){if(x(e)){const t={};for(let n=0;n{if(e){const n=e.split(i);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function c(e){let t="";if(T(e))t=e;else if(x(e))for(let n=0;n{},h=()=>!1,g=/^on[^a-z]/,m=e=>g.test(e),v=e=>e.startsWith("onUpdate:"),y=Object.assign,b=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},_=Object.prototype.hasOwnProperty,w=(e,t)=>_.call(e,t),x=Array.isArray,C=e=>"[object Map]"===L(e),S=e=>"function"==typeof e,T=e=>"string"==typeof e,k=e=>"symbol"==typeof e,E=e=>null!==e&&"object"==typeof e,$=e=>E(e)&&S(e.then)&&S(e.catch),O=Object.prototype.toString,L=e=>O.call(e),A=e=>"[object Object]"===L(e),P=e=>T(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,N=n(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),M=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},j=/-(\w)/g,R=M((e=>e.replace(j,((e,t)=>t?t.toUpperCase():"")))),F=/\B([A-Z])/g,B=M((e=>e.replace(F,"-$1").toLowerCase())),I=M((e=>e.charAt(0).toUpperCase()+e.slice(1))),V=M((e=>e?`on${I(e)}`:"")),W=(e,t)=>!Object.is(e,t),H=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},D=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let U;const q=["ad","ad-content-page","ad-draw","audio","button","camera","canvas","checkbox","checkbox-group","cover-image","cover-view","editor","form","functional-page-navigator","icon","image","input","label","live-player","live-pusher","map","movable-area","movable-view","navigator","official-account","open-data","picker","picker-view","picker-view-column","progress","radio","radio-group","rich-text","scroll-view","slider","swiper","swiper-item","switch","text","textarea","video","view","web-view"].map((e=>"uni-"+e));const X=/^([a-z-]+:)?\/\//i,Y=/^data:.*,.*/;function K(e){if(!e)return;let t=e.type.name;for(;t&&(n=B(t),-1!==q.indexOf("uni-"+n.replace("v-uni-","")));)t=(e=e.parent).type.name;var n;return e.proxy}function J(e){return 1===e.nodeType}function G(e){return 0===e.indexOf("/")}function Z(e){return G(e)?e:"/"+e}function Q(e,t=null){let n;return(...o)=>(e&&(n=e.apply(t,o),e=null),n)}function ee(e){return R(e.substring(5))}const te=Q((()=>{const e=HTMLElement.prototype,t=e.setAttribute;e.setAttribute=function(e,n){if(e.startsWith("data-")&&this.tagName.startsWith("UNI-")){(this.__uniDataset||(this.__uniDataset={}))[ee(e)]=n}t.call(this,e,n)};const n=e.removeAttribute;e.removeAttribute=function(e){this.__uniDataset&&e.startsWith("data-")&&this.tagName.startsWith("UNI-")&&delete this.__uniDataset[ee(e)],n.call(this,e)}}));function ne(e){return y({},e.dataset,e.__uniDataset)}const oe=new RegExp("\"[^\"]+\"|'[^']+'|url\\([^)]+\\)|(\\d*\\.?\\d+)[r|u]px","g");function re(e){return{passive:e}}function ie(e){const{id:t,offsetTop:n,offsetLeft:o}=e;return{id:t,dataset:ne(e),offsetTop:n,offsetLeft:o}}function se(e){try{return decodeURIComponent(""+e)}catch(t){}return""+e}function ae(e={}){const t={};return Object.keys(e).forEach((n=>{try{t[n]=se(e[n])}catch(o){t[n]=e[n]}})),t}const ce=/\+/g;function le(e){const t={};if(""===e||"?"===e)return t;const n=("?"===e[0]?e.slice(1):e).split("&");for(let o=0;o{this.on(e,t[e])}))}emit(e,...t){const n=this.listener[e];if(!n)return this.emitCache.push({eventName:e,args:t});n.forEach((e=>{e.fn.apply(e.fn,t)})),this.listener[e]=n.filter((e=>"once"!==e.type))}on(e,t){this._addListener(e,"on",t),this._clearCache(e)}once(e,t){this._addListener(e,"once",t),this._clearCache(e)}off(e,t){const n=this.listener[e];if(n)if(t)for(let o=0;o{if(S(e._component.onError))return t(e)})),me=function(){};me.prototype={on:function(e,t,n){var o=this.e||(this.e={});return(o[e]||(o[e]=[])).push({fn:t,ctx:n}),this},once:function(e,t,n){var o=this;function r(){o.off(e,r),t.apply(n,arguments)}return r._=t,this.on(e,r,n)},emit:function(e){for(var t=[].slice.call(arguments,1),n=((this.e||(this.e={}))[e]||[]).slice(),o=0,r=n.length;o{let s=e[i];r[i]=(()=>{if(A(s))return be(s,t,n);if(x(s))return s.map((e=>A(e)?be(e,t,n):e));if(T(s)&&s.startsWith("@")){const t=s.replace("@","");let n=o[t]||s;switch(i){case"titleColor":n="black"===n?"#000000":"#ffffff";break;case"borderStyle":n=(e=n)&&e in ye?ye[e]:e}return n}var e;return s})()})),r):e}let _e;class we{constructor(e=!1){this.detached=e,this._active=!0,this.effects=[],this.cleanups=[],this.parent=_e,!e&&_e&&(this.index=(_e.scopes||(_e.scopes=[])).push(this)-1)}get active(){return this._active}run(e){if(this._active){const t=_e;try{return _e=this,e()}finally{_e=t}}}on(){_e=this}off(){_e=this.parent}stop(e){if(this._active){let t,n;for(t=0,n=this.effects.length;t{const t=new Set(e);return t.w=0,t.n=0,t},Se=e=>(e.w&$e)>0,Te=e=>(e.n&$e)>0,ke=new WeakMap;let Ee=0,$e=1;let Oe;const Le=Symbol(""),Ae=Symbol("");class Pe{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,function(e,t=_e){t&&t.active&&t.effects.push(e)}(this,n)}run(){if(!this.active)return this.fn();let e=Oe,t=Me;for(;e;){if(e===this)return;e=e.parent}try{return this.parent=Oe,Oe=this,Me=!0,$e=1<<++Ee,Ee<=30?(({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o{("length"===n||n>=e)&&a.push(t)}))}else switch(void 0!==n&&a.push(s.get(n)),t){case"add":x(e)?P(n)&&a.push(s.get("length")):(a.push(s.get(Le)),C(e)&&a.push(s.get(Ae)));break;case"delete":x(e)||(a.push(s.get(Le)),C(e)&&a.push(s.get(Ae)));break;case"set":C(e)&&a.push(s.get(Le))}if(1===a.length)a[0]&&We(a[0]);else{const e=[];for(const t of a)t&&e.push(...t);We(Ce(e))}}function We(e,t){const n=x(e)?e:[...e];for(const o of n)o.computed&&He(o);for(const o of n)o.computed||He(o)}function He(e,t){(e!==Oe||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const ze=n("__proto__,__v_isRef,__isVue"),De=new Set(Object.getOwnPropertyNames(Symbol).filter((e=>"arguments"!==e&&"caller"!==e)).map((e=>Symbol[e])).filter(k)),Ue=Ge(),qe=Ge(!1,!0),Xe=Ge(!0),Ye=Ke();function Ke(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=jt(this);for(let t=0,r=this.length;t{e[t]=function(...e){Re();const n=jt(this)[t].apply(this,e);return Fe(),n}})),e}function Je(e){const t=jt(this);return Be(t,0,e),t.hasOwnProperty(e)}function Ge(e=!1,t=!1){return function(n,o,r){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_isShallow"===o)return t;if("__v_raw"===o&&r===(e?t?kt:Tt:t?St:Ct).get(n))return n;const i=x(n);if(!e){if(i&&w(Ye,o))return Reflect.get(Ye,o,r);if("hasOwnProperty"===o)return Je}const s=Reflect.get(n,o,r);return(k(o)?De.has(o):ze(o))?s:(e||Be(n,0,o),t?s:Wt(s)?i&&P(o)?s:s.value:E(s)?e?Ot(s):$t(s):s)}}function Ze(e=!1){return function(t,n,o,r){let i=t[n];if(Pt(i)&&Wt(i)&&!Wt(o))return!1;if(!e&&(Nt(o)||Pt(o)||(i=jt(i),o=jt(o)),!x(t)&&Wt(i)&&!Wt(o)))return i.value=o,!0;const s=x(t)&&P(n)?Number(n)!0,deleteProperty:(e,t)=>!0},tt=y({},Qe,{get:qe,set:Ze(!0)}),nt=e=>e,ot=e=>Reflect.getPrototypeOf(e);function rt(e,t,n=!1,o=!1){const r=jt(e=e.__v_raw),i=jt(t);n||(t!==i&&Be(r,0,t),Be(r,0,i));const{has:s}=ot(r),a=o?nt:n?Bt:Ft;return s.call(r,t)?a(e.get(t)):s.call(r,i)?a(e.get(i)):void(e!==r&&e.get(t))}function it(e,t=!1){const n=this.__v_raw,o=jt(n),r=jt(e);return t||(e!==r&&Be(o,0,e),Be(o,0,r)),e===r?n.has(e):n.has(e)||n.has(r)}function st(e,t=!1){return e=e.__v_raw,!t&&Be(jt(e),0,Le),Reflect.get(e,"size",e)}function at(e){e=jt(e);const t=jt(this);return ot(t).has.call(t,e)||(t.add(e),Ve(t,"add",e,e)),this}function ct(e,t){t=jt(t);const n=jt(this),{has:o,get:r}=ot(n);let i=o.call(n,e);i||(e=jt(e),i=o.call(n,e));const s=r.call(n,e);return n.set(e,t),i?W(t,s)&&Ve(n,"set",e,t):Ve(n,"add",e,t),this}function lt(e){const t=jt(this),{has:n,get:o}=ot(t);let r=n.call(t,e);r||(e=jt(e),r=n.call(t,e)),o&&o.call(t,e);const i=t.delete(e);return r&&Ve(t,"delete",e,void 0),i}function ut(){const e=jt(this),t=0!==e.size,n=e.clear();return t&&Ve(e,"clear",void 0,void 0),n}function dt(e,t){return function(n,o){const r=this,i=r.__v_raw,s=jt(i),a=t?nt:e?Bt:Ft;return!e&&Be(s,0,Le),i.forEach(((e,t)=>n.call(o,a(e),a(t),r)))}}function ft(e,t,n){return function(...o){const r=this.__v_raw,i=jt(r),s=C(i),a="entries"===e||e===Symbol.iterator&&s,c="keys"===e&&s,l=r[e](...o),u=n?nt:t?Bt:Ft;return!t&&Be(i,0,c?Ae:Le),{next(){const{value:e,done:t}=l.next();return t?{value:e,done:t}:{value:a?[u(e[0]),u(e[1])]:u(e),done:t}},[Symbol.iterator](){return this}}}}function pt(e){return function(...t){return"delete"!==e&&this}}function ht(){const e={get(e){return rt(this,e)},get size(){return st(this)},has:it,add:at,set:ct,delete:lt,clear:ut,forEach:dt(!1,!1)},t={get(e){return rt(this,e,!1,!0)},get size(){return st(this)},has:it,add:at,set:ct,delete:lt,clear:ut,forEach:dt(!1,!0)},n={get(e){return rt(this,e,!0)},get size(){return st(this,!0)},has(e){return it.call(this,e,!0)},add:pt("add"),set:pt("set"),delete:pt("delete"),clear:pt("clear"),forEach:dt(!0,!1)},o={get(e){return rt(this,e,!0,!0)},get size(){return st(this,!0)},has(e){return it.call(this,e,!0)},add:pt("add"),set:pt("set"),delete:pt("delete"),clear:pt("clear"),forEach:dt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((r=>{e[r]=ft(r,!1,!1),n[r]=ft(r,!0,!1),t[r]=ft(r,!1,!0),o[r]=ft(r,!0,!0)})),[e,n,t,o]}const[gt,mt,vt,yt]=ht();function bt(e,t){const n=t?e?yt:vt:e?mt:gt;return(t,o,r)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get(w(n,o)&&o in t?n:t,o,r)}const _t={get:bt(!1,!1)},wt={get:bt(!1,!0)},xt={get:bt(!0,!1)},Ct=new WeakMap,St=new WeakMap,Tt=new WeakMap,kt=new WeakMap;function Et(e){return e.__v_skip||!Object.isExtensible(e)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}((e=>L(e).slice(8,-1))(e))}function $t(e){return Pt(e)?e:Lt(e,!1,Qe,_t,Ct)}function Ot(e){return Lt(e,!0,et,xt,Tt)}function Lt(e,t,n,o,r){if(!E(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const s=Et(e);if(0===s)return e;const a=new Proxy(e,2===s?o:n);return r.set(e,a),a}function At(e){return Pt(e)?At(e.__v_raw):!(!e||!e.__v_isReactive)}function Pt(e){return!(!e||!e.__v_isReadonly)}function Nt(e){return!(!e||!e.__v_isShallow)}function Mt(e){return At(e)||Pt(e)}function jt(e){const t=e&&e.__v_raw;return t?jt(t):e}function Rt(e){return z(e,"__v_skip",!0),e}const Ft=e=>E(e)?$t(e):e,Bt=e=>E(e)?Ot(e):e;function It(e){Me&&Oe&&Ie((e=jt(e)).dep||(e.dep=Ce()))}function Vt(e,t){const n=(e=jt(e)).dep;n&&We(n)}function Wt(e){return!(!e||!0!==e.__v_isRef)}function Ht(e){return function(e,t){if(Wt(e))return e;return new zt(e,t)}(e,!1)}class zt{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:jt(e),this._value=t?e:Ft(e)}get value(){return It(this),this._value}set value(e){const t=this.__v_isShallow||Nt(e)||Pt(e);e=t?e:jt(e),W(e,this._rawValue)&&(this._rawValue=e,this._value=t?e:Ft(e),Vt(this))}}const Dt={get:(e,t,n)=>{return Wt(o=Reflect.get(e,t,n))?o.value:o;var o},set:(e,t,n,o)=>{const r=e[t];return Wt(r)&&!Wt(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function Ut(e){return At(e)?e:new Proxy(e,Dt)}var qt;class Xt{constructor(e,t,n,o){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this[qt]=!1,this._dirty=!0,this.effect=new Pe(e,(()=>{this._dirty||(this._dirty=!0,Vt(this))})),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=n}get value(){const e=jt(this);return It(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function Yt(e,t,n,o){let r;try{r=o?e(...o):e()}catch(i){Jt(i,t,n)}return r}function Kt(e,t,n,o){if(S(e)){const r=Yt(e,t,n,o);return r&&$(r)&&r.catch((e=>{Jt(e,t,n)})),r}const r=[];for(let i=0;i>>1;fn(Qt[o])fn(e)-fn(t))),on=0;onnull==e.id?1/0:e.id,pn=(e,t)=>{const n=fn(e)-fn(t);if(0===n){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function hn(e){Zt=!1,Gt=!0,Qt.sort(pn);try{for(en=0;enT(e)?e.trim():e))),t&&(r=n.map(D))}let a,c=o[a=V(t)]||o[a=V(R(t))];!c&&i&&(c=o[a=V(B(t))]),c&&Kt(c,e,6,mn(e,c,r));const l=o[a+"Once"];if(l){if(e.emitted){if(e.emitted[a])return}else e.emitted={};e.emitted[a]=!0,Kt(l,e,6,mn(e,l,r))}}function mn(e,t,n){if(1!==n.length)return n;if(S(t)){if(t.length<2)return n}else if(!t.find((e=>e.length>=2)))return n;const o=n[0];if(o&&w(o,"type")&&w(o,"timeStamp")&&w(o,"target")&&w(o,"currentTarget")&&w(o,"detail")){const t=e.proxy,o=t.$gcd(t,!0);o&&n.push(o)}return n}function vn(e,t,n=!1){const o=t.emitsCache,r=o.get(e);if(void 0!==r)return r;const i=e.emits;let s={},a=!1;if(!S(e)){const o=e=>{const n=vn(e,t,!0);n&&(a=!0,y(s,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return i||a?(x(i)?i.forEach((e=>s[e]=null)):y(s,i),E(e)&&o.set(e,s),s):(E(e)&&o.set(e,null),null)}function yn(e,t){return!(!e||!m(t))&&(t=t.slice(2).replace(/Once$/,""),w(e,t[0].toLowerCase()+t.slice(1))||w(e,B(t))||w(e,t))}let bn=null,_n=null;function wn(e){const t=bn;return bn=e,_n=e&&e.type.__scopeId||null,t}function xn(e,t=bn,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&lr(-1);const r=wn(t);let i;try{i=e(...n)}finally{wn(r),o._d&&lr(1)}return i};return o._n=!0,o._c=!0,o._d=!0,o}function Cn(e){const{type:t,vnode:n,proxy:o,withProxy:r,props:i,propsOptions:[s],slots:a,attrs:c,emit:l,render:u,renderCache:d,data:f,setupState:p,ctx:h,inheritAttrs:g}=e;let m,y;const b=wn(e);try{if(4&n.shapeFlag){const e=r||o;m=Cr(u.call(e,e,d,i,p,f,h)),y=c}else{const e=t;0,m=Cr(e.length>1?e(i,{attrs:c,slots:a,emit:l}):e(i,null)),y=t.props?c:Sn(c)}}catch(w){ir.length=0,Jt(w,e,1),m=br(or)}let _=m;if(y&&!1!==g){const e=Object.keys(y),{shapeFlag:t}=_;e.length&&7&t&&(s&&e.some(v)&&(y=Tn(y,s)),_=_r(_,y))}return n.dirs&&(_=_r(_),_.dirs=_.dirs?_.dirs.concat(n.dirs):n.dirs),n.transition&&(_.transition=n.transition),m=_,wn(b),m}const Sn=e=>{let t;for(const n in e)("class"===n||"style"===n||m(n))&&((t||(t={}))[n]=e[n]);return t},Tn=(e,t)=>{const n={};for(const o in e)v(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function kn(e,t,n){const o=Object.keys(t);if(o.length!==Object.keys(e).length)return!0;for(let r=0;r1)return n&&S(t)?t.call(o.proxy):t}}function On(e,t){return Pn(e,null,t)}const Ln={};function An(e,t,n){return Pn(e,t,n)}function Pn(e,t,{immediate:n,deep:o,flush:r,onTrack:i,onTrigger:s}=d){const a=_e===(null==Lr?void 0:Lr.scope)?Lr:null;let c,l,u=!1,f=!1;if(Wt(e)?(c=()=>e.value,u=Nt(e)):At(e)?(c=()=>e,o=!0):x(e)?(f=!0,u=e.some((e=>At(e)||Nt(e))),c=()=>e.map((e=>Wt(e)?e.value:At(e)?jn(e):S(e)?Yt(e,a,2):void 0))):c=S(e)?t?()=>Yt(e,a,2):()=>{if(!a||!a.isUnmounted)return l&&l(),Kt(e,a,3,[g])}:p,t&&o){const e=c;c=()=>jn(e())}let h,g=e=>{l=_.onStop=()=>{Yt(e,a,4)}};if(jr){if(g=p,t?n&&Kt(t,a,3,[c(),f?[]:void 0,g]):c(),"sync"!==r)return p;{const e=Wr();h=e.__watcherHandles||(e.__watcherHandles=[])}}let m=f?new Array(e.length).fill(Ln):Ln;const v=()=>{if(_.active)if(t){const e=_.run();(o||u||(f?e.some(((e,t)=>W(e,m[t]))):W(e,m)))&&(l&&l(),Kt(t,a,3,[e,m===Ln?void 0:f&&m[0]===Ln?[]:m,g]),m=e)}else _.run()};let y;v.allowRecurse=!!t,"sync"===r?y=v:"post"===r?y=()=>Go(v,a&&a.suspense):(v.pre=!0,a&&(v.id=a.uid),y=()=>cn(v));const _=new Pe(c,y);t?n?v():m=_.run():"post"===r?Go(_.run.bind(_),a&&a.suspense):_.run();const w=()=>{_.stop(),a&&a.scope&&b(a.scope.effects,_)};return h&&h.push(w),w}function Nn(e,t,n){const o=this.proxy,r=T(e)?e.includes(".")?Mn(o,e):()=>o[e]:e.bind(o,o);let i;S(t)?i=t:(i=t.handler,n=t);const s=Lr;Pr(this);const a=Pn(r,i.bind(o),n);return s?Pr(s):Nr(),a}function Mn(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e{jn(e,t)}));else if(A(e))for(const n in e)jn(e[n],t);return e}const Rn=[Function,Array],Fn={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Rn,onEnter:Rn,onAfterEnter:Rn,onEnterCancelled:Rn,onBeforeLeave:Rn,onLeave:Rn,onAfterLeave:Rn,onLeaveCancelled:Rn,onBeforeAppear:Rn,onAppear:Rn,onAfterAppear:Rn,onAppearCancelled:Rn},Bn={name:"BaseTransition",props:Fn,setup(e,{slots:t}){const n=Ar(),o=function(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return no((()=>{e.isMounted=!0})),io((()=>{e.isUnmounting=!0})),e}();let r;return()=>{const i=t.default&&Dn(t.default(),!0);if(!i||!i.length)return;let s=i[0];if(i.length>1)for(const e of i)if(e.type!==or){s=e;break}const a=jt(e),{mode:c}=a;if(o.isLeaving)return Wn(s);const l=Hn(s);if(!l)return Wn(s);const u=Vn(l,a,o,n);zn(l,u);const d=n.subTree,f=d&&Hn(d);let p=!1;const{getTransitionKey:h}=l.type;if(h){const e=h();void 0===r?r=e:e!==r&&(r=e,p=!0)}if(f&&f.type!==or&&(!hr(l,f)||p)){const e=Vn(f,a,o,n);if(zn(f,e),"out-in"===c)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,!1!==n.update.active&&n.update()},Wn(s);"in-out"===c&&l.type!==or&&(e.delayLeave=(e,t,n)=>{In(o,f)[String(f.key)]=f,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=n})}return s}}};function In(e,t){const{leavingVNodes:n}=e;let o=n.get(t.type);return o||(o=Object.create(null),n.set(t.type,o)),o}function Vn(e,t,n,o){const{appear:r,mode:i,persisted:s=!1,onBeforeEnter:a,onEnter:c,onAfterEnter:l,onEnterCancelled:u,onBeforeLeave:d,onLeave:f,onAfterLeave:p,onLeaveCancelled:h,onBeforeAppear:g,onAppear:m,onAfterAppear:v,onAppearCancelled:y}=t,b=String(e.key),_=In(n,e),w=(e,t)=>{e&&Kt(e,o,9,t)},C=(e,t)=>{const n=t[1];w(e,t),x(e)?e.every((e=>e.length<=1))&&n():e.length<=1&&n()},S={mode:i,persisted:s,beforeEnter(t){let o=a;if(!n.isMounted){if(!r)return;o=g||a}t._leaveCb&&t._leaveCb(!0);const i=_[b];i&&hr(e,i)&&i.el._leaveCb&&i.el._leaveCb(),w(o,[t])},enter(e){let t=c,o=l,i=u;if(!n.isMounted){if(!r)return;t=m||c,o=v||l,i=y||u}let s=!1;const a=e._enterCb=t=>{s||(s=!0,w(t?i:o,[e]),S.delayedLeave&&S.delayedLeave(),e._enterCb=void 0)};t?C(t,[e,a]):a()},leave(t,o){const r=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return o();w(d,[t]);let i=!1;const s=t._leaveCb=n=>{i||(i=!0,o(),w(n?h:p,[t]),t._leaveCb=void 0,_[r]===e&&delete _[r])};_[r]=e,f?C(f,[t,s]):s()},clone:e=>Vn(e,t,n,o)};return S}function Wn(e){if(Yn(e))return(e=_r(e)).children=null,e}function Hn(e){return Yn(e)?e.children?e.children[0]:void 0:e}function zn(e,t){6&e.shapeFlag&&e.component?zn(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Dn(e,t=!1,n){let o=[],r=0;for(let i=0;i1)for(let i=0;i!!e.type.__asyncLoader;function Xn(e,t){const{ref:n,props:o,children:r,ce:i}=t.vnode,s=br(e,o,r);return s.ref=n,s.ce=i,delete t.vnode.ce,s}const Yn=e=>e.type.__isKeepAlive;function Kn(e,t){Gn(e,"a",t)}function Jn(e,t){Gn(e,"da",t)}function Gn(e,t,n=Lr){const o=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(o.__called=!1,Qn(t,o,n),n){let e=n.parent;for(;e&&e.parent;)Yn(e.parent.vnode)&&Zn(o,t,n,e),e=e.parent}}function Zn(e,t,n,o){const r=Qn(t,e,o,!0);so((()=>{b(o[t],r)}),n)}function Qn(e,t,n=Lr,o=!1){if(n){if(r=e,de.indexOf(r)>-1&&n.$pageInstance){if(n.type.__reserved)return;if(n!==n.$pageInstance&&(n=n.$pageInstance,function(e){return fe.indexOf(e)>-1}(e))){const o=n.proxy;Kt(t.bind(o),n,e,"onLoad"===e?[o.$page.options]:[])}}const i=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;Re(),Pr(n);const r=Kt(t,n,e,o);return Nr(),Fe(),r});return o?i.unshift(s):i.push(s),s}var r}const eo=e=>(t,n=Lr)=>(!jr||"sp"===e)&&Qn(e,((...e)=>t(...e)),n),to=eo("bm"),no=eo("m"),oo=eo("bu"),ro=eo("u"),io=eo("bum"),so=eo("um"),ao=eo("sp"),co=eo("rtg"),lo=eo("rtc");function uo(e,t=Lr){Qn("ec",e,t)}function fo(e,t){const n=bn;if(null===n)return e;const o=Br(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let i=0;i!pr(e)||e.type!==or&&!(e.type===tr&&!yo(e.children))))?e:null}const bo=e=>e?Mr(e)?Br(e)||e.proxy:bo(e.parent):null,_o=y(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>bo(e.parent),$root:e=>bo(e.root),$emit:e=>e.emit,$options:e=>Eo(e),$forceUpdate:e=>e.f||(e.f=()=>cn(e.update)),$nextTick:e=>e.n||(e.n=an.bind(e.proxy)),$watch:e=>Nn.bind(e)}),wo=(e,t)=>e!==d&&!e.__isScriptSetup&&w(e,t),xo={get({_:e},t){const{ctx:n,setupState:o,data:r,props:i,accessCache:s,type:a,appContext:c}=e;let l;if("$"!==t[0]){const a=s[t];if(void 0!==a)switch(a){case 1:return o[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(wo(o,t))return s[t]=1,o[t];if(r!==d&&w(r,t))return s[t]=2,r[t];if((l=e.propsOptions[0])&&w(l,t))return s[t]=3,i[t];if(n!==d&&w(n,t))return s[t]=4,n[t];Co&&(s[t]=0)}}const u=_o[t];let f,p;return u?("$attrs"===t&&Be(e,0,t),u(e)):(f=a.__cssModules)&&(f=f[t])?f:n!==d&&w(n,t)?(s[t]=4,n[t]):(p=c.config.globalProperties,w(p,t)?p[t]:void 0)},set({_:e},t,n){const{data:o,setupState:r,ctx:i}=e;return wo(r,t)?(r[t]=n,!0):o!==d&&w(o,t)?(o[t]=n,!0):!w(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(i[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:r,propsOptions:i}},s){let a;return!!n[s]||e!==d&&w(e,s)||wo(t,s)||(a=i[0])&&w(a,s)||w(o,s)||w(_o,s)||w(r.config.globalProperties,s)},defineProperty(e,t,n){return null!=n.get?e._.accessCache[t]=0:w(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let Co=!0;function So(e){const t=Eo(e),n=e.proxy,o=e.ctx;Co=!1,t.beforeCreate&&To(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:s,watch:a,provide:c,inject:l,created:u,beforeMount:d,mounted:f,beforeUpdate:h,updated:g,activated:m,deactivated:v,beforeDestroy:y,beforeUnmount:b,destroyed:_,unmounted:w,render:C,renderTracked:T,renderTriggered:k,errorCaptured:$,serverPrefetch:O,expose:L,inheritAttrs:A,components:P,directives:N,filters:M}=t;if(l&&function(e,t,n=p,o=!1){x(e)&&(e=Ao(e));for(const r in e){const n=e[r];let i;i=E(n)?"default"in n?$n(n.from||r,n.default,!0):$n(n.from||r):$n(n),Wt(i)&&o?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>i.value,set:e=>i.value=e}):t[r]=i}}(l,o,null,e.appContext.config.unwrapInjectedRef),s)for(const p in s){const e=s[p];S(e)&&(o[p]=e.bind(n))}if(r){const t=r.call(n,n);E(t)&&(e.data=$t(t))}if(Co=!0,i)for(const x in i){const e=i[x],t=S(e)?e.bind(n,n):S(e.get)?e.get.bind(n,n):p,r=!S(e)&&S(e.set)?e.set.bind(n):p,s=Ir({get:t,set:r});Object.defineProperty(o,x,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e})}if(a)for(const p in a)ko(a[p],o,n,p);if(c){const e=S(c)?c.call(n):c;Reflect.ownKeys(e).forEach((t=>{En(t,e[t])}))}function j(e,t){x(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(u&&To(u,e,"c"),j(to,d),j(no,f),j(oo,h),j(ro,g),j(Kn,m),j(Jn,v),j(uo,$),j(lo,T),j(co,k),j(io,b),j(so,w),j(ao,O),x(L))if(L.length){const t=e.exposed||(e.exposed={});L.forEach((e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})}))}else e.exposed||(e.exposed={});C&&e.render===p&&(e.render=C),null!=A&&(e.inheritAttrs=A),P&&(e.components=P),N&&(e.directives=N);const R=e.appContext.config.globalProperties.$applyOptions;R&&R(t,e,n)}function To(e,t,n){Kt(x(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function ko(e,t,n,o){const r=o.includes(".")?Mn(n,o):()=>n[o];if(T(e)){const n=t[e];S(n)&&An(r,n)}else if(S(e))An(r,e.bind(n));else if(E(e))if(x(e))e.forEach((e=>ko(e,t,n,o)));else{const o=S(e.handler)?e.handler.bind(n):t[e.handler];S(o)&&An(r,o,e)}}function Eo(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:s}}=e.appContext,a=i.get(t);let c;return a?c=a:r.length||n||o?(c={},r.length&&r.forEach((e=>$o(c,e,s,!0))),$o(c,t,s)):c=t,E(t)&&i.set(t,c),c}function $o(e,t,n,o=!1){const{mixins:r,extends:i}=t;i&&$o(e,i,n,!0),r&&r.forEach((t=>$o(e,t,n,!0)));for(const s in t)if(o&&"expose"===s);else{const o=Oo[s]||n&&n[s];e[s]=o?o(e[s],t[s]):t[s]}return e}const Oo={data:Lo,props:No,emits:No,methods:No,computed:No,beforeCreate:Po,created:Po,beforeMount:Po,mounted:Po,beforeUpdate:Po,updated:Po,beforeDestroy:Po,beforeUnmount:Po,destroyed:Po,unmounted:Po,activated:Po,deactivated:Po,errorCaptured:Po,serverPrefetch:Po,components:No,directives:No,watch:function(e,t){if(!e)return t;if(!t)return e;const n=y(Object.create(null),e);for(const o in t)n[o]=Po(e[o],t[o]);return n},provide:Lo,inject:function(e,t){return No(Ao(e),Ao(t))}};function Lo(e,t){return t?e?function(){return y(S(e)?e.call(this,this):e,S(t)?t.call(this,this):t)}:t:e}function Ao(e){if(x(e)){const t={};for(let n=0;n{c=!0;const[n,o]=Fo(e,t,!0);y(s,n),o&&a.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!i&&!c)return E(e)&&o.set(e,f),f;if(x(i))for(let u=0;u-1,n[1]=o<0||t-1||w(n,"default"))&&a.push(e)}}}const l=[s,a];return E(e)&&o.set(e,l),l}function Bo(e){return"$"!==e[0]}function Io(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:null===e?"null":""}function Vo(e,t){return Io(e)===Io(t)}function Wo(e,t){return x(t)?t.findIndex((t=>Vo(t,e))):S(t)&&Vo(t,e)?0:-1}const Ho=e=>"_"===e[0]||"$stable"===e,zo=e=>x(e)?e.map(Cr):[Cr(e)],Do=(e,t,n)=>{if(t._n)return t;const o=xn(((...e)=>zo(t(...e))),n);return o._c=!1,o},Uo=(e,t,n)=>{const o=e._ctx;for(const r in e){if(Ho(r))continue;const n=e[r];if(S(n))t[r]=Do(0,n,o);else if(null!=n){const e=zo(n);t[r]=()=>e}}},qo=(e,t)=>{const n=zo(t);e.slots.default=()=>n};function Xo(){return{app:null,config:{isNativeTag:h,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Yo=0;function Ko(e,t){return function(n,o=null){S(n)||(n=Object.assign({},n)),null==o||E(o)||(o=null);const r=Xo(),i=new Set;let s=!1;const a=r.app={_uid:Yo++,_component:n,_props:o,_container:null,_context:r,_instance:null,version:Hr,get config(){return r.config},set config(e){},use:(e,...t)=>(i.has(e)||(e&&S(e.install)?(i.add(e),e.install(a,...t)):S(e)&&(i.add(e),e(a,...t))),a),mixin:e=>(r.mixins.includes(e)||r.mixins.push(e),a),component:(e,t)=>t?(r.components[e]=t,a):r.components[e],directive:(e,t)=>t?(r.directives[e]=t,a):r.directives[e],mount(i,c,l){if(!s){const u=br(n,o);return u.appContext=r,c&&t?t(u,i):e(u,i,l),s=!0,a._container=i,i.__vue_app__=a,a._instance=u.component,Br(u.component)||u.component.proxy}},unmount(){s&&(e(null,a._container),delete a._container.__vue_app__)},provide:(e,t)=>(r.provides[e]=t,a)};return a}}function Jo(e,t,n,o,r=!1){if(x(e))return void e.forEach(((e,i)=>Jo(e,t&&(x(t)?t[i]:t),n,o,r)));if(qn(o)&&!r)return;const i=4&o.shapeFlag?Br(o.component)||o.component.proxy:o.el,s=r?null:i,{i:a,r:c}=e,l=t&&t.r,u=a.refs===d?a.refs={}:a.refs,f=a.setupState;if(null!=l&&l!==c&&(T(l)?(u[l]=null,w(f,l)&&(f[l]=null)):Wt(l)&&(l.value=null)),S(c))Yt(c,a,12,[s,u]);else{const t=T(c),o=Wt(c);if(t||o){const a=()=>{if(e.f){const n=t?w(f,c)?f[c]:u[c]:c.value;r?x(n)&&b(n,i):x(n)?n.includes(i)||n.push(i):t?(u[c]=[i],w(f,c)&&(f[c]=u[c])):(c.value=[i],e.k&&(u[e.k]=c.value))}else t?(u[c]=s,w(f,c)&&(f[c]=s)):o&&(c.value=s,e.k&&(u[e.k]=s))};s?(a.id=-1,Go(a,n)):a()}}}const Go=function(e,t){var n;t&&t.pendingBranch?x(e)?t.effects.push(...e):t.effects.push(e):(x(n=e)?tn.push(...n):nn&&nn.includes(n,n.allowRecurse?on+1:on)||tn.push(n),ln())};function Zo(e){return function(e,t){(U||(U="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{})).__VUE__=!0;const{insert:n,remove:o,patchProp:r,forcePatchProp:i,createElement:s,createText:a,createComment:c,setText:l,setElementText:u,parentNode:h,nextSibling:g,setScopeId:m=p,insertStaticContent:v}=e,b=(e,t,n,o=null,r=null,i=null,s=!1,a=null,c=!!t.dynamicChildren)=>{if(e===t)return;e&&!hr(e,t)&&(o=te(e),J(e,r,i,!0),e=null),-2===t.patchFlag&&(c=!1,t.dynamicChildren=null);const{type:l,ref:u,shapeFlag:d}=t;switch(l){case nr:_(e,t,n,o);break;case or:x(e,t,n,o);break;case rr:null==e&&C(t,n,o,s);break;case tr:j(e,t,n,o,r,i,s,a,c);break;default:1&d?k(e,t,n,o,r,i,s,a,c):6&d?F(e,t,n,o,r,i,s,a,c):(64&d||128&d)&&l.process(e,t,n,o,r,i,s,a,c,oe)}null!=u&&r&&Jo(u,e&&e.ref,i,t||e,!t)},_=(e,t,o,r)=>{if(null==e)n(t.el=a(t.children),o,r);else{const n=t.el=e.el;t.children!==e.children&&l(n,t.children)}},x=(e,t,o,r)=>{null==e?n(t.el=c(t.children||""),o,r):t.el=e.el},C=(e,t,n,o)=>{[e.el,e.anchor]=v(e.children,t,n,o,e.el,e.anchor)},S=({el:e,anchor:t},o,r)=>{let i;for(;e&&e!==t;)i=g(e),n(e,o,r),e=i;n(t,o,r)},T=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=g(e),o(e),e=n;o(t)},k=(e,t,n,o,r,i,s,a,c)=>{s=s||"svg"===t.type,null==e?E(t,n,o,r,i,s,a,c):A(e,t,r,i,s,a,c)},E=(e,t,o,i,a,c,l,d)=>{let f,p;const{type:h,props:g,shapeFlag:m,transition:v,dirs:y}=e;if(f=e.el=s(e.type,c,g&&g.is,g),8&m?u(f,e.children):16&m&&L(e.children,f,null,i,a,c&&"foreignObject"!==h,l,d),y&&po(e,null,i,"created"),O(f,e,e.scopeId,l,i),g){for(const t in g)"value"===t||N(t)||r(f,t,null,g[t],c,e.children,i,a,ee);"value"in g&&r(f,"value",null,g.value),(p=g.onVnodeBeforeMount)&&Er(p,i,e)}Object.defineProperty(f,"__vueParentComponent",{value:i,enumerable:!1}),y&&po(e,null,i,"beforeMount");const b=(!a||a&&!a.pendingBranch)&&v&&!v.persisted;b&&v.beforeEnter(f),n(f,t,o),((p=g&&g.onVnodeMounted)||b||y)&&Go((()=>{p&&Er(p,i,e),b&&v.enter(f),y&&po(e,null,i,"mounted")}),a)},O=(e,t,n,o,r)=>{if(n&&m(e,n),o)for(let i=0;i{for(let l=c;l{const l=t.el=e.el;let{patchFlag:f,dynamicChildren:p,dirs:h}=t;f|=16&e.patchFlag;const g=e.props||d,m=t.props||d;let v;n&&Qo(n,!1),(v=m.onVnodeBeforeUpdate)&&Er(v,n,t,e),h&&po(t,e,n,"beforeUpdate"),n&&Qo(n,!0);const y=s&&"foreignObject"!==t.type;if(p?P(e.dynamicChildren,p,l,n,o,y,a):c||q(e,t,l,null,n,o,y,a,!1),f>0){if(16&f)M(l,t,g,m,n,o,s);else if(2&f&&g.class!==m.class&&r(l,"class",null,m.class,s),4&f&&r(l,"style",g.style,m.style,s),8&f){const a=t.dynamicProps;for(let t=0;t{v&&Er(v,n,t,e),h&&po(t,e,n,"updated")}),o)},P=(e,t,n,o,r,i,s)=>{for(let a=0;a{if(n!==o){if(n!==d)for(const i in n)N(i)||i in o||r(e,i,n[i],null,c,t.children,s,a,ee);for(const l in o){if(N(l))continue;const u=o[l],d=n[l];(u!==d&&"value"!==l||i&&i(e,l))&&r(e,l,d,u,c,t.children,s,a,ee)}"value"in o&&r(e,"value",n.value,o.value)}},j=(e,t,o,r,i,s,c,l,u)=>{const d=t.el=e?e.el:a(""),f=t.anchor=e?e.anchor:a("");let{patchFlag:p,dynamicChildren:h,slotScopeIds:g}=t;g&&(l=l?l.concat(g):g),null==e?(n(d,o,r),n(f,o,r),L(t.children,o,f,i,s,c,l,u)):p>0&&64&p&&h&&e.dynamicChildren?(P(e.dynamicChildren,h,o,i,s,c,l),(null!=t.key||i&&t===i.subTree)&&er(e,t,!0)):q(e,t,o,f,i,s,c,l,u)},F=(e,t,n,o,r,i,s,a,c)=>{t.slotScopeIds=a,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,s,c):I(t,n,o,r,i,s,c):V(e,t,c)},I=(e,t,n,o,r,i,s)=>{const a=e.component=function(e,t,n){const o=e.type,r=(t?t.appContext:e.appContext)||$r,i={uid:Or++,vnode:e,type:o,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new we(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Fo(o,r),emitsOptions:vn(o,r),emit:null,emitted:null,propsDefaults:d,inheritAttrs:o.inheritAttrs,ctx:d,data:d,props:d,attrs:d,slots:d,refs:d,setupState:d,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,bda:null,da:null,ba:null,a:null,rtg:null,rtc:null,ec:null,sp:null};i.ctx={_:i},i.root=t?t.root:i,i.emit=gn.bind(null,i),i.$pageInstance=t&&t.$pageInstance,e.ce&&e.ce(i);return i}(e,o,r);if(Yn(e)&&(a.ctx.renderer=oe),function(e,t=!1){jr=t;const{props:n,children:o}=e.vnode,r=Mr(e);Mo(e,n,r,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=jt(t),z(t,"_",n)):Uo(t,e.slots={})}else e.slots={},t&&qo(e,t);z(e.slots,gr,1)})(e,o);const i=r?function(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Rt(new Proxy(e.ctx,xo));const{setup:o}=n;if(o){const n=e.setupContext=o.length>1?function(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(Be(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}(e):null;Pr(e),Re();const r=Yt(o,e,0,[e.props,n]);if(Fe(),Nr(),$(r)){if(r.then(Nr,Nr),t)return r.then((n=>{Rr(e,n,t)})).catch((t=>{Jt(t,e,0)}));e.asyncDep=r}else Rr(e,r,t)}else Fr(e,t)}(e,t):void 0;jr=!1}(a),a.asyncDep){if(r&&r.registerDep(a,W),!e.el){const e=a.subTree=br(or);x(null,e,t,n)}}else W(a,e,t,n,r,i,s)},V=(e,t,n)=>{const o=t.component=e.component;if(function(e,t,n){const{props:o,children:r,component:i}=e,{props:s,children:a,patchFlag:c}=t,l=i.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&c>=0))return!(!r&&!a||a&&a.$stable)||o!==s&&(o?!s||kn(o,s,l):!!s);if(1024&c)return!0;if(16&c)return o?kn(o,s,l):!!s;if(8&c){const e=t.dynamicProps;for(let t=0;ten&&Qt.splice(t,1)}(o.update),o.update()}else t.el=e.el,o.vnode=t},W=(e,t,n,o,r,i,s)=>{const a=()=>{if(e.isMounted){let t,{next:n,bu:o,u:a,parent:c,vnode:l}=e,u=n;Qo(e,!1),n?(n.el=l.el,D(e,n,s)):n=l,o&&H(o),(t=n.props&&n.props.onVnodeBeforeUpdate)&&Er(t,c,n,l),Qo(e,!0);const d=Cn(e),f=e.subTree;e.subTree=d,b(f,d,h(f.el),te(f),e,r,i),n.el=d.el,null===u&&function({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}(e,d.el),a&&Go(a,r),(t=n.props&&n.props.onVnodeUpdated)&&Go((()=>Er(t,c,n,l)),r)}else{let s;const{el:a,props:c}=t,{bm:l,m:u,parent:d}=e,f=qn(t);if(Qo(e,!1),l&&H(l),!f&&(s=c&&c.onVnodeBeforeMount)&&Er(s,d,t),Qo(e,!0),a&&ie){const n=()=>{e.subTree=Cn(e),ie(a,e.subTree,e,r,null)};f?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{const s=e.subTree=Cn(e);b(null,s,n,o,e,r,i),t.el=s.el}if(u&&Go(u,r),!f&&(s=c&&c.onVnodeMounted)){const e=t;Go((()=>Er(s,d,e)),r)}const{ba:p,a:h}=e;(256&t.shapeFlag||d&&qn(d.vnode)&&256&d.vnode.shapeFlag)&&(p&&function(e){for(let t=0;t{p.forEach((e=>e.__called=!1))}),r)),e.isMounted=!0,t=n=o=null}},c=e.effect=new Pe(a,(()=>cn(l)),e.scope),l=e.update=()=>c.run();l.id=e.uid,Qo(e,!0),l()},D=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,o){const{props:r,attrs:i,vnode:{patchFlag:s}}=e,a=jt(r),[c]=e.propsOptions;let l=!1;if(!(o||s>0)||16&s){let o;jo(e,t,r,i)&&(l=!0);for(const i in a)t&&(w(t,i)||(o=B(i))!==i&&w(t,o))||(c?!n||void 0===n[i]&&void 0===n[o]||(r[i]=Ro(c,a,i,void 0,e,!0)):delete r[i]);if(i!==a)for(const e in i)t&&w(t,e)||(delete i[e],l=!0)}else if(8&s){const n=e.vnode.dynamicProps;for(let o=0;o{const{vnode:o,slots:r}=e;let i=!0,s=d;if(32&o.shapeFlag){const e=t._;e?n&&1===e?i=!1:(y(r,t),n||1!==e||delete r._):(i=!t.$stable,Uo(t,r)),s=t}else t&&(qo(e,t),s={default:1});if(i)for(const a in r)Ho(a)||a in s||delete r[a]})(e,t.children,n),Re(),un(),Fe()},q=(e,t,n,o,r,i,s,a,c=!1)=>{const l=e&&e.children,d=e?e.shapeFlag:0,f=t.children,{patchFlag:p,shapeFlag:h}=t;if(p>0){if(128&p)return void Y(l,f,n,o,r,i,s,a,c);if(256&p)return void X(l,f,n,o,r,i,s,a,c)}8&h?(16&d&&ee(l,r,i),f!==l&&u(n,f)):16&d?16&h?Y(l,f,n,o,r,i,s,a,c):ee(l,r,i,!0):(8&d&&u(n,""),16&h&&L(f,n,o,r,i,s,a,c))},X=(e,t,n,o,r,i,s,a,c)=>{t=t||f;const l=(e=e||f).length,u=t.length,d=Math.min(l,u);let p;for(p=0;pu?ee(e,r,i,!0,!1,d):L(t,n,o,r,i,s,a,c,d)},Y=(e,t,n,o,r,i,s,a,c)=>{let l=0;const u=t.length;let d=e.length-1,p=u-1;for(;l<=d&&l<=p;){const o=e[l],u=t[l]=c?Sr(t[l]):Cr(t[l]);if(!hr(o,u))break;b(o,u,n,null,r,i,s,a,c),l++}for(;l<=d&&l<=p;){const o=e[d],l=t[p]=c?Sr(t[p]):Cr(t[p]);if(!hr(o,l))break;b(o,l,n,null,r,i,s,a,c),d--,p--}if(l>d){if(l<=p){const e=p+1,d=ep)for(;l<=d;)J(e[l],r,i,!0),l++;else{const h=l,g=l,m=new Map;for(l=g;l<=p;l++){const e=t[l]=c?Sr(t[l]):Cr(t[l]);null!=e.key&&m.set(e.key,l)}let v,y=0;const _=p-g+1;let w=!1,x=0;const C=new Array(_);for(l=0;l<_;l++)C[l]=0;for(l=h;l<=d;l++){const o=e[l];if(y>=_){J(o,r,i,!0);continue}let u;if(null!=o.key)u=m.get(o.key);else for(v=g;v<=p;v++)if(0===C[v-g]&&hr(o,t[v])){u=v;break}void 0===u?J(o,r,i,!0):(C[u-g]=l+1,u>=x?x=u:w=!0,b(o,t[u],n,null,r,i,s,a,c),y++)}const S=w?function(e){const t=e.slice(),n=[0];let o,r,i,s,a;const c=e.length;for(o=0;o>1,e[n[a]]0&&(t[o]=n[i-1]),n[i]=o)}}i=n.length,s=n[i-1];for(;i-- >0;)n[i]=s,s=t[s];return n}(C):f;for(v=S.length-1,l=_-1;l>=0;l--){const e=g+l,d=t[e],f=e+1{const{el:s,type:a,transition:c,children:l,shapeFlag:u}=e;if(6&u)return void K(e.component.subTree,t,o,r);if(128&u)return void e.suspense.move(t,o,r);if(64&u)return void a.move(e,t,o,oe);if(a===tr){n(s,t,o);for(let e=0;ec.enter(s)),i);else{const{leave:e,delayLeave:r,afterLeave:i}=c,a=()=>n(s,t,o),l=()=>{e(s,(()=>{a(),i&&i()}))};r?r(s,a,l):l()}else n(s,t,o)},J=(e,t,n,o=!1,r=!1)=>{const{type:i,props:s,ref:a,children:c,dynamicChildren:l,shapeFlag:u,patchFlag:d,dirs:f}=e;if(null!=a&&Jo(a,null,n,e,!0),256&u)return void t.ctx.deactivate(e);const p=1&u&&f,h=!qn(e);let g;if(h&&(g=s&&s.onVnodeBeforeUnmount)&&Er(g,t,e),6&u)Q(e.component,n,o);else{if(128&u)return void e.suspense.unmount(n,o);p&&po(e,null,t,"beforeUnmount"),64&u?e.type.remove(e,t,n,r,oe,o):l&&(i!==tr||d>0&&64&d)?ee(l,t,n,!1,!0):(i===tr&&384&d||!r&&16&u)&&ee(c,t,n),o&&G(e)}(h&&(g=s&&s.onVnodeUnmounted)||p)&&Go((()=>{g&&Er(g,t,e),p&&po(e,null,t,"unmounted")}),n)},G=e=>{const{type:t,el:n,anchor:r,transition:i}=e;if(t===tr)return void Z(n,r);if(t===rr)return void T(e);const s=()=>{o(n),i&&!i.persisted&&i.afterLeave&&i.afterLeave()};if(1&e.shapeFlag&&i&&!i.persisted){const{leave:t,delayLeave:o}=i,r=()=>t(n,s);o?o(e.el,s,r):r()}else s()},Z=(e,t)=>{let n;for(;e!==t;)n=g(e),o(e),e=n;o(t)},Q=(e,t,n)=>{const{bum:o,scope:r,update:i,subTree:s,um:a}=e;o&&H(o),r.stop(),i&&(i.active=!1,J(s,e,t,n)),a&&Go(a,t),Go((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},ee=(e,t,n,o=!1,r=!1,i=0)=>{for(let s=i;s6&e.shapeFlag?te(e.component.subTree):128&e.shapeFlag?e.suspense.next():g(e.anchor||e.el),ne=(e,t,n)=>{null==e?t._vnode&&J(t._vnode,null,null,!0):b(t._vnode||null,e,t,null,null,null,n),un(),dn(),t._vnode=e},oe={p:b,um:J,m:K,r:G,mt:I,mc:L,pc:q,pbc:P,n:te,o:e};let re,ie;t&&([re,ie]=t(oe));return{render:ne,hydrate:re,createApp:Ko(ne,re)}}(e)}function Qo({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function er(e,t,n=!1){const o=e.children,r=t.children;if(x(o)&&x(r))for(let i=0;i0?sr||f:null,ir.pop(),sr=ir[ir.length-1]||null,cr>0&&sr&&sr.push(e),e}function dr(e,t,n,o,r,i){return ur(yr(e,t,n,o,r,i,!0))}function fr(e,t,n,o,r){return ur(br(e,t,n,o,r,!0))}function pr(e){return!!e&&!0===e.__v_isVNode}function hr(e,t){return e.type===t.type&&e.key===t.key}const gr="__vInternal",mr=({key:e})=>null!=e?e:null,vr=({ref:e,ref_key:t,ref_for:n})=>null!=e?T(e)||Wt(e)||S(e)?{i:bn,r:e,k:t,f:!!n}:e:null;function yr(e,t=null,n=null,o=0,r=null,i=(e===tr?0:1),s=!1,a=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&mr(t),ref:t&&vr(t),scopeId:_n,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:o,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:bn};return a?(Tr(c,n),128&i&&e.normalize(c)):n&&(c.shapeFlag|=T(n)?8:16),cr>0&&!s&&sr&&(c.patchFlag>0||6&i)&&32!==c.patchFlag&&sr.push(c),c}const br=function(e,t=null,n=null,r=0,i=null,s=!1){e&&e!==go||(e=or);if(pr(e)){const o=_r(e,t,!0);return n&&Tr(o,n),cr>0&&!s&&sr&&(6&o.shapeFlag?sr[sr.indexOf(e)]=o:sr.push(o)),o.patchFlag|=-2,o}a=e,S(a)&&"__vccOpts"in a&&(e=e.__vccOpts);var a;if(t){t=function(e){return e?Mt(e)||gr in e?y({},e):e:null}(t);let{class:e,style:n}=t;e&&!T(e)&&(t.class=c(e)),E(n)&&(Mt(n)&&!x(n)&&(n=y({},n)),t.style=o(n))}const l=T(e)?1:(e=>e.__isSuspense)(e)?128:(e=>e.__isTeleport)(e)?64:E(e)?4:S(e)?2:0;return yr(e,t,n,r,i,l,s,!0)};function _r(e,t,n=!1){const{props:o,ref:r,patchFlag:i,children:s}=e,a=t?kr(o||{},t):o;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&mr(a),ref:t&&t.ref?n&&r?x(r)?r.concat(vr(t)):[r,vr(t)]:vr(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==tr?-1===i?16:16|i:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&_r(e.ssContent),ssFallback:e.ssFallback&&_r(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function wr(e=" ",t=0){return br(nr,null,e,t)}function xr(e="",t=!1){return t?(ar(),fr(or,null,e)):br(or,null,e)}function Cr(e){return null==e||"boolean"==typeof e?br(or):x(e)?br(tr,null,e.slice()):"object"==typeof e?Sr(e):br(nr,null,String(e))}function Sr(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:_r(e)}function Tr(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if(x(t))n=16;else if("object"==typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),Tr(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||gr in t?3===o&&bn&&(1===bn.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=bn}}else S(t)?(t={default:t,_ctx:bn},n=32):(t=String(t),64&o?(n=16,t=[wr(t)]):n=8);e.children=t,e.shapeFlag|=n}function kr(...e){const t={};for(let n=0;nLr||bn,Pr=e=>{Lr=e,e.scope.on()},Nr=()=>{Lr&&Lr.scope.off(),Lr=null};function Mr(e){return 4&e.vnode.shapeFlag}let jr=!1;function Rr(e,t,n){S(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:E(t)&&(e.setupState=Ut(t)),Fr(e,n)}function Fr(e,t,n){const o=e.type;e.render||(e.render=o.render||p),Pr(e),Re(),So(e),Fe(),Nr()}function Br(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Ut(Rt(e.exposed)),{get:(t,n)=>n in t?t[n]:n in _o?_o[n](e):void 0,has:(e,t)=>t in e||t in _o}))}const Ir=(e,t)=>function(e,t,n=!1){let o,r;const i=S(e);return i?(o=e,r=p):(o=e.get,r=e.set),new Xt(o,r,i||!r,n)}(e,0,jr);const Vr=Symbol(""),Wr=()=>$n(Vr),Hr="3.2.47",zr="undefined"!=typeof document?document:null,Dr=zr&&zr.createElement("template"),Ur={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,o)=>{const r=t?zr.createElementNS("http://www.w3.org/2000/svg",e):zr.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>zr.createTextNode(e),createComment:e=>zr.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>zr.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,o,r,i){const s=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),r!==i&&(r=r.nextSibling););else{Dr.innerHTML=o?`${e}`:e;const r=Dr.content;if(o){const e=r.firstChild;for(;e.firstChild;)r.appendChild(e.firstChild);r.removeChild(e)}t.insertBefore(r,n)}return[s?s.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};const qr=/\s*!important$/;function Xr(e,t,n){if(x(n))n.forEach((n=>Xr(e,t,n)));else if(null==n&&(n=""),n=oi(n),t.startsWith("--"))e.setProperty(t,n);else{const o=function(e,t){const n=Kr[t];if(n)return n;let o=R(t);if("filter"!==o&&o in e)return Kr[t]=o;o=I(o);for(let r=0;re.replace(oe,((e,t)=>{if(!t)return e;if(1===ti)return`${t}${ei}`;const n=function(e,t){const n=Math.pow(10,t+1),o=Math.floor(e*n);return 10*Math.round(o/10)/n}(parseFloat(t)*ti,ni);return 0===n?"0":`${n}${ei}`})));var ei,ti,ni;const oi=e=>T(e)?Qr(e):e,ri="http://www.w3.org/1999/xlink";function ii(e,t,n,o,r=null){const i=e._vei||(e._vei={}),s=i[t];if(o&&s)s.value=o;else{const[n,a]=function(e){let t;if(si.test(e)){let n;for(t={};n=e.match(si);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[":"===e[2]?e.slice(3):B(e.slice(2)),t]}(t);if(o){const s=i[t]=function(e,t){const n=e=>{if(e._vts){if(e._vts<=n.attached)return}else e._vts=Date.now();const o=t&&t.proxy,r=o&&o.$nne,{value:i}=n;if(r&&x(i)){const n=li(e,i);for(let o=0;oai||(ci.then((()=>ai=0)),ai=Date.now()))(),n}(o,r);!function(e,t,n,o){e.addEventListener(t,n,o)}(e,n,s,a)}else s&&(!function(e,t,n,o){e.removeEventListener(t,n,o)}(e,n,s,a),i[t]=void 0)}}const si=/(?:Once|Passive|Capture)$/;let ai=0;const ci=Promise.resolve();function li(e,t){if(x(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map((e=>{const t=t=>!t._stopped&&e&&e(t);return t.__wwe=e.__wwe,t}))}return t}const ui=/^on[a-z]/;const di="transition",fi=(e,{slots:t})=>function(e,t,n){const o=arguments.length;return 2===o?E(t)&&!x(t)?pr(t)?br(e,null,[t]):br(e,t):br(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&pr(n)&&(n=[n]),br(e,t,n))}(Bn,function(e){const t={};for(const y in e)y in pi||(t[y]=e[y]);if(!1===e.css)return t;const{name:n="v",type:o,duration:r,enterFromClass:i=`${n}-enter-from`,enterActiveClass:s=`${n}-enter-active`,enterToClass:a=`${n}-enter-to`,appearFromClass:c=i,appearActiveClass:l=s,appearToClass:u=a,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:p=`${n}-leave-to`}=e,h=function(e){if(null==e)return null;if(E(e))return[mi(e.enter),mi(e.leave)];{const t=mi(e);return[t,t]}}(r),g=h&&h[0],m=h&&h[1],{onBeforeEnter:v,onEnter:b,onEnterCancelled:_,onLeave:w,onLeaveCancelled:x,onBeforeAppear:C=v,onAppear:S=b,onAppearCancelled:T=_}=t,k=(e,t,n)=>{yi(e,t?u:a),yi(e,t?l:s),n&&n()},$=(e,t)=>{e._isLeaving=!1,yi(e,d),yi(e,p),yi(e,f),t&&t()},O=e=>(t,n)=>{const r=e?S:b,s=()=>k(t,e,n);hi(r,[t,s]),bi((()=>{yi(t,e?c:i),vi(t,e?u:a),gi(r)||wi(t,o,g,s)}))};return y(t,{onBeforeEnter(e){hi(v,[e]),vi(e,i),vi(e,s)},onBeforeAppear(e){hi(C,[e]),vi(e,c),vi(e,l)},onEnter:O(!1),onAppear:O(!0),onLeave(e,t){e._isLeaving=!0;const n=()=>$(e,t);vi(e,d),document.body.offsetHeight,vi(e,f),bi((()=>{e._isLeaving&&(yi(e,d),vi(e,p),gi(w)||wi(e,o,m,n))})),hi(w,[e,n])},onEnterCancelled(e){k(e,!1),hi(_,[e])},onAppearCancelled(e){k(e,!0),hi(T,[e])},onLeaveCancelled(e){$(e),hi(x,[e])}})}(e),t);fi.displayName="Transition";const pi={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};fi.props=y({},Fn,pi);const hi=(e,t=[])=>{x(e)?e.forEach((e=>e(...t))):e&&e(...t)},gi=e=>!!e&&(x(e)?e.some((e=>e.length>1)):e.length>1);function mi(e){const t=(e=>{const t=T(e)?Number(e):NaN;return isNaN(t)?e:t})(e);return t}function vi(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e._vtc||(e._vtc=new Set)).add(t)}function yi(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function bi(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let _i=0;function wi(e,t,n,o){const r=e._endId=++_i,i=()=>{r===e._endId&&o()};if(n)return setTimeout(i,n);const{type:s,timeout:a,propCount:c}=function(e,t){const n=window.getComputedStyle(e),o=e=>(n[e]||"").split(", "),r=o("transitionDelay"),i=o("transitionDuration"),s=xi(r,i),a=o("animationDelay"),c=o("animationDuration"),l=xi(a,c);let u=null,d=0,f=0;t===di?s>0&&(u=di,d=s,f=i.length):"animation"===t?l>0&&(u="animation",d=l,f=c.length):(d=Math.max(s,l),u=d>0?s>l?di:"animation":null,f=u?u===di?i.length:c.length:0);const p=u===di&&/\b(transform|all)(,|$)/.test(o("transitionProperty").toString());return{type:u,timeout:d,propCount:f,hasTransform:p}}(e,t);if(!s)return o();const l=s+"end";let u=0;const d=()=>{e.removeEventListener(l,f),i()},f=t=>{t.target===e&&++u>=c&&d()};setTimeout((()=>{uCi(t)+Ci(e[n]))))}function Ci(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}const Si=["ctrl","shift","alt","meta"],Ti={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>Si.some((n=>e[`${n}Key`]&&!t.includes(n)))},ki=(e,t)=>(n,...o)=>{for(let e=0;e{$i(e,!1)})):$i(e,t))},beforeUnmount(e,{value:t}){$i(e,t)}};function $i(e,t){e.style.display=t?e._vod:"none"}const Oi=y({patchProp:(e,t,n,o,r=!1,i,s,a,c)=>{if(0===t.indexOf("change:"))return function(e,t,n,o=null){if(!n||!o)return;const r=t.replace("change:",""),{attrs:i}=o,s=i[r],a=(e.__wxsProps||(e.__wxsProps={}))[r];if(a===s)return;e.__wxsProps[r]=s;const c=o.proxy;an((()=>{n(s,a,c.$gcd(c,!0),c.$gcd(c,!1))}))}(e,t,o,s);"class"===t?function(e,t,n){const{__wxsAddClass:o,__wxsRemoveClass:r}=e;r&&r.length&&(t=(t||"").split(/\s+/).filter((e=>-1===r.indexOf(e))).join(" "),r.length=0),o&&o.length&&(t=(t||"")+" "+o.join(" "));const i=e._vtc;i&&(t=(t?[t,...i]:[...i]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,o,r):"style"===t?function(e,t,n){const o=e.style,r=T(n);if(n&&!r){if(t&&!T(t))for(const e in t)null==n[e]&&Xr(o,e,"");for(const e in n)Xr(o,e,n[e])}else{const i=o.display;r?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=i)}const{__wxsStyle:i}=e;if(i)for(const s in i)Xr(o,s,i[s])}(e,n,o):m(t)?v(t)||ii(e,t,0,o,s):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,o){if(o)return"innerHTML"===t||"textContent"===t||!!(t in e&&ui.test(t)&&S(n));if("spellcheck"===t||"draggable"===t||"translate"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if(ui.test(t)&&T(n))return!1;return t in e}(e,t,o,r))?function(e,t,n,o,r,i,s){if("innerHTML"===t||"textContent"===t)return o&&s(o,r,i),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const o=null==n?"":n;return e.value===o&&"OPTION"!==e.tagName||(e.value=o),void(null==n&&e.removeAttribute(t))}let a=!1;if(""===n||null==n){const o=typeof e[t];"boolean"===o?n=u(n):null==n&&"string"===o?(n="",a=!0):"number"===o&&(n=0,a=!0)}try{e[t]=n}catch(c){}a&&e.removeAttribute(t)}(e,t,o,i,s,a,c):("true-value"===t?e._trueValue=o:"false-value"===t&&(e._falseValue=o),function(e,t,n,o,r){if(o&&t.startsWith("xlink:"))null==n?e.removeAttributeNS(ri,t.slice(6,t.length)):e.setAttributeNS(ri,t,n);else{const o=l(t);null==n||o&&!u(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}(e,t,o,r))},forcePatchProp:(e,t)=>0===t.indexOf("change:")||("class"===t&&e.__wxsClassChanged?(e.__wxsClassChanged=!1,!0):!("style"!==t||!e.__wxsStyleChanged)&&(e.__wxsStyleChanged=!1,!0))},Ur);let Li;const Ai=(...e)=>{const t=(Li||(Li=Zo(Oi))).createApp(...e),{mount:n}=t;return t.mount=e=>{const o=function(e){if(T(e)){return document.querySelector(e)}return e}(e);if(!o)return;const r=t._component;S(r)||r.render||r.template||(r.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},t};const Pi=["{","}"];const Ni=/^(?:\d)+/,Mi=/^(?:\w)+/;const ji=Object.prototype.hasOwnProperty,Ri=(e,t)=>ji.call(e,t),Fi=new class{constructor(){this._caches=Object.create(null)}interpolate(e,t,n=Pi){if(!t)return[e];let o=this._caches[e];return o||(o=function(e,[t,n]){const o=[];let r=0,i="";for(;r-1?"zh-Hans":e.indexOf("-hant")>-1?"zh-Hant":(n=e,["-tw","-hk","-mo","-cht"].find((e=>-1!==n.indexOf(e)))?"zh-Hant":"zh-Hans");var n;let o=["en","fr","es"];t&&Object.keys(t).length>0&&(o=Object.keys(t));const r=function(e,t){return t.find((t=>0===e.indexOf(t)))}(e,o);return r||void 0}class Ii{constructor({locale:e,fallbackLocale:t,messages:n,watcher:o,formater:r}){this.locale="en",this.fallbackLocale="en",this.message={},this.messages={},this.watchers=[],t&&(this.fallbackLocale=t),this.formater=r||Fi,this.messages=n||{},this.setLocale(e||"en"),o&&this.watchLocale(o)}setLocale(e){const t=this.locale;this.locale=Bi(e,this.messages)||this.fallbackLocale,this.messages[this.locale]||(this.messages[this.locale]={}),this.message=this.messages[this.locale],t!==this.locale&&this.watchers.forEach((e=>{e(this.locale,t)}))}getLocale(){return this.locale}watchLocale(e){const t=this.watchers.push(e)-1;return()=>{this.watchers.splice(t,1)}}add(e,t,n=!0){const o=this.messages[e];o?n?Object.assign(o,t):Object.keys(t).forEach((e=>{Ri(o,e)||(o[e]=t[e])})):this.messages[e]=t}f(e,t,n){return this.formater.interpolate(e,t,n).join("")}t(e,t,n){let o=this.message;return"string"==typeof t?(t=Bi(t,this.messages))&&(o=this.messages[t]):n=t,Ri(o,e)?this.formater.interpolate(o[e],n).join(""):(console.warn(`Cannot translate the value of keypath ${e}. Use the value of keypath as default.`),e)}}function Vi(e,t={},n,o){"string"!=typeof e&&([e,t]=[t,e]),"string"!=typeof e&&(e="undefined"!=typeof uni&&bc?bc():"undefined"!=typeof global&&global.getLocale?global.getLocale():"en"),"string"!=typeof n&&(n="undefined"!=typeof __uniConfig&&__uniConfig.fallbackLocale||"en");const r=new Ii({locale:e,fallbackLocale:n,messages:t,watcher:o});let i=(e,t)=>{{let e=!1;i=function(t,n){const o=Ol().$vm;return o&&(o.$locale,e||(e=!0,function(e,t){e.$watchLocale?e.$watchLocale((e=>{t.setLocale(e)})):e.$watch((()=>e.$locale),(e=>{t.setLocale(e)}))}(o,r))),r.t(t,n)}}return i(e,t)};return{i18n:r,f:(e,t,n)=>r.f(e,t,n),t:(e,t)=>i(e,t),add:(e,t,n=!0)=>r.add(e,t,n),watch:e=>r.watchLocale(e),getLocale:()=>r.getLocale(),setLocale:e=>r.setLocale(e)}} -/*! - * vue-router v4.1.6 - * (c) 2022 Eduardo San Martin Morote - * @license MIT - */var Wi,Hi,zi,Di;(Hi=Wi||(Wi={})).pop="pop",Hi.push="push",(Di=zi||(zi={})).back="back",Di.forward="forward",Di.unknown="";Symbol("");var Ui,qi;(qi=Ui||(Ui={}))[qi.aborted=4]="aborted",qi[qi.cancelled=8]="cancelled",qi[qi.duplicated=16]="duplicated";const Xi=Q((()=>"undefined"!=typeof __uniConfig&&__uniConfig.locales&&!!Object.keys(__uniConfig.locales).length));let Yi;function Ki(){if(!Yi){let e;if(e=navigator.cookieEnabled&&window.localStorage&&localStorage.UNI_LOCALE||__uniConfig.locale||navigator.language,Yi=Vi(e),Xi()){const t=Object.keys(__uniConfig.locales||{});t.length&&t.forEach((e=>Yi.add(e,__uniConfig.locales[e]))),Yi.setLocale(e)}}return Yi}function Ji(e,t,n){return t.reduce(((t,o,r)=>(t[e+o]=n[r],t)),{})}const Gi=Q((()=>{const e="uni.async.",t=["error"];Ki().add("en",Ji(e,t,["The connection timed out, click the screen to try again."]),!1),Ki().add("es",Ji(e,t,["Se agotó el tiempo de conexión, haga clic en la pantalla para volver a intentarlo."]),!1),Ki().add("fr",Ji(e,t,["La connexion a expiré, cliquez sur l'écran pour réessayer."]),!1),Ki().add("zh-Hans",Ji(e,t,["连接服务器超时,点击屏幕重试"]),!1),Ki().add("zh-Hant",Ji(e,t,["連接服務器超時,點擊屏幕重試"]),!1)})),Zi=Q((()=>{const e="uni.showToast.",t=["unpaired"];Ki().add("en",Ji(e,t,["Please note showToast must be paired with hideToast"]),!1),Ki().add("es",Ji(e,t,["Tenga en cuenta que showToast debe estar emparejado con hideToast"]),!1),Ki().add("fr",Ji(e,t,["Veuillez noter que showToast doit être associé à hideToast"]),!1),Ki().add("zh-Hans",Ji(e,t,["请注意 showToast 与 hideToast 必须配对使用"]),!1),Ki().add("zh-Hant",Ji(e,t,["請注意 showToast 與 hideToast 必須配對使用"]),!1)})),Qi=Q((()=>{const e="uni.showLoading.",t=["unpaired"];Ki().add("en",Ji(e,t,["Please note showLoading must be paired with hideLoading"]),!1),Ki().add("es",Ji(e,t,["Tenga en cuenta que showLoading debe estar emparejado con hideLoading"]),!1),Ki().add("fr",Ji(e,t,["Veuillez noter que showLoading doit être associé à hideLoading"]),!1),Ki().add("zh-Hans",Ji(e,t,["请注意 showLoading 与 hideLoading 必须配对使用"]),!1),Ki().add("zh-Hant",Ji(e,t,["請注意 showLoading 與 hideLoading 必須配對使用"]),!1)}));function es(e){const t=new ve;return{on:(e,n)=>t.on(e,n),once:(e,n)=>t.once(e,n),off:(e,n)=>t.off(e,n),emit:(e,...n)=>t.emit(e,...n),subscribe(n,o,r=!1){t[r?"once":"on"](`${e}.${n}`,o)},unsubscribe(n,o){t.off(`${e}.${n}`,o)},subscribeHandler(n,o,r){t.emit(`${e}.${n}`,o,r)}}}let ts=1;const ns=Object.create(null);function os(e,t){return e+"."+t}function rs({id:e,name:t,args:n},o){t=os(o,t);const r=t=>{e&&gu.publishHandler("invokeViewApi."+e,t)},i=ns[t];i?i(n,r):r({})}const is=y(es("service"),{invokeServiceMethod:(e,t,n)=>{const{subscribe:o,publishHandler:r}=gu,i=n?ts++:0;n&&o("invokeServiceApi."+i,n,!0),r("invokeServiceApi",{id:i,name:e,args:t})}}),ss=re(!0);let as;function cs(){as&&(clearTimeout(as),as=null)}let ls=0,us=0;function ds(e){if(cs(),1!==e.touches.length)return;const{pageX:t,pageY:n}=e.touches[0];ls=t,us=n,as=setTimeout((function(){const t=new CustomEvent("longpress",{bubbles:!0,cancelable:!0,target:e.target,currentTarget:e.currentTarget});t.touches=e.touches,t.changedTouches=e.changedTouches,e.target.dispatchEvent(t)}),350)}function fs(e){if(!as)return;if(1!==e.touches.length)return cs();const{pageX:t,pageY:n}=e.touches[0];return Math.abs(t-ls)>10||Math.abs(n-us)>10?cs():void 0}function ps(e,t){const n=Number(e);return isNaN(n)?t:n}function hs(){const e=__uniConfig.globalStyle||{},t=ps(e.rpxCalcMaxDeviceWidth,960),n=ps(e.rpxCalcBaseDeviceWidth,375);function o(){let e=function(){const e=/^Apple/.test(navigator.vendor)&&"number"==typeof window.orientation,t=e&&90===Math.abs(window.orientation);var n=e?Math[t?"max":"min"](screen.width,screen.height):screen.width;return Math.min(window.innerWidth,document.documentElement.clientWidth,n)||n}();e=e<=t?e:n,document.documentElement.style.fontSize=e/23.4375+"px"}o(),document.addEventListener("DOMContentLoaded",o),window.addEventListener("load",o),window.addEventListener("resize",o)}function gs(){hs(),te(),window.addEventListener("touchstart",ds,ss),window.addEventListener("touchmove",fs,ss),window.addEventListener("touchend",cs,ss),window.addEventListener("touchcancel",cs,ss)}function ms(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var vs,ys,bs=["top","left","right","bottom"],_s={};function ws(){return ys="CSS"in window&&"function"==typeof CSS.supports?CSS.supports("top: env(safe-area-inset-top)")?"env":CSS.supports("top: constant(safe-area-inset-top)")?"constant":"":""}function xs(){if(ys="string"==typeof ys?ys:ws()){var e=[],t=!1;try{var n=Object.defineProperty({},"passive",{get:function(){t={passive:!0}}});window.addEventListener("test",null,n)}catch(a){}var o=document.createElement("div");r(o,{position:"absolute",left:"0",top:"0",width:"0",height:"0",zIndex:"-1",overflow:"hidden",visibility:"hidden"}),bs.forEach((function(e){s(o,e)})),document.body.appendChild(o),i(),vs=!0}else bs.forEach((function(e){_s[e]=0}));function r(e,t){var n=e.style;Object.keys(t).forEach((function(e){var o=t[e];n[e]=o}))}function i(t){t?e.push(t):e.forEach((function(e){e()}))}function s(e,n){var o=document.createElement("div"),s=document.createElement("div"),a=document.createElement("div"),c=document.createElement("div"),l={position:"absolute",width:"100px",height:"200px",boxSizing:"border-box",overflow:"hidden",paddingBottom:ys+"(safe-area-inset-"+n+")"};r(o,l),r(s,l),r(a,{transition:"0s",animation:"none",width:"400px",height:"400px"}),r(c,{transition:"0s",animation:"none",width:"250%",height:"250%"}),o.appendChild(a),s.appendChild(c),e.appendChild(o),e.appendChild(s),i((function(){o.scrollTop=s.scrollTop=1e4;var e=o.scrollTop,r=s.scrollTop;function i(){this.scrollTop!==(this===o?e:r)&&(o.scrollTop=s.scrollTop=1e4,e=o.scrollTop,r=s.scrollTop,function(e){Ss.length||setTimeout((function(){var e={};Ss.forEach((function(t){e[t]=_s[t]})),Ss.length=0,Ts.forEach((function(t){t(e)}))}),0);Ss.push(e)}(n))}o.addEventListener("scroll",i,t),s.addEventListener("scroll",i,t)}));var u=getComputedStyle(o);Object.defineProperty(_s,n,{configurable:!0,get:function(){return parseFloat(u.paddingBottom)}})}}function Cs(e){return vs||xs(),_s[e]}var Ss=[];var Ts=[];const ks=ms({get support(){return 0!=("string"==typeof ys?ys:ws()).length},get top(){return Cs("top")},get left(){return Cs("left")},get right(){return Cs("right")},get bottom(){return Cs("bottom")},onChange:function(e){ws()&&(vs||xs(),"function"==typeof e&&Ts.push(e))},offChange:function(e){var t=Ts.indexOf(e);t>=0&&Ts.splice(t,1)}}),Es=ki((()=>{}),["prevent"]);function $s(e,t){return parseInt((e.getPropertyValue(t).match(/\d+/)||["0"])[0])}function Os(){const e=$s(document.documentElement.style,"--window-top");return e?e+ks.top:0}function Ls(e){const t=document.documentElement.style;Object.keys(e).forEach((n=>{t.setProperty(n,e[n])}))}const As="M1.952 18.080q-0.32-0.352-0.416-0.88t0.128-0.976l0.16-0.352q0.224-0.416 0.64-0.528t0.8 0.176l6.496 4.704q0.384 0.288 0.912 0.272t0.88-0.336l17.312-14.272q0.352-0.288 0.848-0.256t0.848 0.352l-0.416-0.416q0.32 0.352 0.32 0.816t-0.32 0.816l-18.656 18.912q-0.32 0.352-0.8 0.352t-0.8-0.32l-7.936-8.064z",Ps="M15.808 0.16q-4.224 0-7.872 2.176-3.552 2.112-5.632 5.728-2.144 3.744-2.144 8.128 0 4.192 2.144 7.872 2.112 3.52 5.632 5.632 3.68 2.144 7.872 2.144 4.384 0 8.128-2.144 3.616-2.080 5.728-5.632 2.176-3.648 2.176-7.872 0-4.384-2.176-8.128-2.112-3.616-5.728-5.728-3.744-2.176-8.128-2.176zM15.136 8.672h1.728q0.128 0 0.224 0.096t0.096 0.256l-0.384 10.24q0 0.064-0.048 0.112t-0.112 0.048h-1.248q-0.096 0-0.144-0.048t-0.048-0.112l-0.384-10.24q0-0.16 0.096-0.256t0.224-0.096zM16 23.328q-0.48 0-0.832-0.352t-0.352-0.848 0.352-0.848 0.832-0.352 0.832 0.352 0.352 0.848-0.352 0.848-0.832 0.352z";function Ns(e,t="#000",n=27){return br("svg",{width:n,height:n,viewBox:"0 0 32 32"},[br("path",{d:e,fill:t},null,8,["d","fill"])],8,["width","height"])}function Ms(){const e=fl(),t=e.length;if(t)return e[t-1]}function js(){const e=Ms();if(e)return e.$page.meta}function Rs(){const e=Ms();if(e)return e.$vm}const Fs=["navigationBar","pullToRefresh"];function Bs(e,t){const n=JSON.parse(JSON.stringify(__uniConfig.globalStyle||{})),o=y({id:t},n,e);Fs.forEach((t=>{o[t]=y({},n[t],e[t])}));const{navigationBar:r}=o;return r.titleText&&r.titleImage&&(r.titleText=""),o}function Is(e,t,n){if(T(e))n=t,t=e,e=Rs();else if("number"==typeof e){const t=fl().find((t=>t.$page.id===e));e=t?t.$vm:Rs()}if(!e)return;const o=e.$[t];return o&&((e,t)=>{let n;for(let o=0;o{function s(){if((()=>{const{scrollHeight:e}=document.documentElement,t=window.innerHeight,o=window.scrollY,i=o>0&&e>t&&o+t+n>=e,s=Math.abs(e-Hs)>n;return!i||r&&!s?(!i&&r&&(r=!1),!1):(Hs=e,r=!0,!0)})())return t&&t(),i=!1,setTimeout((function(){i=!0}),350),!0}e&&e(window.pageYOffset),t&&i&&(s()||(Ws=setTimeout(s,300))),o=!1};return function(){clearTimeout(Ws),o||requestAnimationFrame(s),o=!0}}function Ds(e,t){if(0===t.indexOf("/"))return t;if(0===t.indexOf("./"))return Ds(e,t.slice(2));const n=t.split("/"),o=n.length;let r=0;for(;r0?e.split("/"):[];return i.splice(i.length-r-1,r+1),Z(i.concat(n).join("/"))}function Us(e,t=!1){return t?__uniRoutes.find((t=>t.path===e||t.alias===e)):__uniRoutes.find((t=>t.path===e))}class qs{constructor(e){this.$bindClass=!1,this.$bindStyle=!1,this.$vm=e,this.$el=function(e,t=!1){const{vnode:n}=e;if(J(n.el))return t?n.el?[n.el]:[]:n.el;const{subTree:o}=e;if(16&o.shapeFlag){const e=o.children.filter((e=>e.el&&J(e.el)));if(e.length>0)return t?e.map((e=>e.el)):e[0].el}return t?n.el?[n.el]:[]:n.el}(e.$),this.$el.getAttribute&&(this.$bindClass=!!this.$el.getAttribute("class"),this.$bindStyle=!!this.$el.getAttribute("style"))}selectComponent(e){if(!this.$el||!e)return;const t=Js(this.$el.querySelector(e));return t?Xs(t,!1):void 0}selectAllComponents(e){if(!this.$el||!e)return[];const t=[],n=this.$el.querySelectorAll(e);for(let o=0;o-1&&t.splice(n,1)}const n=this.$el.__wxsRemoveClass||(this.$el.__wxsRemoveClass=[]);return-1===n.indexOf(e)&&(n.push(e),this.forceUpdate("class")),this}hasClass(e){return this.$el&&this.$el.classList.contains(e)}getDataset(){return this.$el&&this.$el.dataset}callMethod(e,t={}){const n=this.$vm[e];S(n)?n(JSON.parse(JSON.stringify(t))):this.$vm.ownerId&&gu.publishHandler("onWxsInvokeCallMethod",{nodeId:this.$el.__id,ownerId:this.$vm.ownerId,method:e,args:t})}requestAnimationFrame(e){return window.requestAnimationFrame(e)}getState(){return this.$el&&(this.$el.__wxsState||(this.$el.__wxsState={}))}triggerEvent(e,t={}){return this.$vm.$emit(e,t),this}getComputedStyle(e){if(this.$el){const t=window.getComputedStyle(this.$el);return e&&e.length?e.reduce(((e,n)=>(e[n]=t[n],e)),{}):t}return{}}setTimeout(e,t){return window.setTimeout(e,t)}clearTimeout(e){return window.clearTimeout(e)}getBoundingClientRect(){return this.$el.getBoundingClientRect()}}function Xs(e,t=!0){if(t&&e&&(e=K(e.$)),e&&e.$el)return e.$el.__wxsComponentDescriptor||(e.$el.__wxsComponentDescriptor=new qs(e)),e.$el.__wxsComponentDescriptor}function Ys(e,t){return Xs(e,t)}function Ks(e,t,n,o=!0){if(t){e.__instance||(e.__instance=!0,Object.defineProperty(e,"instance",{get:()=>Ys(n.proxy,!1)}));const r=function(e,t,n=!0){if(!t)return!1;if(n&&e.length<2)return!1;const o=K(t);if(!o)return!1;const r=o.$.type;return!(!r.$wxs&&!r.$renderjs)&&o}(t,n,o);if(r)return[e,Ys(r,!1)]}}function Js(e){if(e)return e.__vueParentComponent&&e.__vueParentComponent.proxy}function Gs(e){for(;e&&0!==e.tagName.indexOf("UNI-");)e=e.parentElement;return e}function Zs(e,t=!1){const{type:n,timeStamp:o,target:r,currentTarget:i}=e,s={type:n,timeStamp:o,target:ie(t?r:Gs(r)),detail:{},currentTarget:ie(i)};return e._stopped&&(s._stopped=!0),e.type.startsWith("touch")&&(s.touches=e.touches,s.changedTouches=e.changedTouches),function(e,t){y(e,{preventDefault:()=>t.preventDefault(),stopPropagation:()=>t.stopPropagation()})}(s,e),s}function Qs(e,t){return{force:1,identifier:0,clientX:e.clientX,clientY:e.clientY-t,pageX:e.pageX,pageY:e.pageY-t}}function ea(e,t){const n=[];for(let o=0;o0===e.type.indexOf("mouse")||["contextmenu"].includes(e.type))(e))!function(e,t){const n=Os();e.pageX=t.pageX,e.pageY=t.pageY-n,e.clientX=t.clientX,e.clientY=t.clientY-n,e.touches=e.changedTouches=[Qs(t,n)]}(i,e);else if((e=>"undefined"!=typeof TouchEvent&&e instanceof TouchEvent||0===e.type.indexOf("touch")||["longpress"].indexOf(e.type)>=0)(e)){const t=Os();i.touches=ea(e.touches,t),i.changedTouches=ea(e.changedTouches,t)}else if((e=>!e.type.indexOf("key")&&e instanceof KeyboardEvent)(e)){["key","code"].forEach((t=>{Object.defineProperty(i,t,{get:()=>e[t]})}))}return Ks(i,t,n)||[i]},createNativeEvent:Zs},Symbol.toStringTag,{value:"Module"});function na(e){!function(e){const t=e.globalProperties;y(t,ta),t.$gcd=Ys}(e._context.config)}let oa=1;function ra(e){return(e||function(){const e=js();return e?e.id:-1}())+".invokeViewApi"}const ia=y(es("view"),{invokeOnCallback:(e,t)=>mu.emit("api."+e,t),invokeViewMethod:(e,t,n,o)=>{const{subscribe:r,publishHandler:i}=mu,s=o?oa++:0;o&&r("invokeViewApi."+s,o,!0),i(ra(n),{id:s,name:e,args:t},n)},invokeViewMethodKeepAlive:(e,t,n,o)=>{const{subscribe:r,unsubscribe:i,publishHandler:s}=mu,a=oa++,c="invokeViewApi."+a;return r(c,n),s(ra(o),{id:a,name:e,args:t},o),()=>{i(c)}}});function sa(e){Is(Ms(),"onResize",e),mu.invokeOnCallback("onWindowResize",e)}function aa(e){const t=Ms();Is(Ol(),"onShow",e),Is(t,"onShow")}function ca(){Is(Ol(),"onHide"),Is(Ms(),"onHide")}const la=["onPageScroll","onReachBottom"];function ua(){la.forEach((e=>mu.subscribe(e,function(e){return(t,n)=>{Is(parseInt(n),e,t)}}(e))))}function da(){!function(){const{on:e}=mu;e("onResize",sa),e("onAppEnterForeground",aa),e("onAppEnterBackground",ca)}(),ua()}function fa(){if(this.$route){const e=this.$route.meta;return e.eventChannel||(e.eventChannel=new ue(this.$page.id)),e.eventChannel}}function pa(e){e._context.config.globalProperties.getOpenerEventChannel=fa}function ha(){return{path:"",query:{},scene:1001,referrerInfo:{appId:"",extraData:{}}}}function ga(e){return/^-?\d+[ur]px$/i.test(e)?e.replace(/(^-?\d+)[ur]px$/i,((e,t)=>`${yc(parseFloat(t))}px`)):/^-?[\d\.]+$/.test(e)?`${e}px`:e||""}function ma(e){const t=e.animation;if(!t||!t.actions||!t.actions.length)return;let n=0;const o=t.actions,r=t.actions.length;function i(){const t=o[n],s=t.option.transition,a=function(e){const t=["matrix","matrix3d","scale","scale3d","rotate3d","skew","translate","translate3d"],n=["scaleX","scaleY","scaleZ","rotate","rotateX","rotateY","rotateZ","skewX","skewY","translateX","translateY","translateZ"],o=["opacity","background-color"],r=["width","height","left","right","top","bottom"],i=e.animates,s=e.option,a=s.transition,c={},l=[];return i.forEach((e=>{let i=e.type,s=[...e.args];if(t.concat(n).includes(i))i.startsWith("rotate")||i.startsWith("skew")?s=s.map((e=>parseFloat(e)+"deg")):i.startsWith("translate")&&(s=s.map(ga)),n.indexOf(i)>=0&&(s.length=1),l.push(`${i}(${s.join(",")})`);else if(o.concat(r).includes(s[0])){i=s[0];const e=s[1];c[i]=r.includes(i)?ga(e):e}})),c.transform=c.webkitTransform=l.join(" "),c.transition=c.webkitTransition=Object.keys(c).map((e=>`${function(e){return e.replace(/[A-Z]/g,(e=>`-${e.toLowerCase()}`)).replace("webkit","-webkit")}(e)} ${a.duration}ms ${a.timingFunction} ${a.delay}ms`)).join(","),c.transformOrigin=c.webkitTransformOrigin=s.transformOrigin,c}(t);Object.keys(a).forEach((t=>{e.$el.style[t]=a[t]})),n+=1,n{i()}),0)}const va={props:["animation"],watch:{animation:{deep:!0,handler(){ma(this)}}},mounted(){ma(this)}},ya=e=>{e.__reserved=!0;const{props:t,mixins:n}=e;return t&&t.animation||(n||(e.mixins=[])).push(va),ba(e)},ba=e=>(e.__reserved=!0,e.compatConfig={MODE:3},Un(e)),_a={hoverClass:{type:String,default:"none"},hoverStopPropagation:{type:Boolean,default:!1},hoverStartTime:{type:[Number,String],default:50},hoverStayTime:{type:[Number,String],default:400}};function wa(e){const t=Ht(!1);let n,o,r=!1;function i(){requestAnimationFrame((()=>{clearTimeout(o),o=setTimeout((()=>{t.value=!1}),parseInt(e.hoverStayTime))}))}function s(o){o._hoverPropagationStopped||e.hoverClass&&"none"!==e.hoverClass&&!e.disabled&&(e.hoverStopPropagation&&(o._hoverPropagationStopped=!0),r=!0,n=setTimeout((()=>{t.value=!0,r||i()}),parseInt(e.hoverStartTime)))}function a(){r=!1,t.value&&i()}function c(){a(),window.removeEventListener("mouseup",c)}return{hovering:t,binding:{onTouchstartPassive:function(e){e.touches.length>1||s(e)},onMousedown:function(e){r||(s(e),window.addEventListener("mouseup",c))},onTouchend:function(){a()},onMouseup:function(){r&&c()},onTouchcancel:function(){r=!1,t.value=!1,clearTimeout(n)}}}}function xa(e,t){return(n,o,r)=>{e.value&&t(n,function(e,t,n,o){const r=ie(n);return{type:o.type||e,timeStamp:t.timeStamp||0,target:r,currentTarget:r,detail:o}}(n,o,e.value,r||{}))}}function Ca(e){const{base:t}=__uniConfig.router;return 0===Z(e).indexOf(t)?Z(e):t+e}function Sa(e){const{base:t,assets:n}=__uniConfig.router;if("./"===t&&(0===e.indexOf("./static/")||n&&0===e.indexOf("./"+n+"/"))&&(e=e.slice(1)),0===e.indexOf("/")){if(0!==e.indexOf("//"))return Ca(e.slice(1));e="https:"+e}if(X.test(e)||Y.test(e)||0===e.indexOf("blob:"))return e;const o=fl();return o.length?Ca(Ds(o[o.length-1].$page.route,e).slice(1)):e}const Ta=navigator.userAgent,ka=/android/i.test(Ta),Ea=/iphone|ipad|ipod/i.test(Ta),$a=Ta.match(/Windows NT ([\d|\d.\d]*)/i),Oa=/Macintosh|Mac/i.test(Ta),La=/Linux|X11/i.test(Ta),Aa=Oa&&navigator.maxTouchPoints>0;function Pa(){return/^Apple/.test(navigator.vendor)&&"number"==typeof window.orientation}function Na(e){return e&&90===Math.abs(window.orientation)}function Ma(e,t){return e?Math[t?"max":"min"](screen.width,screen.height):screen.width}function ja(e){return Math.min(window.innerWidth,document.documentElement.clientWidth,e)||e}const Ra=["GET","OPTIONS","HEAD","POST","PUT","DELETE","TRACE","CONNECT","PATCH"];function Fa(e,t){return e&&-1!==t.indexOf(e)?e:t[0]}function Ba(e){return function(){try{return e.apply(e,arguments)}catch(t){console.error(t)}}}let Ia=1;const Va={};function Wa(e,t,n){if("number"==typeof e){const o=Va[e];if(o)return o.keepAlive||delete Va[e],o.callback(t,n)}return t}const Ha="success",za="fail",Da="complete";function Ua(e,t={},{beforeAll:n,beforeSuccess:o}={}){A(t)||(t={});const{success:r,fail:i,complete:s}=function(e){const t={};for(const n in e){const o=e[n];S(o)&&(t[n]=Ba(o),delete e[n])}return t}(t),a=S(r),c=S(i),l=S(s),u=Ia++;return function(e,t,n,o=!1){Va[e]={name:t,keepAlive:o,callback:n}}(u,e,(u=>{(u=u||{}).errMsg=function(e,t){return e&&-1!==e.indexOf(":fail")?t+e.substring(e.indexOf(":fail")):t+":ok"}(u.errMsg,e),S(n)&&n(u),u.errMsg===e+":ok"?(S(o)&&o(u,t),a&&r(u)):c&&i(u),l&&s(u)})),u}const qa="success",Xa="fail",Ya="complete",Ka={},Ja={};function Ga(e,t){return function(n){return e(n,t)||n}}function Za(e,t,n){let o=!1;for(let r=0;re(t),catch(){}}}function Qa(e,t={}){return[qa,Xa,Ya].forEach((n=>{const o=e[n];if(!x(o))return;const r=t[n];t[n]=function(e){Za(o,e,t).then((e=>S(r)&&r(e)||e))}})),t}function ec(e,t){const n=[];x(Ka.returnValue)&&n.push(...Ka.returnValue);const o=Ja[e];return o&&x(o.returnValue)&&n.push(...o.returnValue),n.forEach((e=>{t=e(t)||t})),t}function tc(e){const t=Object.create(null);Object.keys(Ka).forEach((e=>{"returnValue"!==e&&(t[e]=Ka[e].slice())}));const n=Ja[e];return n&&Object.keys(n).forEach((e=>{"returnValue"!==e&&(t[e]=(t[e]||[]).concat(n[e]))})),t}function nc(e,t,n,o){const r=tc(e);if(r&&Object.keys(r).length){if(x(r.invoke)){return Za(r.invoke,n).then((n=>t(Qa(tc(e),n),...o)))}return t(Qa(r,n),...o)}return t(n,...o)}function oc(e,t){return(n={},...o)=>function(e){return!(!A(e)||![Ha,za,Da].find((t=>S(e[t]))))}(n)?ec(e,nc(e,t,n,o)):ec(e,new Promise(((r,i)=>{nc(e,t,y(n,{success:r,fail:i}),o)})))}function rc(e,t,n,o){return Wa(e,y({errMsg:t+":fail"+(n?" "+n:"")},o))}function ic(e,t,n,o){if(o&&o.beforeInvoke){const e=o.beforeInvoke(t);if(T(e))return e}const r=function(e,t){const n=e[0];if(!t||!A(t.formatArgs)&&A(n))return;const o=t.formatArgs,r=Object.keys(o);for(let i=0;i{const r=Ua(e,n,o),i=ic(0,[n],0,o);return i?rc(r,e,i):t(n,{resolve:t=>function(e,t,n){return Wa(e,y(n||{},{errMsg:t+":ok"}))}(r,e,t),reject:(t,n)=>rc(r,e,function(e){return!e||T(e)?e:e.stack?(console.error(e.message+"\n"+e.stack),e.message):e}(t),n)})}}function ac(e,t,n,o){return oc(e,sc(e,t,0,o))}function cc(e,t,n,o){return function(e,t,n,o){return(...e)=>{const n=ic(0,e,0,o);if(n)throw new Error(n);return t.apply(null,e)}}(0,t,0,o)}function lc(e,t,n,o){return oc(e,function(e,t,n,o){return sc(e,t,0,o)}(e,t,0,o))}let uc=!1,dc=0,fc=0,pc=960,hc=375,gc=750;function mc(){const{platform:e,pixelRatio:t,windowWidth:n}=function(){const e=Pa(),t=ja(Ma(e,Na(e)));return{platform:Ea?"ios":"other",pixelRatio:window.devicePixelRatio,windowWidth:t}}();dc=n,fc=t,uc="ios"===e}function vc(e,t){const n=Number(e);return isNaN(n)?t:n}const yc=cc(0,((e,t)=>{if(0===dc&&(mc(),function(){const e=__uniConfig.globalStyle||{};pc=vc(e.rpxCalcMaxDeviceWidth,960),hc=vc(e.rpxCalcBaseDeviceWidth,375),gc=vc(e.rpxCalcBaseDeviceWidth,750)}()),0===(e=Number(e)))return 0;let n=t||dc;n=e===gc||n<=pc?n:hc;let o=e/750*n;return o<0&&(o=-o),o=Math.floor(o+1e-4),0===o&&(o=1!==fc&&uc?.5:1),e<0?-o:o})),bc=cc(0,(()=>{const e=Ol();return e&&e.$vm?e.$vm.$locale:Ki().getLocale()})),_c={onUnhandledRejection:[],onPageNotFound:[],onError:[],onShow:[],onHide:[]};const wc="json",xc=["text","arraybuffer"],Cc=encodeURIComponent;ArrayBuffer,Boolean;const Sc={formatArgs:{method(e,t){t.method=Fa((e||"").toUpperCase(),Ra)},data(e,t){t.data=e||""},url(e,t){t.method===Ra[0]&&A(t.data)&&Object.keys(t.data).length&&(t.url=function(e,t){let n=e.split("#");const o=n[1]||"";n=n[0].split("?");let r=n[1]||"";e=n[0];const i=r.split("&").filter((e=>e)),s={};i.forEach((e=>{const t=e.split("=");s[t[0]]=t[1]}));for(const a in t)if(w(t,a)){let e=t[a];null==e?e="":A(e)&&(e=JSON.stringify(e)),s[Cc(a)]=Cc(e)}return r=Object.keys(s).map((e=>`${e}=${s[e]}`)).join("&"),e+(r?"?"+r:"")+(o?"#"+o:"")}(e,t.data))},header(e,t){const n=t.header=e||{};t.method!==Ra[0]&&(Object.keys(n).find((e=>"content-type"===e.toLowerCase()))||(n["Content-Type"]="application/json"))},dataType(e,t){t.dataType=(e||wc).toLowerCase()},responseType(e,t){t.responseType=(e||"").toLowerCase(),-1===xc.indexOf(t.responseType)&&(t.responseType="text")}}};const Tc={url:{type:String,required:!0}};kc(["slide-in-right","slide-in-left","slide-in-top","slide-in-bottom","fade-in","zoom-out","zoom-fade-out","pop-in","none"]),kc(["slide-out-right","slide-out-left","slide-out-top","slide-out-bottom","fade-out","zoom-in","zoom-fade-in","pop-out","none"]);function kc(e){return{animationType:{type:String,validator(t){if(t&&-1===e.indexOf(t))return"`"+t+"` is not supported for `animationType` (supported values are: `"+e.join("`|`")+"`)"}},animationDuration:{type:Number}}}const Ec=["success","loading","none","error"],$c=(Boolean,{formatArgs:{title:"",icon(e,t){t.icon=Fa(e,Ec)},image(e,t){t.image=e?Sa(e):""},duration:1500,mask:!1}}),Oc=ha(),Lc=ha();const Ac=ya({name:"ResizeSensor",props:{initial:{type:Boolean,default:!1}},emits:["resize"],setup(e,{emit:t}){const n=Ht(null),o=function(e){return()=>{const{firstElementChild:t,lastElementChild:n}=e.value;t.scrollLeft=1e5,t.scrollTop=1e5,n.scrollLeft=1e5,n.scrollTop=1e5}}(n),r=function(e,t,n){const o=$t({width:-1,height:-1});return An((()=>y({},o)),(e=>t("resize",e))),()=>{const t=e.value;o.width=t.offsetWidth,o.height=t.offsetHeight,n()}}(n,t,o);return function(e,t,n,o){Kn(o),no((()=>{t.initial&&an(n);const r=e.value;r.offsetParent!==r.parentElement&&(r.parentElement.style.position="relative"),"AnimationEvent"in window||o()}))}(n,e,r,o),()=>br("uni-resize-sensor",{ref:n,onAnimationstartOnce:r},[br("div",{onScroll:r},[br("div",null,null)],40,["onScroll"]),br("div",{onScroll:r},[br("div",null,null)],40,["onScroll"])],40,["onAnimationstartOnce"])}});const Pc={src:{type:String,default:""},mode:{type:String,default:"scaleToFill"},lazyLoad:{type:[Boolean,String],default:!1},draggable:{type:Boolean,default:!1}},Nc={widthFix:["offsetWidth","height",(e,t)=>e/t],heightFix:["offsetHeight","width",(e,t)=>e*t]},Mc={aspectFit:["center center","contain"],aspectFill:["center center","cover"],widthFix:[,"100% 100%"],heightFix:[,"100% 100%"],top:["center top"],bottom:["center bottom"],center:["center center"],left:["left center"],right:["right center"],"top left":["left top"],"top right":["right top"],"bottom left":["left bottom"],"bottom right":["right bottom"]},jc=ya({name:"Image",props:Pc,setup(e,{emit:t}){const n=Ht(null),o=function(e,t){const n=Ht(""),o=Ir((()=>{let e="auto",o="";const r=Mc[t.mode];return r?(r[0]&&(o=r[0]),r[1]&&(e=r[1])):(o="0% 0%",e="100% 100%"),`background-image:${n.value?'url("'+n.value+'")':"none"};background-position:${o};background-size:${e};`})),r=$t({rootEl:e,src:Ir((()=>t.src?Sa(t.src):"")),origWidth:0,origHeight:0,origStyle:{width:"",height:""},modeStyle:o,imgSrc:n});return no((()=>{const t=e.value.style;r.origWidth=Number(t.width)||0,r.origHeight=Number(t.height)||0})),r}(n,e),r=xa(n,t),{fixSize:i}=function(e,t,n){const o=()=>{const{mode:o}=t,r=Nc[o];if(!r)return;const{origWidth:i,origHeight:s}=n,a=i&&s?i/s:0;if(!a)return;const c=e.value,l=c[r[0]];l&&(c.style[r[1]]=function(e){Rc&&e>10&&(e=2*Math.round(e/2));return e}(r[2](l,a))+"px")},r=()=>{const{style:t}=e.value,{origStyle:{width:o,height:r}}=n;t.width=o,t.height=r};return An((()=>t.mode),((e,t)=>{Nc[t]&&r(),Nc[e]&&o()})),{fixSize:o,resetSize:r}}(n,e,o);return function(e,t,n,o,r){let i,s;const a=(t=0,n=0,o="")=>{e.origWidth=t,e.origHeight=n,e.imgSrc=o},c=c=>{if(!c)return l(),void a();i=i||new Image,i.onload=e=>{const{width:u,height:d}=i;a(u,d,c),o(),i.draggable=t.draggable,s&&s.remove(),s=i,n.value.appendChild(i),l(),r("load",e,{width:u,height:d})},i.onerror=t=>{a(),l(),r("error",t,{errMsg:`GET ${e.src} 404 (Not Found)`})},i.src=c},l=()=>{i&&(i.onload=null,i.onerror=null,i=null)};An((()=>e.src),(e=>c(e))),An((()=>e.imgSrc),(e=>{!e&&s&&(s.remove(),s=null)})),no((()=>c(e.src))),io((()=>l()))}(o,e,n,i,r),()=>br("uni-image",{ref:n},[br("div",{style:o.modeStyle},null,4),Nc[e.mode]?br(Ac,{onResize:i},null,8,["onResize"]):br("span",null,null)],512)}});const Rc="Google Inc."===navigator.vendor;const Fc=re(!0),Bc=[];let Ic,Vc=0;const Wc=e=>Bc.forEach((t=>t.userAction=e));const Hc=["navigate","redirect","switchTab","reLaunch","navigateBack"],zc=["slide-in-right","slide-in-left","slide-in-top","slide-in-bottom","fade-in","zoom-out","zoom-fade-out","pop-in","none"],Dc=["slide-out-right","slide-out-left","slide-out-top","slide-out-bottom","fade-out","zoom-in","zoom-fade-in","pop-out","none"],Uc={hoverClass:{type:String,default:"navigator-hover"},url:{type:String,default:""},openType:{type:String,default:"navigate",validator:e=>Boolean(~Hc.indexOf(e))},delta:{type:Number,default:1},hoverStartTime:{type:[Number,String],default:50},hoverStayTime:{type:[Number,String],default:600},exists:{type:String,default:""},hoverStopPropagation:{type:Boolean,default:!1},animationType:{type:String,default:"",validator:e=>!e||zc.concat(Dc).includes(e)},animationDuration:{type:[String,Number],default:300}};y({},Uc,{renderLink:{type:Boolean,default:!0}});const qc=ya({name:"View",props:y({},_a),setup(e,{slots:t}){const{hovering:n,binding:o}=wa(e);return()=>{const r=e.hoverClass;return r&&"none"!==r?br("uni-view",kr({class:n.value?r:""},o),[t.default&&t.default()],16):br("uni-view",null,[t.default&&t.default()])}}});function Xc(e,t,n,o){S(t)&&Qn(e,t.bind(n),o)}function Yc(e,t,n){var o;const r=e.mpType||n.$mpType;if(r&&"component"!==r&&(Object.keys(e).forEach((o=>{if(function(e,t,n=!0){return!(n&&!S(t))&&(pe.indexOf(e)>-1||0===e.indexOf("on"))}(o,e[o],!1)){const r=e[o];x(r)?r.forEach((e=>Xc(o,e,n,t))):Xc(o,r,n,t)}})),"page"===r)){t.__isVisible=!0;try{Is(n,"onLoad",t.attrs.__pageQuery),delete t.attrs.__pageQuery,"preloadPage"!==(null==(o=n.$page)?void 0:o.openType)&&Is(n,"onShow")}catch(i){console.error(i.message+"\n"+i.stack)}}}function Kc(e,t,n){Yc(e,t,n)}function Jc(e,t,n){return e[t]=n}function Gc(e){return function(t,n,o){if(!n)throw t;const r=e._instance;if(!r||!r.proxy)throw t;Is(r.proxy,"onError",t)}}function Zc(e,t){return e?[...new Set([].concat(e,t))]:t}function Qc(e){const t=e._context.config;var n;t.errorHandler=ge(e,Gc),n=t.optionMergeStrategies,pe.forEach((e=>{n[e]=Zc}));const o=t.globalProperties;o.$set=Jc,o.$applyOptions=Kc,function(e){he.forEach((t=>t(e)))}(e)}const el=Symbol("upm");function tl(){return $n(el)}function nl(e){const t=function(e){return $t(JSON.parse(JSON.stringify(Bs(__uniRoutes[0].meta,e))))}(e);return En(el,t),t}function ol(){const e=location.href,t=e.indexOf("?"),n=e.indexOf("#",t>-1?t:0);let o={};t>-1&&(o=le(e.slice(t+1,n>-1?n:e.length)));const{meta:r}=__uniRoutes[0],i=Z(r.route);return{meta:r,query:o,path:i,matched:[{path:i}]}}function rl(){return history.state&&history.state.__id__||1}const il=window.CSS&&window.CSS.supports;function sl(e){return il&&(il(e)||il.apply(window.CSS,e.split(":")))}const al=sl("top:env(a)"),cl=sl("top:constant(a)"),ll=(()=>al?"env":cl?"constant":"")();function ul(e){var t,n;Ls({"--window-top":(n=0,ll?`calc(${n}px + ${ll}(safe-area-inset-top))`:`${n}px`),"--window-bottom":(t=0,ll?`calc(${t}px + ${ll}(safe-area-inset-bottom))`:`${t}px`)})}const dl=new Map;function fl(){const e=[],t=dl.values();for(const n of t)n.$.__isTabBar?n.$.__isActive&&e.push(n):e.push(n);return e}function pl(e){const t=tl();return function(e,t,n,o,r,i){const{id:s,route:a}=o,c=be(o.navigationBar,__uniConfig.themeConfig,i).titleColor;return{id:s,path:Z(a),route:a,fullPath:t,options:n,meta:o,openType:e,eventChannel:r,statusBarStyle:"#ffffff"===c?"light":"dark"}}("navigateTo",__uniRoutes[0].path,{},t)}function hl(e){e.$route;const t=pl();!function(e,t){e.route=t.route,e.$vm=e,e.$page=t,e.$mpType="page",t.meta.isTabBar&&(e.$.__isTabBar=!0,e.$.__isActive=!0)}(e,t),dl.set(gl(t.path,t.id),e)}function gl(e,t){return e+"$$"+t}function ml(e,t){!function(e){const t=yl(e),{body:n}=document;bl&&n.removeAttribute(bl),t&&n.setAttribute(t,""),bl=t}(e),ul(),function(e){const t="nvue-dir-"+__uniConfig.nvue["flex-direction"];e.isNVue?(document.body.setAttribute("nvue",""),document.body.setAttribute(t,"")):(document.body.removeAttribute("nvue"),document.body.removeAttribute(t))}(t),function(e,t){document.removeEventListener("touchmove",Vs),_l&&document.removeEventListener("scroll",_l);if(t.disableScroll)return document.addEventListener("touchmove",Vs);const{onPageScroll:n,onReachBottom:o}=e,r="transparent"===t.navigationBar.type;if(!n&&!o&&!r)return;const i={},s=e.proxy.$page.id;(n||r)&&(i.onPageScroll=function(e,t,n){return o=>{t&&gu.publishHandler("onPageScroll",{scrollTop:o},e),n&&gu.emit(e+".onPageScroll",{scrollTop:o})}}(s,n,r));o&&(i.onReachBottomDistance=t.onReachBottomDistance||50,i.onReachBottom=()=>gu.publishHandler("onReachBottom",{},s));_l=zs(i),requestAnimationFrame((()=>document.addEventListener("scroll",_l)))}(e,t)}function vl(e){const t=yl(e);t&&function(e){const t=document.querySelector("uni-page-body");t&&t.setAttribute(e,"")}(t)}function yl(e){return e.type.__scopeId}let bl,_l;const wl={install(e){Qc(e),na(e),pa(e),e.config.warnHandler||(e.config.warnHandler=xl)}};function xl(e,t,n){if(t){if("PageMetaHead"===t.$.type.name)return;const e=t.$.parent;if(e&&"PageMeta"===e.type.name)return}const o=[`[Vue warn]: ${e}`];n.length&&o.push("\n",n),console.warn(...o)}const Cl={class:"uni-async-loading"},Sl=br("i",{class:"uni-loading"},null,-1),Tl=ba({name:"AsyncLoading",render:()=>(ar(),fr("div",Cl,[Sl]))});function kl(){window.location.reload()}const El=ba({name:"AsyncError",setup(){Gi();const{t:e}=Ki();return()=>br("div",{class:"uni-async-error",onClick:kl},[e("uni.async.error")],8,["onClick"])}});let $l;function Ol(){return $l}function Ll(e){$l=e,Object.defineProperty($l.$.ctx,"$children",{get:()=>fl().map((e=>e.$vm))});const t=$l.$.appContext.app;t.component(Tl.name)||t.component(Tl.name,Tl),t.component(El.name)||t.component(El.name,El),function(e){e.$vm=e,e.$mpType="app";const t=Ht(Ki().getLocale());Object.defineProperty(e,"$locale",{get:()=>t.value,set(e){t.value=e}})}($l),function(e,t){const n=e.$options||{};n.globalData=y(n.globalData||{},t),Object.defineProperty(e,"globalData",{get:()=>n.globalData,set(e){n.globalData=e}})}($l),da(),gs()}function Al(e,{clone:t,init:n,setup:o,before:r}){t&&(e=y({},e)),r&&r(e);const i=e.setup;return e.setup=(e,t)=>{const r=Ar();n(r.proxy);const s=o(r);if(i)return i(s||e,t)},e}function Pl(e,t){return e&&(e.__esModule||"Module"===e[Symbol.toStringTag])?Al(e.default,t):Al(e,t)}function Nl(e){return Pl(e,{clone:!0,init:hl,setup(e){e.$pageInstance=e;const t=ol(),n=ae(t.query);e.attrs.__pageQuery=n,e.proxy.$page.options=n;const o=tl();var r,i,s;return to((()=>{ml(e,o)})),no((()=>{vl(e);const{onReady:n}=e;n&&H(n),Fl(t)})),Gn((()=>{if(!e.__isVisible){ml(e,o),e.__isVisible=!0;const{onShow:n}=e;n&&H(n),an((()=>{Fl(t)}))}}),"ba",r),function(e,t){Gn(e,"bda",t)}((()=>{if(e.__isVisible&&!e.__isUnload){e.__isVisible=!1;const{onHide:t}=e;t&&H(t)}})),i=o.id,gu.subscribe(os(i,"invokeViewApi"),s?s(rs):rs),io((()=>{!function(e){gu.unsubscribe(os(e,"invokeViewApi")),Object.keys(ns).forEach((t=>{0===t.indexOf(e+".")&&delete ns[t]}))}(o.id)})),n}})}function Ml(){const{windowWidth:e,windowHeight:t,screenWidth:n,screenHeight:o}=Kl(),r=90===Math.abs(Number(window.orientation))?"landscape":"portrait";mu.emit("onResize",{deviceOrientation:r,size:{windowWidth:e,windowHeight:t,screenWidth:n,screenHeight:o}})}function jl(e){A(e.data)&&"WEB_INVOKE_APPSERVICE"===e.data.type&&mu.emit("onWebInvokeAppService",e.data.data,e.data.pageId)}function Rl(){const{emit:e}=mu;"visible"===document.visibilityState?e("onAppEnterForeground",y({},Lc)):e("onAppEnterBackground")}function Fl(e){const{tabBarText:t,tabBarIndex:n,route:o}=e.meta;t&&Is("onTabItemTap",{index:n,text:t,pagePath:o})}const Bl=navigator.cookieEnabled&&(window.localStorage||window.sessionStorage)||{};let Il;function Vl(){if(Il=Il||Bl.__DC_STAT_UUID,!Il){Il=Date.now()+""+Math.floor(1e7*Math.random());try{Bl.__DC_STAT_UUID=Il}catch(e){}}return Il}function Wl(){if(!0!==__uniConfig.darkmode)return T(__uniConfig.darkmode)?__uniConfig.darkmode:"light";try{return window.matchMedia("(prefers-color-scheme: light)").matches?"light":"dark"}catch(e){return"light"}}function Hl(){let e,t="0",n="",o="phone";const r=navigator.language;if(Ea){e="iOS";const o=Ta.match(/OS\s([\w_]+)\slike/);o&&(t=o[1].replace(/_/g,"."));const r=Ta.match(/\(([a-zA-Z]+);/);r&&(n=r[1])}else if(ka){e="Android";const o=Ta.match(/Android[\s/]([\w\.]+)[;\s]/);o&&(t=o[1]);const r=Ta.match(/\((.+?)\)/),i=r?r[1].split(";"):Ta.split(" "),s=[/\bAndroid\b/i,/\bLinux\b/i,/\bU\b/i,/^\s?[a-z][a-z]$/i,/^\s?[a-z][a-z]-[a-z][a-z]$/i,/\bwv\b/i,/\/[\d\.,]+$/,/^\s?[\d\.,]+$/,/\bBrowser\b/i,/\bMobile\b/i];for(let e=0;e0){n=t.split("Build")[0].trim();break}let o;for(let e=0;e-1&&e.indexOf("MSIE")>-1,n=e.indexOf("Edge")>-1&&!t,o=e.indexOf("Trident")>-1&&e.indexOf("rv:11.0")>-1;if(t){new RegExp("MSIE (\\d+\\.\\d+);").test(e);const t=parseFloat(RegExp.$1);return t>6?t:6}return n?-1:o?11:-1}());if("-1"!==c)a="IE";else{const e=["Version","Firefox","Chrome","Edge{0,1}"],t=["Safari","Firefox","Chrome","Edge"];for(let n=0;n{const e=window.devicePixelRatio,t=Pa(),n=Na(t),o=Ma(t,n),r=function(e,t){return e?Math[t?"min":"max"](screen.height,screen.width):screen.height}(t,n),i=ja(o);let s=window.innerHeight;const a=ks.top,c={left:ks.left,right:i-ks.right,top:ks.top,bottom:s-ks.bottom,width:i-ks.left-ks.right,height:s-ks.top-ks.bottom},{top:l,bottom:u}=function(){const e=document.documentElement.style,t=Os(),n=$s(e,"--window-bottom"),o=$s(e,"--window-left"),r=$s(e,"--window-right"),i=$s(e,"--top-window-height");return{top:t,bottom:n?n+ks.bottom:0,left:o?o+ks.left:0,right:r?r+ks.right:0,topWindowHeight:i||0}}();return s-=l,s-=u,{windowTop:l,windowBottom:u,windowWidth:i,windowHeight:s,pixelRatio:e,screenWidth:o,screenHeight:r,statusBarHeight:a,safeArea:c,safeAreaInsets:{top:ks.top,right:ks.right,bottom:ks.bottom,left:ks.left},screenTop:r-s}}));let Dl,Ul=!0;function ql(){Ul&&(Dl=Hl())}const Xl=cc(0,(()=>{ql();const{deviceBrand:e,deviceModel:t,brand:n,model:o,platform:r,system:i,deviceOrientation:s,deviceType:a}=Dl;return{brand:n,deviceBrand:e,deviceModel:t,devicePixelRatio:window.devicePixelRatio,deviceId:Vl(),deviceOrientation:s,deviceType:a,model:o,platform:r,system:i}})),Yl=cc(0,(()=>{ql();const{theme:e,language:t,browserName:n,browserVersion:o}=Dl;return{appId:__uniConfig.appId,appName:__uniConfig.appName,appVersion:__uniConfig.appVersion,appVersionCode:__uniConfig.appVersionCode,appLanguage:bc?bc():t,enableDebug:!1,hostSDKVersion:void 0,hostPackageName:void 0,hostFontSizeSetting:void 0,hostName:n,hostVersion:o,hostTheme:e,hostLanguage:t,language:t,SDKVersion:"",theme:e,version:""}})),Kl=cc(0,(()=>{Ul=!0,ql(),Ul=!1;const e=zl(),t=Xl(),n=Yl();Ul=!0;const{ua:o,browserName:r,browserVersion:i,osname:s,osversion:a}=Dl,c=y(e,t,n,{ua:o,browserName:r,browserVersion:i,uniPlatform:"web",uniCompileVersion:__uniConfig.compilerVersion,uniRuntimeVersion:__uniConfig.compilerVersion,fontSizeSetting:void 0,osName:s.toLocaleLowerCase(),osVersion:a,osLanguage:void 0,osTheme:void 0});return delete c.screenTop,delete c.enableDebug,__uniConfig.darkmode||delete c.theme,function(e){let t={};return A(e)&&Object.keys(e).sort().forEach((n=>{const o=n;t[o]=e[o]})),Object.keys(t)?t:e}(c)}));!function(e={userAction:!1}){if(!Ic){["touchstart","touchmove","touchend","mousedown","mouseup"].forEach((e=>{document.addEventListener(e,(function(){!Vc&&Wc(!0),Vc++,setTimeout((()=>{!--Vc&&Wc(!1)}),0)}),Fc)})),Ic=!0}Bc.push(e)}();const Jl={esc:["Esc","Escape"],enter:["Enter"]},Gl=Object.keys(Jl);function Zl(e,{onEsc:t,onEnter:n}){const o=Ht(e.visible),{key:r,disable:i}=function(){const e=Ht(""),t=Ht(!1),n=n=>{if(t.value)return;const o=Gl.find((e=>-1!==Jl[e].indexOf(n.key)));o&&(e.value=o),an((()=>e.value=""))};return no((()=>{document.addEventListener("keyup",n)})),io((()=>{document.removeEventListener("keyup",n)})),{key:e,disable:t}}();return An((()=>e.visible),(e=>o.value=e)),An((()=>o.value),(e=>i.value=!e)),On((()=>{const{value:e}=r;"esc"===e?t&&t():"enter"===e&&n&&n()})),o}const Ql=ac("request",(({url:e,data:t,header:n,method:o,dataType:r,responseType:i,withCredentials:s,timeout:a=__uniConfig.networkTimeout.request},{resolve:c,reject:l})=>{let u=null;const d=function(e){const t=Object.keys(e).find((e=>"content-type"===e.toLowerCase()));if(!t)return;const n=e[t];if(0===n.indexOf("application/json"))return"json";if(0===n.indexOf("application/x-www-form-urlencoded"))return"urlencoded";return"string"}(n);if("GET"!==o)if(T(t)||t instanceof ArrayBuffer)u=t;else if("json"===d)try{u=JSON.stringify(t)}catch(g){u=t.toString()}else if("urlencoded"===d){const e=[];for(const n in t)w(t,n)&&e.push(encodeURIComponent(n)+"="+encodeURIComponent(t[n]));u=e.join("&")}else u=t.toString();const f=new XMLHttpRequest,p=new eu(f);f.open(o,e);for(const m in n)w(n,m)&&f.setRequestHeader(m,n[m]);const h=setTimeout((function(){f.onload=f.onabort=f.onerror=null,p.abort(),l("timeout")}),a);return f.responseType=i,f.onload=function(){clearTimeout(h);const e=f.status;let t="text"===i?f.responseText:f.response;if("text"===i&&"json"===r)try{t=JSON.parse(t)}catch(g){}c({data:t,statusCode:e,header:tu(f.getAllResponseHeaders()),cookies:[]})},f.onabort=function(){clearTimeout(h),l("abort")},f.onerror=function(){clearTimeout(h),l()},f.withCredentials=s,f.send(u),p}),0,Sc);class eu{constructor(e){this._xhr=e}abort(){this._xhr&&(this._xhr.abort(),delete this._xhr)}onHeadersReceived(e){throw new Error("Method not implemented.")}offHeadersReceived(e){throw new Error("Method not implemented.")}}function tu(e){const t={};return e.split("\n").forEach((e=>{const n=e.match(/(\S+\s*):\s*(.*)/);n&&3===n.length&&(t[n[1]]=n[2])})),t}const nu={title:{type:String,default:""},icon:{default:"success",validator:e=>-1!==Ec.indexOf(e)},image:{type:String,default:""},duration:{type:Number,default:1500},mask:{type:Boolean,default:!1},visible:{type:Boolean}},ou={light:"#fff",dark:"rgba(255,255,255,0.9)"},ru=e=>ou[e],iu=Un({name:"Toast",props:nu,setup(e){Zi(),Qi();const{Icon:t}=function(e){const t=Ht(ru(Wl())),n=({theme:e})=>t.value=ru(e);On((()=>{var t;e.visible?(t=n,__uniConfig.darkmode&&mu.on("onThemeChange",t)):function(e){mu.off("onThemeChange",e)}(n)}));return{Icon:Ir((()=>{switch(e.icon){case"success":return br(Ns(As,t.value,38),{class:"uni-toast__icon"});case"error":return br(Ns(Ps,t.value,38),{class:"uni-toast__icon"});case"loading":return br("i",{class:["uni-toast__icon","uni-loading"]},null,2);default:return null}}))}}(e),n=Zl(e,{});return()=>{const{mask:o,duration:r,title:i,image:s}=e;return br(fi,{name:"uni-fade"},{default:()=>[fo(br("uni-toast",{"data-duration":r},[o?br("div",{class:"uni-mask",style:"background: transparent;",onTouchmove:Es},null,40,["onTouchmove"]):"",s||t.value?br("div",{class:"uni-toast"},[s?br("img",{src:s,class:"uni-toast__icon"},null,10,["src"]):t.value,br("p",{class:"uni-toast__content"},[i])]):br("div",{class:"uni-sample-toast"},[br("p",{class:"uni-simple-toast__text"},[i])])],8,["data-duration"]),[[Ei,n.value]])]})}}});let su,au,cu="";const lu=xe();function uu(e){su?y(su,e):(su=$t(y(e,{visible:!1})),an((()=>{var e,t,n;lu.run((()=>{An([()=>su.visible,()=>su.duration],(([e,t])=>{if(e){if(au&&clearTimeout(au),"onShowLoading"===cu)return;au=setTimeout((()=>{fu("onHideToast")}),t)}else au&&clearTimeout(au)}))})),mu.on("onHidePopup",(()=>fu("onHidePopup"))),(e=iu,t=su,n=()=>{},t.onClose=(...e)=>(t.visible=!1,n.apply(null,e)),Ai(Un({setup:()=>()=>(ar(),fr(e,t,null,16))}))).mount(function(e){let t=document.getElementById(e);return t||(t=document.createElement("div"),t.id=e,document.body.append(t)),t}("u-a-t"))}))),setTimeout((()=>{su.visible=!0}),10)}const du=lc("showToast",((e,{resolve:t,reject:n})=>{uu(e),cu="onShowToast",t()}),0,$c);function fu(e){const{t:t}=Ki();if(!cu)return;let n="";if("onHideToast"===e&&"onShowToast"!==cu?n=t("uni.showToast.unpaired"):"onHideLoading"===e&&"onShowLoading"!==cu&&(n=t("uni.showLoading.unpaired")),n)return console.warn(n);cu="",setTimeout((()=>{su.visible=!1}),10)}function pu(e){function t(){var t;t=e.navigationBar.titleText,document.title=t,mu.emit("onNavigationBarChange",{titleText:t})}On(t),Kn(t)}const hu=ba({name:"Layout",setup(e,{emit:t}){const n=Ht(null);Ls({"--status-bar-height":"0px","--top-window-height":"0px","--window-left":"0px","--window-right":"0px","--window-margin":"0px","--tab-bar-height":"0px"});const{layoutState:o,windowState:r}=function(){ol();{const e=$t({marginWidth:0,leftWindowWidth:0,rightWindowWidth:0});return An((()=>e.marginWidth),(e=>Ls({"--window-margin":e+"px"}))),An((()=>e.leftWindowWidth+e.marginWidth),(e=>{Ls({"--window-left":e+"px"})})),An((()=>e.rightWindowWidth+e.marginWidth),(e=>{Ls({"--window-right":e+"px"})})),{layoutState:e,windowState:Ir((()=>({})))}}}();!function(e,t){const n=ol();function o(){const o=document.body.clientWidth,r=fl();let i={};if(r.length>0){i=r[r.length-1].$page.meta}else{const e=Us(n.path,!0);e&&(i=e.meta)}const s=parseInt(String((w(i,"maxWidth")?i.maxWidth:__uniConfig.globalStyle.maxWidth)||Number.MAX_SAFE_INTEGER));let a=!1;a=o>s,a&&s?(e.marginWidth=(o-s)/2,an((()=>{const e=t.value;e&&e.setAttribute("style","max-width:"+s+"px;margin:0 auto;")}))):(e.marginWidth=0,an((()=>{const e=t.value;e&&e.removeAttribute("style")})))}An([()=>n.path],o),no((()=>{o(),window.addEventListener("resize",o)}))}(o,n);const i=function(e){const t=Ht(!1);return Ir((()=>({"uni-app--showtabbar":e&&e.value,"uni-app--maxwidth":t.value})))}(!1);return()=>{const e=br(__uniRoutes[0].component);return br("uni-app",{ref:n,class:i.value},[e,!1],2)}}});const gu=y(is,{publishHandler(e,t,n){mu.subscribeHandler(e,t,n)}}),mu=y(ia,{publishHandler(e,t,n){gu.subscribeHandler(e,t,n)}}),vu=ba({name:"PageBody",setup:(e,t)=>()=>br(tr,null,[!1,br("uni-page-wrapper",null,[br("uni-page-body",null,[vo(t.slots,"default")])],16)])}),yu=ba({name:"Page",setup(e,t){const n=nl(rl());return n.navigationBar,pu(n),()=>br("uni-page",{"data-page":n.route},[bu(t)])}});function bu(e){return ar(),fr(vu,{key:0},{default:xn((()=>[vo(e.slots,"page")])),_:3})}const _u={loading:"AsyncLoading",error:"AsyncError",delay:200,timeout:6e4,suspensible:!0};window.uni={},window.wx={},window.rpx2px=yc;const wu=Object.assign({}),xu=Object.assign;window.__uniConfig=xu({globalStyle:{backgroundColor:"#F8F8F8",navigationBar:{backgroundColor:"#F8F8F8",titleText:"uni-app",type:"default",titleColor:"#000000"},isNVue:!1},uniIdRouter:{},compilerVersion:"3.8.12"},{appId:"__UNI__F01D55C",appName:"H5_download",appVersion:"1.0.0",appVersionCode:"100",async:_u,debug:!1,networkTimeout:{request:6e4,connectSocket:6e4,uploadFile:6e4,downloadFile:6e4},sdkConfigs:{},qqMapKey:void 0,googleMapKey:void 0,aMapKey:void 0,aMapSecurityJsCode:void 0,aMapServiceHost:void 0,nvue:{"flex-direction":"column"},locale:"",fallbackLocale:"",locales:Object.keys(wu).reduce(((e,t)=>{const n=t.replace(/\.\/locale\/(uni-app.)?(.*).json/,"$2");return xu(e[n]||(e[n]={}),wu[t].default),e}),{}),router:{mode:"hash",base:"./",assets:"assets",routerBase:"/"},darkmode:!1,themeConfig:{}}),window.__uniLayout=window.__uniLayout||{};const Cu={delay:_u.delay,timeout:_u.timeout,suspensible:_u.suspensible};_u.loading&&(Cu.loadingComponent={name:"SystemAsyncLoading",render:()=>br(ho(_u.loading))}),_u.error&&(Cu.errorComponent={name:"SystemAsyncError",render:()=>br(ho(_u.error))});const Su=()=>t((()=>import("./pages-index-index.4f5ada16.js")),["./pages-index-index.4f5ada16.js","./index-f1d8b582.css"],import.meta.url).then((e=>Nl(e.default||e))),Tu=function(e){S(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:o,delay:r=200,timeout:i,suspensible:s=!0,onError:a}=e;let c,l=null,u=0;const d=()=>{let e;return l||(e=l=t().catch((e=>{if(e=e instanceof Error?e:new Error(String(e)),a)return new Promise(((t,n)=>{a(e,(()=>t((u++,l=null,d()))),(()=>n(e)),u+1)}));throw e})).then((t=>e!==l&&l?l:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),c=t,t))))};return Un({name:"AsyncComponentWrapper",__asyncLoader:d,get __asyncResolved(){return c},setup(){const e=Lr;if(c)return()=>Xn(c,e);const t=t=>{l=null,Jt(t,e,13,!o)};if(s&&e.suspense||jr)return d().then((t=>()=>Xn(t,e))).catch((e=>(t(e),()=>o?br(o,{error:e}):null)));const a=Ht(!1),u=Ht(),f=Ht(!!r);return r&&setTimeout((()=>{f.value=!1}),r),null!=i&&setTimeout((()=>{if(!a.value&&!u.value){const e=new Error(`Async component timed out after ${i}ms.`);t(e),u.value=e}}),i),d().then((()=>{a.value=!0,e.parent&&Yn(e.parent.vnode)&&cn(e.parent.update)})).catch((e=>{t(e),u.value=e})),()=>a.value&&c?Xn(c,e):u.value&&o?br(o,{error:u.value}):n&&!f.value?br(n):void 0}})}(xu({loader:Su},Cu));window.__uniRoutes=[{path:"/",alias:"/pages/index/index",component:{setup(){const e=Ol(),t=e&&e.$route&&e.$route.query||{};return()=>{return e=Tu,n=t,ar(),fr(yu,null,{page:xn((()=>[br(e,xu({},n,{ref:"page"}),null,512)])),_:1});var e,n}}},loader:Su,meta:{isQuit:!0,isEntry:!0,titleNView:!1,bounce:"none",navigationBar:{titleText:"",type:"default",style:"custom"},isNVue:!1}}].map((e=>(e.meta.route=(e.alias||e.path).slice(1),e)));const ku={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")}};Pl(ku,{init:Ll,setup(e){const t=ol();return to((()=>{var n;n=e,Object.keys(_c).forEach((e=>{_c[e].forEach((t=>{Qn(e,t,n)}))}));const{onLaunch:o,onShow:r,onPageNotFound:i,onError:s}=e,a=function({path:e,query:t}){return y(Oc,{path:e,query:t}),y(Lc,Oc),y({},Oc)}({path:t.path.slice(1)||__uniRoutes[0].meta.route,query:ae(t.query)});o&&H(o,a),r&&H(r,a),s&&(e.appContext.config.errorHandler=e=>{H(s,e)})})),no((()=>{window.addEventListener("resize",function(e,t,{clearTimeout:n,setTimeout:o}){let r;const i=function(){n(r),r=o((()=>e.apply(this,arguments)),t)};return i.cancel=function(){n(r)},i}(Ml,50,{setTimeout:setTimeout,clearTimeout:clearTimeout})),window.addEventListener("message",jl),document.addEventListener("visibilitychange",Rl),function(){let e=null;try{e=window.matchMedia("(prefers-color-scheme: dark)")}catch(t){}if(e){let t=e=>{mu.emit("onThemeChange",{theme:e.matches?"dark":"light"})};e.addEventListener?e.addEventListener("change",t):e.addListener(t)}}()})),t.query},before(e){e.mpType="app";const{setup:t}=e,n=()=>(ar(),fr(hu));e.setup=(e,o)=>{const r=t&&t(e,o);return S(r)?n:r},e.render=n}}),Ai(ku).use(wl).mount("#app");export{dr as a,yr as b,fr as c,xr as d,Ht as e,br as f,wr as g,Kl as h,qc as i,jc as j,ar as o,Ql as r,du as s,xn as w}; diff --git a/public/download/assets/index-f1d8b582.css b/public/download/assets/index-bd048ef9.css similarity index 52% rename from public/download/assets/index-f1d8b582.css rename to public/download/assets/index-bd048ef9.css index 558f0322..7d38fa86 100644 --- a/public/download/assets/index-f1d8b582.css +++ b/public/download/assets/index-bd048ef9.css @@ -1 +1 @@ -.my-cion[data-v-bd303882]{display:inline-block}.icon[data-v-bd303882]{width:16px;height:16px}a[data-v-d4a8b3ad]{text-decoration:none;color:inherit}.content[data-v-d4a8b3ad]{overflow:hidden;background-color:#f49a2b;position:relative;width:100vw;height:100vh}.content .bg[data-v-d4a8b3ad]{position:absolute;top:0;left:0;z-index:1;width:100vw;height:100vh;background-color:#f49a2b}.content .download[data-v-d4a8b3ad]{position:absolute;top:60vh;left:0;z-index:100;width:100vw;height:6.25rem;display:flex;flex-direction:column;justify-content:space-between;align-items:center;font-weight:700}.content .download .btn[data-v-d4a8b3ad]{width:10.9375rem;height:2.5rem;line-height:2.5rem;background-color:#fc902e;text-align:center;color:#fff;border-radius:.25rem;box-shadow:inset 0 0 5px 1px rgba(0,0,0,.1)}.content .tip[data-v-d4a8b3ad]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10000}.content .tip uni-image[data-v-d4a8b3ad]{width:100%;height:100%}.content .tip .close[data-v-d4a8b3ad]{position:absolute;top:65vh;left:50%;transform:translate(-50%);width:9.375rem;height:5rem} +.my-cion[data-v-bd303882]{display:inline-block}.icon[data-v-bd303882]{width:16px;height:16px}a[data-v-7a448bbd]{text-decoration:none;color:inherit}.content[data-v-7a448bbd]{overflow:hidden;background-color:#f49a2b;position:relative;width:100vw;height:100vh}.content .bg[data-v-7a448bbd]{position:absolute;top:0;left:0;z-index:1;width:100vw;height:100vh;background-color:#f49a2b}.content .download[data-v-7a448bbd]{position:absolute;top:60vh;left:0;z-index:100;width:100vw;height:6.25rem;display:flex;flex-direction:column;justify-content:space-between;align-items:center;font-weight:700}.content .download .btn[data-v-7a448bbd]{width:10.9375rem;height:2.5rem;line-height:2.5rem;background-color:#fc902e;text-align:center;color:#fff;border-radius:.25rem;box-shadow:inset 0 0 5px 1px rgba(0,0,0,.1)}.content .tip[data-v-7a448bbd]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10000}.content .tip uni-image[data-v-7a448bbd]{width:100%;height:100%}.content .tip .close[data-v-7a448bbd]{position:absolute;top:65vh;left:50%;transform:translate(-50%);width:9.375rem;height:5rem} diff --git a/public/download/assets/pages-index-index.4f5ada16.js b/public/download/assets/pages-index-index.4f5ada16.js deleted file mode 100644 index 5e20d647..00000000 --- a/public/download/assets/pages-index-index.4f5ada16.js +++ /dev/null @@ -1 +0,0 @@ -import{o as a,c as t,w as e,a as s,b as o,d as c,i as n,r as i,s as l,e as r,f as d,g as p,h as f,j as u}from"./index-b1675540.js";const h=""+new URL("bg-1998f5fb.jpg",import.meta.url).href,v=""+new URL("tip-7f1d6aaf.png",import.meta.url).href,w=(a,t)=>{const e=a.__vccOpts||a;for(const[s,o]of t)e[s]=o;return e},m=w({__name:"my_icon",props:["type"],setup(i){const l=i;return(i,r)=>{const d=n;return a(),t(d,{class:"my-cion"},{default:e((()=>["ios"!=l.type?(a(),s("svg",{key:0,t:"1694421309742",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1505",width:"200",height:"200"},[o("path",{d:"M911.020879 320.237361c-36.202548 0-66.192962 28.664228-66.192962 63.470791V630.54159c0 34.806563 28.966692 63.494057 66.192962 63.494057 36.179281 0 66.169695-28.687495 66.169695-63.517323V383.731418c-1.023722-34.806563-29.990414-63.470791-66.169695-63.47079z m-798.317365 0C76.547499 320.237361 46.533818 348.901589 46.533818 383.684885V630.54159c0 34.806563 28.943425 63.494057 66.169696 63.494057 37.22627 0 66.192962-28.687495 66.192961-63.517323V383.731418c0-34.806563-28.966692-63.470791-66.192961-63.47079z m106.513665 2.047445v451.601191c0 26.616783 22.754558 49.138677 51.697983 49.138677h58.957106v137.225338c0 34.829829 28.943425 63.494057 66.169695 63.494057 36.202548 0 66.192962-28.664228 66.192962-63.494057v-137.225338h103.395965v137.225338c0 34.829829 28.966692 63.494057 66.192962 63.494057C667.979867 1023.744069 697.993547 995.079841 697.993547 960.250012v-137.225338h58.933839c28.966692 0 51.721249-21.498171 51.72125-49.138677V322.26154H219.217179zM651.46071 88.783026L706.276393 15.051744c2.047445-5.118612 2.047445-11.260947-3.117701-13.308391-4.141423-3.071167-10.33029-1.023722-13.44799 3.071167l-55.839405 76.802449A363.142266 363.142266 0 0 0 511.862196 60.118798c-43.438404 0-84.78283 7.166057-122.009101 21.498171l-55.839405-76.779183c-3.1177-5.118612-9.306568-6.165601-13.44799-3.094433a9.655564 9.655564 0 0 0-2.093978 13.308391l54.815683 73.754548c-85.806553 37.87773-146.811103 109.561567-154.070226 193.530073h588.407734c-9.306568-83.991772-69.310662-155.652342-156.164203-193.553339zM387.782384 205.533916c-18.613135 0-32.061125-13.308392-32.061125-30.711673 0-17.426548 14.471713-30.711673 32.061125-30.711673 18.613135 0 32.037859 13.285125 32.037859 30.711673 0 17.403281-14.471713 30.711673-32.037859 30.711673z m252.301047 0c-18.613135 0-32.061125-13.308392-32.061125-30.711673 0-17.426548 14.494979-30.711673 32.061125-30.711673 18.613135 0 32.061125 13.285125 32.061125 30.711673 0 17.403281-14.471713 30.711673-32.061125 30.711673z",fill:"#ffffff","p-id":"1506"})])):c("",!0),"ios"==l.type?(a(),s("svg",{key:1,t:"1694421562754",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2747",width:"200",height:"200"},[o("path",{d:"M791.488 544.095c-1.28-129.695 105.76-191.871 110.528-194.975-60.16-88.032-153.856-100.064-187.232-101.472-79.744-8.064-155.584 46.944-196.064 46.944-40.352 0-102.816-45.76-168.96-44.544-86.912 1.28-167.072 50.528-211.808 128.384-90.304 156.703-23.136 388.831 64.896 515.935 43.008 62.208 94.304 132.064 161.632 129.568 64.832-2.592 89.376-41.952 167.744-41.952s100.416 41.952 169.056 40.672c69.76-1.312 113.984-63.392 156.704-125.792 49.376-72.16 69.728-142.048 70.912-145.632-1.536-0.704-136.064-52.224-137.408-207.136zM662.56 163.52C698.304 120.16 722.432 60 715.84 0c-51.488 2.112-113.888 34.304-150.816 77.536-33.152 38.368-62.144 99.616-54.368 158.432 57.472 4.48 116.128-29.216 151.904-72.448z","p-id":"2748",fill:"#ffffff"})])):c("",!0)])),_:1})}}},[["__scopeId","data-v-bd303882"]]),g={};["options","get","post","put","head","delete","trace","connect"].forEach((a=>{g[a]=(t,e,s)=>((a,t,e,{noAuth:s=!1})=>new Promise(((s,o)=>{i({url:"/api"+a,method:t||"GET",data:"GET"!=t&&e||{},params:"GET"==t?e:{},success:a=>{s(a.data)},fail:a=>{l({title:"网络错误",icon:"none"}),o("请求失败")}})})))(t,a,e,s||{})}));const _=w({__name:"index",setup(o){const i=r({}),w=r({});(async()=>{let a=await g.get("/app/version?type=3");200==a.status&&(i.value=a.data.android,w.value=a.data.ios)})();const _=()=>{"ios"==f().platform?window.location.href=w.value.dow_url:l({icon:"none",title:"您不是IOS设备"})},y=r(!1),b=()=>{y.value=!0},k=r(!0);return(()=>{try{let a=window.navigator.userAgent.toLowerCase();"micromessenger"!=a.match(/MicroMessenger/i)&&"alipayclient"!=match(/AlipayClient/i)&&"qq"!=a.match(/QQ/i)||(k.value=!1)}catch(a){}})(),(o,l)=>{const r=u,f=n;return a(),t(f,{class:"content"},{default:e((()=>[d(r,{src:h,class:"bg"}),d(f,{class:"download"},{default:e((()=>[k.value?(a(),s("a",{key:0,href:i.value.dow_url,download:"huinongshenghuo.apk"},[d(f,{class:"btn"},{default:e((()=>[d(m),p(" Android下载 ")])),_:1})],8,["href"])):(a(),t(f,{key:1,class:"btn",onClick:b},{default:e((()=>[d(m),p(" Android下载 ")])),_:1})),d(f,{class:"btn",onClick:_},{default:e((()=>[d(m,{type:"ios"}),p(" IOS下载 ")])),_:1})])),_:1}),y.value?(a(),t(f,{key:0,class:"tip"},{default:e((()=>[d(r,{src:v}),d(f,{class:"close",onClick:l[0]||(l[0]=a=>y.value=!1)})])),_:1})):c("",!0)])),_:1})}}},[["__scopeId","data-v-d4a8b3ad"]]);export{_ as default}; diff --git a/public/download/assets/pages-index-index.6b2190c9.js b/public/download/assets/pages-index-index.6b2190c9.js new file mode 100644 index 00000000..7f492e15 --- /dev/null +++ b/public/download/assets/pages-index-index.6b2190c9.js @@ -0,0 +1 @@ +import{i as a,g as e,O as t,a as s,o,c,w as n,b as l,d as i,e as r,f as d,r as p,s as u,h as f,j as h,k as v,l as w,m}from"./index-9d172a4b.js";const g=""+new URL("bg-1998f5fb.jpg",import.meta.url).href,_=""+new URL("tip-7f1d6aaf.png",import.meta.url).href,y=(t=>(o,c=e())=>{!s&&a(t,o,c)})(t),k=(a,e)=>{const t=a.__vccOpts||a;for(const[s,o]of e)t[s]=o;return t},b=k({__name:"my_icon",props:["type"],setup(a){const e=a;return(a,t)=>{const s=d;return o(),c(s,{class:"my-cion"},{default:n((()=>["ios"!=e.type?(o(),l("svg",{key:0,t:"1694421309742",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1505",width:"200",height:"200"},[i("path",{d:"M911.020879 320.237361c-36.202548 0-66.192962 28.664228-66.192962 63.470791V630.54159c0 34.806563 28.966692 63.494057 66.192962 63.494057 36.179281 0 66.169695-28.687495 66.169695-63.517323V383.731418c-1.023722-34.806563-29.990414-63.470791-66.169695-63.47079z m-798.317365 0C76.547499 320.237361 46.533818 348.901589 46.533818 383.684885V630.54159c0 34.806563 28.943425 63.494057 66.169696 63.494057 37.22627 0 66.192962-28.687495 66.192961-63.517323V383.731418c0-34.806563-28.966692-63.470791-66.192961-63.47079z m106.513665 2.047445v451.601191c0 26.616783 22.754558 49.138677 51.697983 49.138677h58.957106v137.225338c0 34.829829 28.943425 63.494057 66.169695 63.494057 36.202548 0 66.192962-28.664228 66.192962-63.494057v-137.225338h103.395965v137.225338c0 34.829829 28.966692 63.494057 66.192962 63.494057C667.979867 1023.744069 697.993547 995.079841 697.993547 960.250012v-137.225338h58.933839c28.966692 0 51.721249-21.498171 51.72125-49.138677V322.26154H219.217179zM651.46071 88.783026L706.276393 15.051744c2.047445-5.118612 2.047445-11.260947-3.117701-13.308391-4.141423-3.071167-10.33029-1.023722-13.44799 3.071167l-55.839405 76.802449A363.142266 363.142266 0 0 0 511.862196 60.118798c-43.438404 0-84.78283 7.166057-122.009101 21.498171l-55.839405-76.779183c-3.1177-5.118612-9.306568-6.165601-13.44799-3.094433a9.655564 9.655564 0 0 0-2.093978 13.308391l54.815683 73.754548c-85.806553 37.87773-146.811103 109.561567-154.070226 193.530073h588.407734c-9.306568-83.991772-69.310662-155.652342-156.164203-193.553339zM387.782384 205.533916c-18.613135 0-32.061125-13.308392-32.061125-30.711673 0-17.426548 14.471713-30.711673 32.061125-30.711673 18.613135 0 32.037859 13.285125 32.037859 30.711673 0 17.403281-14.471713 30.711673-32.037859 30.711673z m252.301047 0c-18.613135 0-32.061125-13.308392-32.061125-30.711673 0-17.426548 14.494979-30.711673 32.061125-30.711673 18.613135 0 32.061125 13.285125 32.061125 30.711673 0 17.403281-14.471713 30.711673-32.061125 30.711673z",fill:"#ffffff","p-id":"1506"})])):r("",!0),"ios"==e.type?(o(),l("svg",{key:1,t:"1694421562754",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2747",width:"200",height:"200"},[i("path",{d:"M791.488 544.095c-1.28-129.695 105.76-191.871 110.528-194.975-60.16-88.032-153.856-100.064-187.232-101.472-79.744-8.064-155.584 46.944-196.064 46.944-40.352 0-102.816-45.76-168.96-44.544-86.912 1.28-167.072 50.528-211.808 128.384-90.304 156.703-23.136 388.831 64.896 515.935 43.008 62.208 94.304 132.064 161.632 129.568 64.832-2.592 89.376-41.952 167.744-41.952s100.416 41.952 169.056 40.672c69.76-1.312 113.984-63.392 156.704-125.792 49.376-72.16 69.728-142.048 70.912-145.632-1.536-0.704-136.064-52.224-137.408-207.136zM662.56 163.52C698.304 120.16 722.432 60 715.84 0c-51.488 2.112-113.888 34.304-150.816 77.536-33.152 38.368-62.144 99.616-54.368 158.432 57.472 4.48 116.128-29.216 151.904-72.448z","p-id":"2748",fill:"#ffffff"})])):r("",!0)])),_:1})}}},[["__scopeId","data-v-bd303882"]]),C={};["options","get","post","put","head","delete","trace","connect"].forEach((a=>{C[a]=(e,t,s)=>((a,e,t,{noAuth:s=!1})=>new Promise(((s,o)=>{p({url:"/api"+a,method:e||"GET",data:"GET"!=e&&t||{},params:"GET"==e?t:{},success:a=>{s(a.data)},fail:a=>{u({title:"网络错误",icon:"none"}),o("请求失败")}})})))(e,a,t,s||{})}));const z=k({__name:"index",setup(a){const e=f({}),t=f({}),s=f("");(async()=>{let a=await C.get("/app/version?type=3");200==a.status&&(e.value=a.data.android,t.value=a.data.ios)})();const i=()=>{"ios"==w().platform?(x(),window.location.href=t.value.dow_url):u({icon:"none",title:"您不是IOS设备"})},p=f(!1),k=()=>{p.value=!0},z=f(!0);(()=>{try{let a=window.navigator.userAgent.toLowerCase();"micromessenger"!=a.match(/MicroMessenger/i)&&"alipayclient"!=match(/AlipayClient/i)&&"qq"!=a.match(/QQ/i)||(z.value=!1)}catch(a){}})();const x=()=>{var a;s.value&&(a={code:s.value},C.post("/promote_writing",a)).then((a=>{console.log(a)})).catch((a=>{console.log(a)}))};return y((a=>{s.value=a.code})),(a,t)=>{const s=m,u=d;return o(),c(u,{class:"content"},{default:n((()=>[h(s,{src:g,class:"bg"}),h(u,{class:"download"},{default:n((()=>[z.value?(o(),l("a",{key:0,href:e.value.dow_url,onClick:x,download:"huinongshenghuo.apk"},[h(u,{class:"btn"},{default:n((()=>[h(b),v(" Android下载 ")])),_:1})],8,["href"])):(o(),c(u,{key:1,class:"btn",onClick:k},{default:n((()=>[h(b),v(" Android下载 ")])),_:1})),h(u,{class:"btn",onClick:i},{default:n((()=>[h(b,{type:"ios"}),v(" IOS下载 ")])),_:1})])),_:1}),p.value?(o(),c(u,{key:0,class:"tip"},{default:n((()=>[h(s,{src:_}),h(u,{class:"close",onClick:t[0]||(t[0]=a=>p.value=!1)})])),_:1})):r("",!0)])),_:1})}}},[["__scopeId","data-v-7a448bbd"]]);export{z as default}; diff --git a/public/download/index.html b/public/download/index.html index 4fc402f3..5003ffa1 100644 --- a/public/download/index.html +++ b/public/download/index.html @@ -14,7 +14,7 @@ 惠农生活 - + diff --git a/route/api.php b/route/api.php index 4514055e..76a6cd65 100644 --- a/route/api.php +++ b/route/api.php @@ -21,6 +21,7 @@ use think\facade\Route; Route::group('api/', function () { Route::any('test', 'api.Auth/test'); + Route::any('promote_writing', 'api.Common/promote_writing'); Route::any('applet', 'api.Common/applet'); Route::get('label_lst', 'api.Common/label_lst'); Route::any('system_group_value', 'api.Common/system_group_value'); @@ -171,6 +172,7 @@ Route::group('api/', function () { Route::post('change/phone', 'User/changePhone'); Route::post('change/info', 'User/updateBaseInfo'); Route::post('change/password', 'User/changePassword'); + Route::post('change/bind_promotion_code', 'User/bindPromotionCode'); // 绑定新供销邀请码 //收藏 Route::get('/relation/product/lst', 'UserRelation/productList'); Route::get('/relation/merchant/lst', 'UserRelation/merchantList'); @@ -283,6 +285,8 @@ Route::group('api/', function () { //申请商户 Route::get('intention/lst', 'api.store.merchant.MerchantIntention/lst'); + //申请个人交易 + Route::post('intention/personal_store', 'api.store.merchant.MerchantIntention/PersonalStore'); //交易申请商户 Route::post('intention/business', 'api.store.merchant.MerchantIntention/businessApply'); //申请商户协议 @@ -748,6 +752,7 @@ Route::group('api/', function () { Route::get('product_stock_count1', '/ProductStockCount1'); Route::get('supply_chain_product_price', '/SupplyChainProductPrice'); Route::get('general_product_price', '/GeneralProductPrice'); + Route::get('invite_user_statistics', '/InviteUserStatistics'); })->prefix('api.Statistics'); //滑块验证码